blob: 9eaf3dbec7e83616f195e38eab56674e56fd728b [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>
Chris Metcalffe4ba3c2015-06-24 16:55:45 -070022#include <linux/tick.h>
Don Zickus58687ac2010-05-07 17:11:44 -040023
24#include <asm/irq_regs.h>
Eric B Munson5d1c0f42012-03-10 14:37:28 -050025#include <linux/kvm_para.h>
Don Zickus58687ac2010-05-07 17:11:44 -040026#include <linux/perf_event.h>
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -070027#include <linux/kthread.h>
Don Zickus58687ac2010-05-07 17:11:44 -040028
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070029/*
30 * The run state of the lockup detectors is controlled by the content of the
31 * 'watchdog_enabled' variable. Each lockup detector has its dedicated bit -
32 * bit 0 for the hard lockup detector and bit 1 for the soft lockup detector.
33 *
34 * 'watchdog_user_enabled', 'nmi_watchdog_enabled' and 'soft_watchdog_enabled'
35 * are variables that are only used as an 'interface' between the parameters
36 * in /proc/sys/kernel and the internal state bits in 'watchdog_enabled'. The
37 * 'watchdog_thresh' variable is handled differently because its value is not
38 * boolean, and the lockup detectors are 'suspended' while 'watchdog_thresh'
39 * is equal zero.
40 */
41#define NMI_WATCHDOG_ENABLED_BIT 0
42#define SOFT_WATCHDOG_ENABLED_BIT 1
43#define NMI_WATCHDOG_ENABLED (1 << NMI_WATCHDOG_ENABLED_BIT)
44#define SOFT_WATCHDOG_ENABLED (1 << SOFT_WATCHDOG_ENABLED_BIT)
45
Peter Zijlstraab992dc2015-05-18 11:31:50 +020046static DEFINE_MUTEX(watchdog_proc_mutex);
47
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070048#ifdef CONFIG_HARDLOCKUP_DETECTOR
49static unsigned long __read_mostly watchdog_enabled = SOFT_WATCHDOG_ENABLED|NMI_WATCHDOG_ENABLED;
50#else
51static unsigned long __read_mostly watchdog_enabled = SOFT_WATCHDOG_ENABLED;
52#endif
53int __read_mostly nmi_watchdog_enabled;
54int __read_mostly soft_watchdog_enabled;
55int __read_mostly watchdog_user_enabled;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -070056int __read_mostly watchdog_thresh = 10;
Ulrich Obergfell84d56e62015-04-14 15:43:55 -070057
Aaron Tomlined235872014-06-23 13:22:05 -070058#ifdef CONFIG_SMP
59int __read_mostly sysctl_softlockup_all_cpu_backtrace;
Jiri Kosina55537872015-11-05 18:44:41 -080060int __read_mostly sysctl_hardlockup_all_cpu_backtrace;
Aaron Tomlined235872014-06-23 13:22:05 -070061#else
62#define sysctl_softlockup_all_cpu_backtrace 0
Jiri Kosina55537872015-11-05 18:44:41 -080063#define sysctl_hardlockup_all_cpu_backtrace 0
Aaron Tomlined235872014-06-23 13:22:05 -070064#endif
Chris Metcalffe4ba3c2015-06-24 16:55:45 -070065static struct cpumask watchdog_cpumask __read_mostly;
66unsigned long *watchdog_cpumask_bits = cpumask_bits(&watchdog_cpumask);
67
68/* Helper for online, unparked cpus. */
69#define for_each_watchdog_cpu(cpu) \
70 for_each_cpu_and((cpu), cpu_online_mask, &watchdog_cpumask)
Aaron Tomlined235872014-06-23 13:22:05 -070071
Ulrich Obergfellec6a9062015-09-04 15:45:28 -070072/*
73 * The 'watchdog_running' variable is set to 1 when the watchdog threads
74 * are registered/started and is set to 0 when the watchdog threads are
75 * unregistered/stopped, so it is an indicator whether the threads exist.
76 */
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +020077static int __read_mostly watchdog_running;
Ulrich Obergfellec6a9062015-09-04 15:45:28 -070078/*
79 * If a subsystem has a need to deactivate the watchdog temporarily, it
80 * can use the suspend/resume interface to achieve this. The content of
81 * the 'watchdog_suspended' variable reflects this state. Existing threads
82 * are parked/unparked by the lockup_detector_{suspend|resume} functions
83 * (see comment blocks pertaining to those functions for further details).
84 *
85 * 'watchdog_suspended' also prevents threads from being registered/started
86 * or unregistered/stopped via parameters in /proc/sys/kernel, so the state
87 * of 'watchdog_running' cannot change while the watchdog is deactivated
88 * temporarily (see related code in 'proc' handlers).
89 */
90static int __read_mostly watchdog_suspended;
91
Chuansheng Liu0f34c402012-12-17 15:59:50 -080092static u64 __read_mostly sample_period;
Don Zickus58687ac2010-05-07 17:11:44 -040093
94static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts);
95static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog);
96static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer);
97static DEFINE_PER_CPU(bool, softlockup_touch_sync);
Don Zickus58687ac2010-05-07 17:11:44 -040098static DEFINE_PER_CPU(bool, soft_watchdog_warn);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +000099static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts);
100static DEFINE_PER_CPU(unsigned long, soft_lockup_hrtimer_cnt);
chai wenb1a8de12014-10-09 15:25:17 -0700101static DEFINE_PER_CPU(struct task_struct *, softlockup_task_ptr_saved);
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200102#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickuscafcd802010-05-14 11:11:21 -0400103static DEFINE_PER_CPU(bool, hard_watchdog_warn);
104static DEFINE_PER_CPU(bool, watchdog_nmi_touch);
Don Zickus58687ac2010-05-07 17:11:44 -0400105static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved);
106static DEFINE_PER_CPU(struct perf_event *, watchdog_ev);
107#endif
Aaron Tomlined235872014-06-23 13:22:05 -0700108static unsigned long soft_lockup_nmi_warn;
Don Zickus58687ac2010-05-07 17:11:44 -0400109
Don Zickus58687ac2010-05-07 17:11:44 -0400110/* boot commands */
111/*
112 * Should we panic when a soft-lockup or hard-lockup occurs:
113 */
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200114#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickusac1f5912015-11-05 18:44:44 -0800115unsigned int __read_mostly hardlockup_panic =
Don Zickusfef2c9b2011-03-22 16:34:16 -0700116 CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE;
Jiri Kosina55537872015-11-05 18:44:41 -0800117static unsigned long hardlockup_allcpu_dumped;
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700118/*
119 * We may not want to enable hard lockup detection by default in all cases,
120 * for example when running the kernel as a guest on a hypervisor. In these
121 * cases this function can be called to disable hard lockup detection. This
122 * function should only be executed once by the boot processor before the
123 * kernel command line parameters are parsed, because otherwise it is not
124 * possible to override this in hardlockup_panic_setup().
125 */
Ulrich Obergfell692297d2015-04-14 15:44:19 -0700126void hardlockup_detector_disable(void)
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700127{
Ulrich Obergfell692297d2015-04-14 15:44:19 -0700128 watchdog_enabled &= ~NMI_WATCHDOG_ENABLED;
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700129}
130
Don Zickus58687ac2010-05-07 17:11:44 -0400131static int __init hardlockup_panic_setup(char *str)
132{
133 if (!strncmp(str, "panic", 5))
134 hardlockup_panic = 1;
Don Zickusfef2c9b2011-03-22 16:34:16 -0700135 else if (!strncmp(str, "nopanic", 7))
136 hardlockup_panic = 0;
Don Zickus5dc30552010-11-29 17:07:17 -0500137 else if (!strncmp(str, "0", 1))
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700138 watchdog_enabled &= ~NMI_WATCHDOG_ENABLED;
139 else if (!strncmp(str, "1", 1))
140 watchdog_enabled |= NMI_WATCHDOG_ENABLED;
Don Zickus58687ac2010-05-07 17:11:44 -0400141 return 1;
142}
143__setup("nmi_watchdog=", hardlockup_panic_setup);
144#endif
145
146unsigned int __read_mostly softlockup_panic =
147 CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE;
148
149static int __init softlockup_panic_setup(char *str)
150{
151 softlockup_panic = simple_strtoul(str, NULL, 0);
152
153 return 1;
154}
155__setup("softlockup_panic=", softlockup_panic_setup);
156
157static int __init nowatchdog_setup(char *str)
158{
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700159 watchdog_enabled = 0;
Don Zickus58687ac2010-05-07 17:11:44 -0400160 return 1;
161}
162__setup("nowatchdog", nowatchdog_setup);
163
Don Zickus58687ac2010-05-07 17:11:44 -0400164static int __init nosoftlockup_setup(char *str)
165{
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700166 watchdog_enabled &= ~SOFT_WATCHDOG_ENABLED;
Don Zickus58687ac2010-05-07 17:11:44 -0400167 return 1;
168}
169__setup("nosoftlockup", nosoftlockup_setup);
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700170
Aaron Tomlined235872014-06-23 13:22:05 -0700171#ifdef CONFIG_SMP
172static int __init softlockup_all_cpu_backtrace_setup(char *str)
173{
174 sysctl_softlockup_all_cpu_backtrace =
175 !!simple_strtol(str, NULL, 0);
176 return 1;
177}
178__setup("softlockup_all_cpu_backtrace=", softlockup_all_cpu_backtrace_setup);
Jiri Kosina55537872015-11-05 18:44:41 -0800179static int __init hardlockup_all_cpu_backtrace_setup(char *str)
180{
181 sysctl_hardlockup_all_cpu_backtrace =
182 !!simple_strtol(str, NULL, 0);
183 return 1;
184}
185__setup("hardlockup_all_cpu_backtrace=", hardlockup_all_cpu_backtrace_setup);
Aaron Tomlined235872014-06-23 13:22:05 -0700186#endif
Don Zickus58687ac2010-05-07 17:11:44 -0400187
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700188/*
189 * Hard-lockup warnings should be triggered after just a few seconds. Soft-
190 * lockups can have false positives under extreme conditions. So we generally
191 * want a higher threshold for soft lockups than for hard lockups. So we couple
192 * the thresholds with a factor: we make the soft threshold twice the amount of
193 * time the hard threshold is.
194 */
Ingo Molnar6e9101a2011-05-24 05:43:18 +0200195static int get_softlockup_thresh(void)
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700196{
197 return watchdog_thresh * 2;
198}
Don Zickus58687ac2010-05-07 17:11:44 -0400199
200/*
201 * Returns seconds, approximately. We don't need nanosecond
202 * resolution, and we don't need to waste time with a big divide when
203 * 2^30ns == 1.074s.
204 */
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900205static unsigned long get_timestamp(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400206{
Cyril Bur545a2bf2015-02-12 15:01:24 -0800207 return running_clock() >> 30LL; /* 2^30 ~= 10^9 */
Don Zickus58687ac2010-05-07 17:11:44 -0400208}
209
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800210static void set_sample_period(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400211{
212 /*
Mandeep Singh Baines586692a2011-05-22 22:10:22 -0700213 * convert watchdog_thresh from seconds to ns
Fernando Luis Vázquez Cao86f5e6a2012-02-09 17:42:22 -0500214 * the divide by 5 is to give hrtimer several chances (two
215 * or three with the current relation between the soft
216 * and hard thresholds) to increment before the
217 * hardlockup detector generates a warning
Don Zickus58687ac2010-05-07 17:11:44 -0400218 */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800219 sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5);
Don Zickus58687ac2010-05-07 17:11:44 -0400220}
221
222/* Commands for resetting the watchdog */
223static void __touch_watchdog(void)
224{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900225 __this_cpu_write(watchdog_touch_ts, get_timestamp());
Don Zickus58687ac2010-05-07 17:11:44 -0400226}
227
Tejun Heo03e0d462015-12-08 11:28:04 -0500228/**
229 * touch_softlockup_watchdog_sched - touch watchdog on scheduler stalls
230 *
231 * Call when the scheduler may have stalled for legitimate reasons
232 * preventing the watchdog task from executing - e.g. the scheduler
233 * entering idle state. This should only be used for scheduler events.
234 * Use touch_softlockup_watchdog() for everything else.
235 */
236void touch_softlockup_watchdog_sched(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400237{
Andrew Morton78611442014-04-18 15:07:12 -0700238 /*
239 * Preemption can be enabled. It doesn't matter which CPU's timestamp
240 * gets zeroed here, so use the raw_ operation.
241 */
242 raw_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400243}
Tejun Heo03e0d462015-12-08 11:28:04 -0500244
245void touch_softlockup_watchdog(void)
246{
247 touch_softlockup_watchdog_sched();
248}
Ingo Molnar0167c782010-05-13 08:53:33 +0200249EXPORT_SYMBOL(touch_softlockup_watchdog);
Don Zickus58687ac2010-05-07 17:11:44 -0400250
Don Zickus332fbdb2010-05-07 17:11:45 -0400251void touch_all_softlockup_watchdogs(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400252{
253 int cpu;
254
255 /*
256 * this is done lockless
257 * do we care if a 0 races with a timestamp?
258 * all it means is the softlock check starts one cycle later
259 */
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700260 for_each_watchdog_cpu(cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400261 per_cpu(watchdog_touch_ts, cpu) = 0;
262}
263
Don Zickuscafcd802010-05-14 11:11:21 -0400264#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickus58687ac2010-05-07 17:11:44 -0400265void touch_nmi_watchdog(void)
266{
Ben Zhang62572e22014-04-03 14:47:18 -0700267 /*
268 * Using __raw here because some code paths have
269 * preemption enabled. If preemption is enabled
270 * then interrupts should be enabled too, in which
271 * case we shouldn't have to worry about the watchdog
272 * going off.
273 */
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500274 raw_cpu_write(watchdog_nmi_touch, true);
Don Zickus332fbdb2010-05-07 17:11:45 -0400275 touch_softlockup_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400276}
277EXPORT_SYMBOL(touch_nmi_watchdog);
278
Don Zickuscafcd802010-05-14 11:11:21 -0400279#endif
280
Don Zickus58687ac2010-05-07 17:11:44 -0400281void touch_softlockup_watchdog_sync(void)
282{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500283 __this_cpu_write(softlockup_touch_sync, true);
284 __this_cpu_write(watchdog_touch_ts, 0);
Don Zickus58687ac2010-05-07 17:11:44 -0400285}
286
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200287#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickus58687ac2010-05-07 17:11:44 -0400288/* watchdog detector functions */
Yaowei Bai451637e2015-11-05 18:44:24 -0800289static bool is_hardlockup(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400290{
Christoph Lameter909ea962010-12-08 16:22:55 +0100291 unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400292
Christoph Lameter909ea962010-12-08 16:22:55 +0100293 if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
Yaowei Bai451637e2015-11-05 18:44:24 -0800294 return true;
Don Zickus58687ac2010-05-07 17:11:44 -0400295
Christoph Lameter909ea962010-12-08 16:22:55 +0100296 __this_cpu_write(hrtimer_interrupts_saved, hrint);
Yaowei Bai451637e2015-11-05 18:44:24 -0800297 return false;
Don Zickus58687ac2010-05-07 17:11:44 -0400298}
299#endif
300
Don Zickus26e09c62010-05-17 18:06:04 -0400301static int is_softlockup(unsigned long touch_ts)
Don Zickus58687ac2010-05-07 17:11:44 -0400302{
Namhyung Kimc06b4f12012-12-27 11:49:44 +0900303 unsigned long now = get_timestamp();
Don Zickus58687ac2010-05-07 17:11:44 -0400304
Ulrich Obergfell39d2da22015-11-05 18:44:56 -0800305 if ((watchdog_enabled & SOFT_WATCHDOG_ENABLED) && watchdog_thresh){
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700306 /* Warn about unreasonable delays. */
307 if (time_after(now, touch_ts + get_softlockup_thresh()))
308 return now - touch_ts;
309 }
Don Zickus58687ac2010-05-07 17:11:44 -0400310 return 0;
311}
312
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200313#ifdef CONFIG_HARDLOCKUP_DETECTOR
Cyrill Gorcunov1880c4a2011-06-23 16:49:18 +0400314
Don Zickus58687ac2010-05-07 17:11:44 -0400315static struct perf_event_attr wd_hw_attr = {
316 .type = PERF_TYPE_HARDWARE,
317 .config = PERF_COUNT_HW_CPU_CYCLES,
318 .size = sizeof(struct perf_event_attr),
319 .pinned = 1,
320 .disabled = 1,
321};
322
323/* Callback function for perf event subsystem */
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200324static void watchdog_overflow_callback(struct perf_event *event,
Don Zickus58687ac2010-05-07 17:11:44 -0400325 struct perf_sample_data *data,
326 struct pt_regs *regs)
327{
Peter Zijlstrac6db67c2010-08-20 11:49:15 +0200328 /* Ensure the watchdog never gets throttled */
329 event->hw.interrupts = 0;
330
Christoph Lameter909ea962010-12-08 16:22:55 +0100331 if (__this_cpu_read(watchdog_nmi_touch) == true) {
332 __this_cpu_write(watchdog_nmi_touch, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400333 return;
334 }
335
336 /* check for a hardlockup
337 * This is done by making sure our timer interrupt
338 * is incrementing. The timer interrupt should have
339 * fired multiple times before we overflow'd. If it hasn't
340 * then this is a good indication the cpu is stuck
341 */
Don Zickus26e09c62010-05-17 18:06:04 -0400342 if (is_hardlockup()) {
343 int this_cpu = smp_processor_id();
Jiri Kosina55537872015-11-05 18:44:41 -0800344 struct pt_regs *regs = get_irq_regs();
Don Zickus26e09c62010-05-17 18:06:04 -0400345
Don Zickus58687ac2010-05-07 17:11:44 -0400346 /* only print hardlockups once */
Christoph Lameter909ea962010-12-08 16:22:55 +0100347 if (__this_cpu_read(hard_watchdog_warn) == true)
Don Zickus58687ac2010-05-07 17:11:44 -0400348 return;
349
Jiri Kosina55537872015-11-05 18:44:41 -0800350 pr_emerg("Watchdog detected hard LOCKUP on cpu %d", this_cpu);
351 print_modules();
352 print_irqtrace_events(current);
353 if (regs)
354 show_regs(regs);
Don Zickus58687ac2010-05-07 17:11:44 -0400355 else
Jiri Kosina55537872015-11-05 18:44:41 -0800356 dump_stack();
357
358 /*
359 * Perform all-CPU dump only once to avoid multiple hardlockups
360 * generating interleaving traces
361 */
362 if (sysctl_hardlockup_all_cpu_backtrace &&
363 !test_and_set_bit(0, &hardlockup_allcpu_dumped))
364 trigger_allbutself_cpu_backtrace();
365
366 if (hardlockup_panic)
367 panic("Hard LOCKUP");
Don Zickus58687ac2010-05-07 17:11:44 -0400368
Christoph Lameter909ea962010-12-08 16:22:55 +0100369 __this_cpu_write(hard_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400370 return;
371 }
372
Christoph Lameter909ea962010-12-08 16:22:55 +0100373 __this_cpu_write(hard_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400374 return;
375}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000376#endif /* CONFIG_HARDLOCKUP_DETECTOR */
377
Don Zickus58687ac2010-05-07 17:11:44 -0400378static void watchdog_interrupt_count(void)
379{
Christoph Lameter909ea962010-12-08 16:22:55 +0100380 __this_cpu_inc(hrtimer_interrupts);
Don Zickus58687ac2010-05-07 17:11:44 -0400381}
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000382
383static int watchdog_nmi_enable(unsigned int cpu);
384static void watchdog_nmi_disable(unsigned int cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400385
Ulrich Obergfell58cf6902015-11-05 18:44:30 -0800386static int watchdog_enable_all_cpus(void);
387static void watchdog_disable_all_cpus(void);
388
Don Zickus58687ac2010-05-07 17:11:44 -0400389/* watchdog kicker functions */
390static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
391{
Christoph Lameter909ea962010-12-08 16:22:55 +0100392 unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400393 struct pt_regs *regs = get_irq_regs();
394 int duration;
Aaron Tomlined235872014-06-23 13:22:05 -0700395 int softlockup_all_cpu_backtrace = sysctl_softlockup_all_cpu_backtrace;
Don Zickus58687ac2010-05-07 17:11:44 -0400396
397 /* kick the hardlockup detector */
398 watchdog_interrupt_count();
399
400 /* kick the softlockup detector */
Christoph Lameter909ea962010-12-08 16:22:55 +0100401 wake_up_process(__this_cpu_read(softlockup_watchdog));
Don Zickus58687ac2010-05-07 17:11:44 -0400402
403 /* .. and repeat */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800404 hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period));
Don Zickus58687ac2010-05-07 17:11:44 -0400405
406 if (touch_ts == 0) {
Christoph Lameter909ea962010-12-08 16:22:55 +0100407 if (unlikely(__this_cpu_read(softlockup_touch_sync))) {
Don Zickus58687ac2010-05-07 17:11:44 -0400408 /*
409 * If the time stamp was touched atomically
410 * make sure the scheduler tick is up to date.
411 */
Christoph Lameter909ea962010-12-08 16:22:55 +0100412 __this_cpu_write(softlockup_touch_sync, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400413 sched_clock_tick();
414 }
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500415
416 /* Clear the guest paused flag on watchdog reset */
417 kvm_check_and_clear_guest_paused();
Don Zickus58687ac2010-05-07 17:11:44 -0400418 __touch_watchdog();
419 return HRTIMER_RESTART;
420 }
421
422 /* check for a softlockup
423 * This is done by making sure a high priority task is
424 * being scheduled. The task touches the watchdog to
425 * indicate it is getting cpu time. If it hasn't then
426 * this is a good indication some task is hogging the cpu
427 */
Don Zickus26e09c62010-05-17 18:06:04 -0400428 duration = is_softlockup(touch_ts);
Don Zickus58687ac2010-05-07 17:11:44 -0400429 if (unlikely(duration)) {
Eric B Munson5d1c0f42012-03-10 14:37:28 -0500430 /*
431 * If a virtual machine is stopped by the host it can look to
432 * the watchdog like a soft lockup, check to see if the host
433 * stopped the vm before we issue the warning
434 */
435 if (kvm_check_and_clear_guest_paused())
436 return HRTIMER_RESTART;
437
Don Zickus58687ac2010-05-07 17:11:44 -0400438 /* only warn once */
chai wenb1a8de12014-10-09 15:25:17 -0700439 if (__this_cpu_read(soft_watchdog_warn) == true) {
440 /*
441 * When multiple processes are causing softlockups the
442 * softlockup detector only warns on the first one
443 * because the code relies on a full quiet cycle to
444 * re-arm. The second process prevents the quiet cycle
445 * and never gets reported. Use task pointers to detect
446 * this.
447 */
448 if (__this_cpu_read(softlockup_task_ptr_saved) !=
449 current) {
450 __this_cpu_write(soft_watchdog_warn, false);
451 __touch_watchdog();
452 }
Don Zickus58687ac2010-05-07 17:11:44 -0400453 return HRTIMER_RESTART;
chai wenb1a8de12014-10-09 15:25:17 -0700454 }
Don Zickus58687ac2010-05-07 17:11:44 -0400455
Aaron Tomlined235872014-06-23 13:22:05 -0700456 if (softlockup_all_cpu_backtrace) {
457 /* Prevent multiple soft-lockup reports if one cpu is already
458 * engaged in dumping cpu back traces
459 */
460 if (test_and_set_bit(0, &soft_lockup_nmi_warn)) {
461 /* Someone else will report us. Let's give up */
462 __this_cpu_write(soft_watchdog_warn, true);
463 return HRTIMER_RESTART;
464 }
465 }
466
Fabian Frederick656c3b72014-08-06 16:04:03 -0700467 pr_emerg("BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n",
Don Zickus26e09c62010-05-17 18:06:04 -0400468 smp_processor_id(), duration,
Don Zickus58687ac2010-05-07 17:11:44 -0400469 current->comm, task_pid_nr(current));
chai wenb1a8de12014-10-09 15:25:17 -0700470 __this_cpu_write(softlockup_task_ptr_saved, current);
Don Zickus58687ac2010-05-07 17:11:44 -0400471 print_modules();
472 print_irqtrace_events(current);
473 if (regs)
474 show_regs(regs);
475 else
476 dump_stack();
477
Aaron Tomlined235872014-06-23 13:22:05 -0700478 if (softlockup_all_cpu_backtrace) {
479 /* Avoid generating two back traces for current
480 * given that one is already made above
481 */
482 trigger_allbutself_cpu_backtrace();
483
484 clear_bit(0, &soft_lockup_nmi_warn);
485 /* Barrier to sync with other cpus */
486 smp_mb__after_atomic();
487 }
488
Josh Hunt69361ee2014-08-08 14:22:31 -0700489 add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK);
Don Zickus58687ac2010-05-07 17:11:44 -0400490 if (softlockup_panic)
491 panic("softlockup: hung tasks");
Christoph Lameter909ea962010-12-08 16:22:55 +0100492 __this_cpu_write(soft_watchdog_warn, true);
Don Zickus58687ac2010-05-07 17:11:44 -0400493 } else
Christoph Lameter909ea962010-12-08 16:22:55 +0100494 __this_cpu_write(soft_watchdog_warn, false);
Don Zickus58687ac2010-05-07 17:11:44 -0400495
496 return HRTIMER_RESTART;
497}
498
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000499static void watchdog_set_prio(unsigned int policy, unsigned int prio)
Don Zickus58687ac2010-05-07 17:11:44 -0400500{
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000501 struct sched_param param = { .sched_priority = prio };
502
503 sched_setscheduler(current, policy, &param);
504}
505
506static void watchdog_enable(unsigned int cpu)
507{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500508 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Don Zickus58687ac2010-05-07 17:11:44 -0400509
Bjørn Mork3935e8952012-12-19 20:51:31 +0100510 /* kick off the timer for the hardlockup detector */
511 hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
512 hrtimer->function = watchdog_timer_fn;
513
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000514 /* Enable the perf event */
515 watchdog_nmi_enable(cpu);
Don Zickus58687ac2010-05-07 17:11:44 -0400516
Don Zickus58687ac2010-05-07 17:11:44 -0400517 /* done here because hrtimer_start can only pin to smp_processor_id() */
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800518 hrtimer_start(hrtimer, ns_to_ktime(sample_period),
Don Zickus58687ac2010-05-07 17:11:44 -0400519 HRTIMER_MODE_REL_PINNED);
520
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000521 /* initialize timestamp */
522 watchdog_set_prio(SCHED_FIFO, MAX_RT_PRIO - 1);
523 __touch_watchdog();
Don Zickus58687ac2010-05-07 17:11:44 -0400524}
525
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000526static void watchdog_disable(unsigned int cpu)
527{
Christoph Lameterf7f66b02014-08-17 12:30:34 -0500528 struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000529
530 watchdog_set_prio(SCHED_NORMAL, 0);
531 hrtimer_cancel(hrtimer);
532 /* disable the perf event */
533 watchdog_nmi_disable(cpu);
534}
535
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200536static void watchdog_cleanup(unsigned int cpu, bool online)
537{
538 watchdog_disable(cpu);
539}
540
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000541static int watchdog_should_run(unsigned int cpu)
542{
543 return __this_cpu_read(hrtimer_interrupts) !=
544 __this_cpu_read(soft_lockup_hrtimer_cnt);
545}
546
547/*
548 * The watchdog thread function - touches the timestamp.
549 *
Chuansheng Liu0f34c402012-12-17 15:59:50 -0800550 * It only runs once every sample_period seconds (4 seconds by
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000551 * default) to reset the softlockup timestamp. If this gets delayed
552 * for more than 2*watchdog_thresh seconds then the debug-printout
553 * triggers in watchdog_timer_fn().
554 */
555static void watchdog(unsigned int cpu)
556{
557 __this_cpu_write(soft_lockup_hrtimer_cnt,
558 __this_cpu_read(hrtimer_interrupts));
559 __touch_watchdog();
Ulrich Obergfellbcfba4f2015-04-14 15:44:10 -0700560
561 /*
562 * watchdog_nmi_enable() clears the NMI_WATCHDOG_ENABLED bit in the
563 * failure path. Check for failures that can occur asynchronously -
564 * for example, when CPUs are on-lined - and shut down the hardware
565 * perf event on each CPU accordingly.
566 *
567 * The only non-obvious place this bit can be cleared is through
568 * watchdog_nmi_enable(), so a pr_info() is placed there. Placing a
569 * pr_info here would be too noisy as it would result in a message
570 * every few seconds if the hardlockup was disabled but the softlockup
571 * enabled.
572 */
573 if (!(watchdog_enabled & NMI_WATCHDOG_ENABLED))
574 watchdog_nmi_disable(cpu);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000575}
Don Zickus58687ac2010-05-07 17:11:44 -0400576
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200577#ifdef CONFIG_HARDLOCKUP_DETECTOR
Don Zickusa7027042012-06-13 09:35:48 -0400578/*
579 * People like the simple clean cpu node info on boot.
580 * Reduce the watchdog noise by only printing messages
581 * that are different from what cpu0 displayed.
582 */
583static unsigned long cpu0_err;
584
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000585static int watchdog_nmi_enable(unsigned int cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400586{
587 struct perf_event_attr *wd_attr;
588 struct perf_event *event = per_cpu(watchdog_ev, cpu);
589
Ulrich Obergfell195daf62015-04-14 15:44:13 -0700590 /* nothing to do if the hard lockup detector is disabled */
591 if (!(watchdog_enabled & NMI_WATCHDOG_ENABLED))
592 goto out;
Ulrich Obergfell6e7458a2014-10-13 15:55:35 -0700593
Don Zickus58687ac2010-05-07 17:11:44 -0400594 /* is it already setup and enabled? */
595 if (event && event->state > PERF_EVENT_STATE_OFF)
596 goto out;
597
598 /* it is setup but not enabled */
599 if (event != NULL)
600 goto out_enable;
601
Don Zickus58687ac2010-05-07 17:11:44 -0400602 wd_attr = &wd_hw_attr;
Mandeep Singh Baines4eec42f2011-05-22 22:10:23 -0700603 wd_attr->sample_period = hw_nmi_get_sample_period(watchdog_thresh);
Cyrill Gorcunov1880c4a2011-06-23 16:49:18 +0400604
605 /* Try to register using hardware perf events */
Avi Kivity4dc0da82011-06-29 18:42:35 +0300606 event = perf_event_create_kernel_counter(wd_attr, cpu, NULL, watchdog_overflow_callback, NULL);
Don Zickusa7027042012-06-13 09:35:48 -0400607
608 /* save cpu0 error for future comparision */
609 if (cpu == 0 && IS_ERR(event))
610 cpu0_err = PTR_ERR(event);
611
Don Zickus58687ac2010-05-07 17:11:44 -0400612 if (!IS_ERR(event)) {
Don Zickusa7027042012-06-13 09:35:48 -0400613 /* only print for cpu0 or different than cpu0 */
614 if (cpu == 0 || cpu0_err)
615 pr_info("enabled on all CPUs, permanently consumes one hw-PMU counter.\n");
Don Zickus58687ac2010-05-07 17:11:44 -0400616 goto out_save;
617 }
618
Ulrich Obergfellbcfba4f2015-04-14 15:44:10 -0700619 /*
620 * Disable the hard lockup detector if _any_ CPU fails to set up
621 * set up the hardware perf event. The watchdog() function checks
622 * the NMI_WATCHDOG_ENABLED bit periodically.
623 *
624 * The barriers are for syncing up watchdog_enabled across all the
625 * cpus, as clear_bit() does not use barriers.
626 */
627 smp_mb__before_atomic();
628 clear_bit(NMI_WATCHDOG_ENABLED_BIT, &watchdog_enabled);
629 smp_mb__after_atomic();
630
Don Zickusa7027042012-06-13 09:35:48 -0400631 /* skip displaying the same error again */
632 if (cpu > 0 && (PTR_ERR(event) == cpu0_err))
633 return PTR_ERR(event);
Don Zickus5651f7f2011-02-09 14:02:33 -0500634
635 /* vary the KERN level based on the returned errno */
636 if (PTR_ERR(event) == -EOPNOTSUPP)
Andrew Morton45019802012-03-23 15:01:55 -0700637 pr_info("disabled (cpu%i): not supported (no LAPIC?)\n", cpu);
Don Zickus5651f7f2011-02-09 14:02:33 -0500638 else if (PTR_ERR(event) == -ENOENT)
Fabian Frederick656c3b72014-08-06 16:04:03 -0700639 pr_warn("disabled (cpu%i): hardware events not enabled\n",
Andrew Morton45019802012-03-23 15:01:55 -0700640 cpu);
Don Zickus5651f7f2011-02-09 14:02:33 -0500641 else
Andrew Morton45019802012-03-23 15:01:55 -0700642 pr_err("disabled (cpu%i): unable to create perf event: %ld\n",
643 cpu, PTR_ERR(event));
Ulrich Obergfellbcfba4f2015-04-14 15:44:10 -0700644
645 pr_info("Shutting down hard lockup detector on all cpus\n");
646
Akinobu Mitaeac24332010-08-31 23:00:08 -0400647 return PTR_ERR(event);
Don Zickus58687ac2010-05-07 17:11:44 -0400648
649 /* success path */
650out_save:
651 per_cpu(watchdog_ev, cpu) = event;
652out_enable:
653 perf_event_enable(per_cpu(watchdog_ev, cpu));
654out:
655 return 0;
656}
657
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000658static void watchdog_nmi_disable(unsigned int cpu)
Don Zickus58687ac2010-05-07 17:11:44 -0400659{
660 struct perf_event *event = per_cpu(watchdog_ev, cpu);
661
662 if (event) {
663 perf_event_disable(event);
664 per_cpu(watchdog_ev, cpu) = NULL;
665
666 /* should be in cleanup, but blocks oprofile */
667 perf_event_release_kernel(event);
668 }
Ulrich Obergfelldf577142014-08-11 10:49:25 -0400669 if (cpu == 0) {
670 /* watchdog_nmi_enable() expects this to be zero initially. */
671 cpu0_err = 0;
672 }
Don Zickus58687ac2010-05-07 17:11:44 -0400673}
Stephane Eranianb3738d22014-11-17 20:07:03 +0100674
Don Zickus58687ac2010-05-07 17:11:44 -0400675#else
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000676static int watchdog_nmi_enable(unsigned int cpu) { return 0; }
677static void watchdog_nmi_disable(unsigned int cpu) { return; }
Frederic Weisbecker23637d42010-05-15 23:15:20 +0200678#endif /* CONFIG_HARDLOCKUP_DETECTOR */
Don Zickus58687ac2010-05-07 17:11:44 -0400679
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200680static struct smp_hotplug_thread watchdog_threads = {
681 .store = &softlockup_watchdog,
682 .thread_should_run = watchdog_should_run,
683 .thread_fn = watchdog,
684 .thread_comm = "watchdog/%u",
685 .setup = watchdog_enable,
686 .cleanup = watchdog_cleanup,
687 .park = watchdog_disable,
688 .unpark = watchdog_enable,
689};
690
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700691/*
692 * park all watchdog threads that are specified in 'watchdog_cpumask'
Ulrich Obergfellee7fed52015-11-05 18:44:39 -0800693 *
694 * This function returns an error if kthread_park() of a watchdog thread
695 * fails. In this situation, the watchdog threads of some CPUs can already
696 * be parked and the watchdog threads of other CPUs can still be runnable.
697 * Callers are expected to handle this special condition as appropriate in
698 * their context.
Ulrich Obergfella2a45b82015-11-05 18:44:53 -0800699 *
700 * This function may only be called in a context that is protected against
701 * races with CPU hotplug - for example, via get_online_cpus().
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700702 */
703static int watchdog_park_threads(void)
704{
705 int cpu, ret = 0;
706
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700707 for_each_watchdog_cpu(cpu) {
708 ret = kthread_park(per_cpu(softlockup_watchdog, cpu));
709 if (ret)
710 break;
711 }
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700712
713 return ret;
714}
715
716/*
717 * unpark all watchdog threads that are specified in 'watchdog_cpumask'
Ulrich Obergfella2a45b82015-11-05 18:44:53 -0800718 *
719 * This function may only be called in a context that is protected against
720 * races with CPU hotplug - for example, via get_online_cpus().
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700721 */
722static void watchdog_unpark_threads(void)
723{
724 int cpu;
725
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700726 for_each_watchdog_cpu(cpu)
727 kthread_unpark(per_cpu(softlockup_watchdog, cpu));
Ulrich Obergfell81a4bee2015-09-04 15:45:15 -0700728}
729
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700730/*
731 * Suspend the hard and soft lockup detector by parking the watchdog threads.
732 */
Ulrich Obergfellec6a9062015-09-04 15:45:28 -0700733int lockup_detector_suspend(void)
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700734{
735 int ret = 0;
736
Ulrich Obergfellee89e712015-11-05 18:44:47 -0800737 get_online_cpus();
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700738 mutex_lock(&watchdog_proc_mutex);
739 /*
740 * Multiple suspend requests can be active in parallel (counted by
741 * the 'watchdog_suspended' variable). If the watchdog threads are
742 * running, the first caller takes care that they will be parked.
743 * The state of 'watchdog_running' cannot change while a suspend
Ulrich Obergfellec6a9062015-09-04 15:45:28 -0700744 * request is active (see related code in 'proc' handlers).
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700745 */
746 if (watchdog_running && !watchdog_suspended)
747 ret = watchdog_park_threads();
748
749 if (ret == 0)
750 watchdog_suspended++;
Ulrich Obergfellc9935902015-11-05 18:44:36 -0800751 else {
752 watchdog_disable_all_cpus();
753 pr_err("Failed to suspend lockup detectors, disabled\n");
754 watchdog_enabled = 0;
755 }
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700756
757 mutex_unlock(&watchdog_proc_mutex);
758
759 return ret;
760}
761
762/*
763 * Resume the hard and soft lockup detector by unparking the watchdog threads.
764 */
Ulrich Obergfellec6a9062015-09-04 15:45:28 -0700765void lockup_detector_resume(void)
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700766{
767 mutex_lock(&watchdog_proc_mutex);
768
769 watchdog_suspended--;
770 /*
771 * The watchdog threads are unparked if they were previously running
772 * and if there is no more active suspend request.
773 */
774 if (watchdog_running && !watchdog_suspended)
775 watchdog_unpark_threads();
776
777 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfellee89e712015-11-05 18:44:47 -0800778 put_online_cpus();
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700779}
780
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800781static int update_watchdog_all_cpus(void)
Michal Hocko9809b182013-09-24 15:27:30 -0700782{
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800783 int ret;
784
785 ret = watchdog_park_threads();
786 if (ret)
787 return ret;
788
Ulrich Obergfelld4bdd0b2015-09-04 15:45:21 -0700789 watchdog_unpark_threads();
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800790
791 return 0;
Michal Hocko9809b182013-09-24 15:27:30 -0700792}
793
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700794static int watchdog_enable_all_cpus(void)
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200795{
796 int err = 0;
797
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200798 if (!watchdog_running) {
Frederic Weisbecker230ec932015-09-04 15:45:06 -0700799 err = smpboot_register_percpu_thread_cpumask(&watchdog_threads,
800 &watchdog_cpumask);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200801 if (err)
802 pr_err("Failed to create watchdog threads, disabled\n");
Frederic Weisbecker230ec932015-09-04 15:45:06 -0700803 else
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200804 watchdog_running = 1;
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700805 } else {
806 /*
807 * Enable/disable the lockup detectors or
808 * change the sample period 'on the fly'.
809 */
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800810 err = update_watchdog_all_cpus();
811
812 if (err) {
813 watchdog_disable_all_cpus();
814 pr_err("Failed to update lockup detectors, disabled\n");
815 }
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200816 }
817
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800818 if (err)
819 watchdog_enabled = 0;
820
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200821 return err;
822}
823
Don Zickus58687ac2010-05-07 17:11:44 -0400824static void watchdog_disable_all_cpus(void)
825{
Frederic Weisbecker3c00ea82013-05-19 20:45:15 +0200826 if (watchdog_running) {
827 watchdog_running = 0;
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200828 smpboot_unregister_percpu_thread(&watchdog_threads);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000829 }
Don Zickus58687ac2010-05-07 17:11:44 -0400830}
831
Ulrich Obergfell58cf6902015-11-05 18:44:30 -0800832#ifdef CONFIG_SYSCTL
833
Don Zickus58687ac2010-05-07 17:11:44 -0400834/*
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700835 * Update the run state of the lockup detectors.
Don Zickus58687ac2010-05-07 17:11:44 -0400836 */
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700837static int proc_watchdog_update(void)
Don Zickus58687ac2010-05-07 17:11:44 -0400838{
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700839 int err = 0;
840
841 /*
842 * Watchdog threads won't be started if they are already active.
843 * The 'watchdog_running' variable in watchdog_*_all_cpus() takes
844 * care of this. If those threads are already active, the sample
845 * period will be updated and the lockup detectors will be enabled
846 * or disabled 'on the fly'.
847 */
848 if (watchdog_enabled && watchdog_thresh)
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -0700849 err = watchdog_enable_all_cpus();
Ulrich Obergfella0c9cbb2015-04-14 15:43:58 -0700850 else
851 watchdog_disable_all_cpus();
852
853 return err;
854
855}
856
857/*
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700858 * common function for watchdog, nmi_watchdog and soft_watchdog parameter
859 *
860 * caller | table->data points to | 'which' contains the flag(s)
861 * -------------------|-----------------------|-----------------------------
862 * proc_watchdog | watchdog_user_enabled | NMI_WATCHDOG_ENABLED or'ed
863 * | | with SOFT_WATCHDOG_ENABLED
864 * -------------------|-----------------------|-----------------------------
865 * proc_nmi_watchdog | nmi_watchdog_enabled | NMI_WATCHDOG_ENABLED
866 * -------------------|-----------------------|-----------------------------
867 * proc_soft_watchdog | soft_watchdog_enabled | SOFT_WATCHDOG_ENABLED
868 */
869static int proc_watchdog_common(int which, struct ctl_table *table, int write,
870 void __user *buffer, size_t *lenp, loff_t *ppos)
871{
872 int err, old, new;
873 int *watchdog_param = (int *)table->data;
Don Zickus58687ac2010-05-07 17:11:44 -0400874
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800875 get_online_cpus();
Michal Hocko359e6fa2013-09-24 15:27:29 -0700876 mutex_lock(&watchdog_proc_mutex);
Thomas Gleixnerbcd951c2012-07-16 10:42:38 +0000877
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700878 if (watchdog_suspended) {
879 /* no parameter changes allowed while watchdog is suspended */
880 err = -EAGAIN;
881 goto out;
882 }
883
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700884 /*
885 * If the parameter is being read return the state of the corresponding
886 * bit(s) in 'watchdog_enabled', else update 'watchdog_enabled' and the
887 * run state of the lockup detectors.
888 */
889 if (!write) {
890 *watchdog_param = (watchdog_enabled & which) != 0;
891 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
892 } else {
893 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
894 if (err)
895 goto out;
896
897 /*
898 * There is a race window between fetching the current value
899 * from 'watchdog_enabled' and storing the new value. During
900 * this race window, watchdog_nmi_enable() can sneak in and
901 * clear the NMI_WATCHDOG_ENABLED bit in 'watchdog_enabled'.
902 * The 'cmpxchg' detects this race and the loop retries.
903 */
904 do {
905 old = watchdog_enabled;
906 /*
907 * If the parameter value is not zero set the
908 * corresponding bit(s), else clear it(them).
909 */
910 if (*watchdog_param)
911 new = old | which;
912 else
913 new = old & ~which;
914 } while (cmpxchg(&watchdog_enabled, old, new) != old);
915
916 /*
Ulrich Obergfellb43cb432015-11-05 18:44:33 -0800917 * Update the run state of the lockup detectors. There is _no_
918 * need to check the value returned by proc_watchdog_update()
919 * and to restore the previous value of 'watchdog_enabled' as
920 * both lockup detectors are disabled if proc_watchdog_update()
921 * returns an error.
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700922 */
923 err = proc_watchdog_update();
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700924 }
925out:
926 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800927 put_online_cpus();
Ulrich Obergfellef246a22015-04-14 15:44:05 -0700928 return err;
929}
930
931/*
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700932 * /proc/sys/kernel/watchdog
933 */
934int proc_watchdog(struct ctl_table *table, int write,
935 void __user *buffer, size_t *lenp, loff_t *ppos)
936{
937 return proc_watchdog_common(NMI_WATCHDOG_ENABLED|SOFT_WATCHDOG_ENABLED,
938 table, write, buffer, lenp, ppos);
939}
940
941/*
942 * /proc/sys/kernel/nmi_watchdog
943 */
944int proc_nmi_watchdog(struct ctl_table *table, int write,
945 void __user *buffer, size_t *lenp, loff_t *ppos)
946{
947 return proc_watchdog_common(NMI_WATCHDOG_ENABLED,
948 table, write, buffer, lenp, ppos);
949}
950
951/*
952 * /proc/sys/kernel/soft_watchdog
953 */
954int proc_soft_watchdog(struct ctl_table *table, int write,
955 void __user *buffer, size_t *lenp, loff_t *ppos)
956{
957 return proc_watchdog_common(SOFT_WATCHDOG_ENABLED,
958 table, write, buffer, lenp, ppos);
959}
960
961/*
962 * /proc/sys/kernel/watchdog_thresh
963 */
964int proc_watchdog_thresh(struct ctl_table *table, int write,
965 void __user *buffer, size_t *lenp, loff_t *ppos)
966{
967 int err, old;
968
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800969 get_online_cpus();
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700970 mutex_lock(&watchdog_proc_mutex);
971
Ulrich Obergfell8c073d22015-09-04 15:45:18 -0700972 if (watchdog_suspended) {
973 /* no parameter changes allowed while watchdog is suspended */
974 err = -EAGAIN;
975 goto out;
976 }
977
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700978 old = ACCESS_ONCE(watchdog_thresh);
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200979 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700980
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200981 if (err || !write)
Michal Hocko359e6fa2013-09-24 15:27:29 -0700982 goto out;
Mandeep Singh Bainese04ab2b2011-05-22 22:10:21 -0700983
anish kumarb66a2352013-03-12 14:44:08 -0400984 /*
Ulrich Obergfelld283c642015-11-05 18:44:27 -0800985 * Update the sample period. Restore on failure.
anish kumarb66a2352013-03-12 14:44:08 -0400986 */
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700987 set_sample_period();
988 err = proc_watchdog_update();
Ulrich Obergfelld283c642015-11-05 18:44:27 -0800989 if (err) {
Ulrich Obergfell83a80a32015-04-14 15:44:08 -0700990 watchdog_thresh = old;
Ulrich Obergfelld283c642015-11-05 18:44:27 -0800991 set_sample_period();
992 }
Michal Hocko359e6fa2013-09-24 15:27:29 -0700993out:
994 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfell8614dde2015-11-05 18:44:50 -0800995 put_online_cpus();
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +0200996 return err;
Don Zickus58687ac2010-05-07 17:11:44 -0400997}
Chris Metcalffe4ba3c2015-06-24 16:55:45 -0700998
999/*
1000 * The cpumask is the mask of possible cpus that the watchdog can run
1001 * on, not the mask of cpus it is actually running on. This allows the
1002 * user to specify a mask that will include cpus that have not yet
1003 * been brought online, if desired.
1004 */
1005int proc_watchdog_cpumask(struct ctl_table *table, int write,
1006 void __user *buffer, size_t *lenp, loff_t *ppos)
1007{
1008 int err;
1009
Ulrich Obergfell8614dde2015-11-05 18:44:50 -08001010 get_online_cpus();
Chris Metcalffe4ba3c2015-06-24 16:55:45 -07001011 mutex_lock(&watchdog_proc_mutex);
Ulrich Obergfell8c073d22015-09-04 15:45:18 -07001012
1013 if (watchdog_suspended) {
1014 /* no parameter changes allowed while watchdog is suspended */
1015 err = -EAGAIN;
1016 goto out;
1017 }
1018
Chris Metcalffe4ba3c2015-06-24 16:55:45 -07001019 err = proc_do_large_bitmap(table, write, buffer, lenp, ppos);
1020 if (!err && write) {
1021 /* Remove impossible cpus to keep sysctl output cleaner. */
1022 cpumask_and(&watchdog_cpumask, &watchdog_cpumask,
1023 cpu_possible_mask);
1024
1025 if (watchdog_running) {
1026 /*
1027 * Failure would be due to being unable to allocate
1028 * a temporary cpumask, so we are likely not in a
1029 * position to do much else to make things better.
1030 */
1031 if (smpboot_update_cpumask_percpu_thread(
1032 &watchdog_threads, &watchdog_cpumask) != 0)
1033 pr_err("cpumask update failed\n");
1034 }
1035 }
Ulrich Obergfell8c073d22015-09-04 15:45:18 -07001036out:
Chris Metcalffe4ba3c2015-06-24 16:55:45 -07001037 mutex_unlock(&watchdog_proc_mutex);
Ulrich Obergfell8614dde2015-11-05 18:44:50 -08001038 put_online_cpus();
Chris Metcalffe4ba3c2015-06-24 16:55:45 -07001039 return err;
1040}
1041
Don Zickus58687ac2010-05-07 17:11:44 -04001042#endif /* CONFIG_SYSCTL */
1043
Peter Zijlstra004417a2010-11-25 18:38:29 +01001044void __init lockup_detector_init(void)
Don Zickus58687ac2010-05-07 17:11:44 -04001045{
Chuansheng Liu0f34c402012-12-17 15:59:50 -08001046 set_sample_period();
Frederic Weisbeckerb8900bc2013-06-06 15:42:53 +02001047
Chris Metcalffe4ba3c2015-06-24 16:55:45 -07001048#ifdef CONFIG_NO_HZ_FULL
1049 if (tick_nohz_full_enabled()) {
Frederic Weisbecker314b08ff2015-09-04 15:45:09 -07001050 pr_info("Disabling watchdog on nohz_full cores by default\n");
1051 cpumask_copy(&watchdog_cpumask, housekeeping_mask);
Chris Metcalffe4ba3c2015-06-24 16:55:45 -07001052 } else
1053 cpumask_copy(&watchdog_cpumask, cpu_possible_mask);
1054#else
1055 cpumask_copy(&watchdog_cpumask, cpu_possible_mask);
1056#endif
1057
Ulrich Obergfell195daf62015-04-14 15:44:13 -07001058 if (watchdog_enabled)
Ulrich Obergfellb2f57c32015-04-14 15:44:16 -07001059 watchdog_enable_all_cpus();
Don Zickus58687ac2010-05-07 17:11:44 -04001060}