• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Detect hard and soft lockups on a system
4  *
5  * started by Don Zickus, Copyright (C) 2010 Red Hat, Inc.
6  *
7  * Note: Most of this code is borrowed heavily from the original softlockup
8  * detector, so thanks to Ingo for the initial implementation.
9  * Some chunks also taken from the old x86-specific nmi watchdog code, thanks
10  * to those contributors as well.
11  */
12 
13 #define pr_fmt(fmt) "watchdog: " fmt
14 
15 #include <linux/mm.h>
16 #include <linux/cpu.h>
17 #include <linux/device.h>
18 #include <linux/nmi.h>
19 #include <linux/init.h>
20 #include <linux/module.h>
21 #include <linux/sysctl.h>
22 #include <linux/tick.h>
23 #include <linux/sched/clock.h>
24 #include <linux/sched/debug.h>
25 #include <linux/sched/isolation.h>
26 #include <linux/stop_machine.h>
27 
28 #include <asm/irq_regs.h>
29 #include <linux/kvm_para.h>
30 
31 static DEFINE_MUTEX(watchdog_mutex);
32 
33 #if defined(CONFIG_HARDLOCKUP_DETECTOR) || defined(CONFIG_HAVE_NMI_WATCHDOG)
34 # define WATCHDOG_DEFAULT	(SOFT_WATCHDOG_ENABLED | NMI_WATCHDOG_ENABLED)
35 # define NMI_WATCHDOG_DEFAULT	1
36 #else
37 # define WATCHDOG_DEFAULT	(SOFT_WATCHDOG_ENABLED)
38 # define NMI_WATCHDOG_DEFAULT	0
39 #endif
40 
41 unsigned long __read_mostly watchdog_enabled;
42 int __read_mostly watchdog_user_enabled = 1;
43 int __read_mostly nmi_watchdog_user_enabled = NMI_WATCHDOG_DEFAULT;
44 int __read_mostly soft_watchdog_user_enabled = 1;
45 int __read_mostly watchdog_thresh = 10;
46 static int __read_mostly nmi_watchdog_available;
47 
48 struct cpumask watchdog_cpumask __read_mostly;
49 unsigned long *watchdog_cpumask_bits = cpumask_bits(&watchdog_cpumask);
50 
51 #ifdef CONFIG_HARDLOCKUP_DETECTOR
52 
53 # ifdef CONFIG_SMP
54 int __read_mostly sysctl_hardlockup_all_cpu_backtrace;
55 # endif /* CONFIG_SMP */
56 
57 /*
58  * Should we panic when a soft-lockup or hard-lockup occurs:
59  */
60 unsigned int __read_mostly hardlockup_panic =
61 			CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE;
62 /*
63  * We may not want to enable hard lockup detection by default in all cases,
64  * for example when running the kernel as a guest on a hypervisor. In these
65  * cases this function can be called to disable hard lockup detection. This
66  * function should only be executed once by the boot processor before the
67  * kernel command line parameters are parsed, because otherwise it is not
68  * possible to override this in hardlockup_panic_setup().
69  */
hardlockup_detector_disable(void)70 void __init hardlockup_detector_disable(void)
71 {
72 	nmi_watchdog_user_enabled = 0;
73 }
74 
hardlockup_panic_setup(char * str)75 static int __init hardlockup_panic_setup(char *str)
76 {
77 	if (!strncmp(str, "panic", 5))
78 		hardlockup_panic = 1;
79 	else if (!strncmp(str, "nopanic", 7))
80 		hardlockup_panic = 0;
81 	else if (!strncmp(str, "0", 1))
82 		nmi_watchdog_user_enabled = 0;
83 	else if (!strncmp(str, "1", 1))
84 		nmi_watchdog_user_enabled = 1;
85 	return 1;
86 }
87 __setup("nmi_watchdog=", hardlockup_panic_setup);
88 
89 #endif /* CONFIG_HARDLOCKUP_DETECTOR */
90 
91 /*
92  * These functions can be overridden if an architecture implements its
93  * own hardlockup detector.
94  *
95  * watchdog_nmi_enable/disable can be implemented to start and stop when
96  * softlockup watchdog threads start and stop. The arch must select the
97  * SOFTLOCKUP_DETECTOR Kconfig.
98  */
watchdog_nmi_enable(unsigned int cpu)99 int __weak watchdog_nmi_enable(unsigned int cpu)
100 {
101 	hardlockup_detector_perf_enable();
102 	return 0;
103 }
104 
watchdog_nmi_disable(unsigned int cpu)105 void __weak watchdog_nmi_disable(unsigned int cpu)
106 {
107 	hardlockup_detector_perf_disable();
108 }
109 
110 /* Return 0, if a NMI watchdog is available. Error code otherwise */
watchdog_nmi_probe(void)111 int __weak __init watchdog_nmi_probe(void)
112 {
113 	return hardlockup_detector_perf_init();
114 }
115 
116 /**
117  * watchdog_nmi_stop - Stop the watchdog for reconfiguration
118  *
119  * The reconfiguration steps are:
120  * watchdog_nmi_stop();
121  * update_variables();
122  * watchdog_nmi_start();
123  */
watchdog_nmi_stop(void)124 void __weak watchdog_nmi_stop(void) { }
125 
126 /**
127  * watchdog_nmi_start - Start the watchdog after reconfiguration
128  *
129  * Counterpart to watchdog_nmi_stop().
130  *
131  * The following variables have been updated in update_variables() and
132  * contain the currently valid configuration:
133  * - watchdog_enabled
134  * - watchdog_thresh
135  * - watchdog_cpumask
136  */
watchdog_nmi_start(void)137 void __weak watchdog_nmi_start(void) { }
138 
139 /**
140  * lockup_detector_update_enable - Update the sysctl enable bit
141  *
142  * Caller needs to make sure that the NMI/perf watchdogs are off, so this
143  * can't race with watchdog_nmi_disable().
144  */
lockup_detector_update_enable(void)145 static void lockup_detector_update_enable(void)
146 {
147 	watchdog_enabled = 0;
148 	if (!watchdog_user_enabled)
149 		return;
150 	if (nmi_watchdog_available && nmi_watchdog_user_enabled)
151 		watchdog_enabled |= NMI_WATCHDOG_ENABLED;
152 	if (soft_watchdog_user_enabled)
153 		watchdog_enabled |= SOFT_WATCHDOG_ENABLED;
154 }
155 
156 #ifdef CONFIG_SOFTLOCKUP_DETECTOR
157 
158 #define SOFTLOCKUP_RESET	ULONG_MAX
159 
160 #ifdef CONFIG_SMP
161 int __read_mostly sysctl_softlockup_all_cpu_backtrace;
162 #endif
163 
164 static struct cpumask watchdog_allowed_mask __read_mostly;
165 
166 /* Global variables, exported for sysctl */
167 unsigned int __read_mostly softlockup_panic =
168 			CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE;
169 
170 static bool softlockup_initialized __read_mostly;
171 static u64 __read_mostly sample_period;
172 
173 static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts);
174 static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer);
175 static DEFINE_PER_CPU(unsigned int, watchdog_en);
176 static DEFINE_PER_CPU(bool, softlockup_touch_sync);
177 static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts);
178 static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved);
179 static unsigned long soft_lockup_nmi_warn;
180 
nowatchdog_setup(char * str)181 static int __init nowatchdog_setup(char *str)
182 {
183 	watchdog_user_enabled = 0;
184 	return 1;
185 }
186 __setup("nowatchdog", nowatchdog_setup);
187 
nosoftlockup_setup(char * str)188 static int __init nosoftlockup_setup(char *str)
189 {
190 	soft_watchdog_user_enabled = 0;
191 	return 1;
192 }
193 __setup("nosoftlockup", nosoftlockup_setup);
194 
watchdog_thresh_setup(char * str)195 static int __init watchdog_thresh_setup(char *str)
196 {
197 	get_option(&str, &watchdog_thresh);
198 	return 1;
199 }
200 __setup("watchdog_thresh=", watchdog_thresh_setup);
201 
202 static void __lockup_detector_cleanup(void);
203 
204 /*
205  * Hard-lockup warnings should be triggered after just a few seconds. Soft-
206  * lockups can have false positives under extreme conditions. So we generally
207  * want a higher threshold for soft lockups than for hard lockups. So we couple
208  * the thresholds with a factor: we make the soft threshold twice the amount of
209  * time the hard threshold is.
210  */
get_softlockup_thresh(void)211 static int get_softlockup_thresh(void)
212 {
213 	return watchdog_thresh * 2;
214 }
215 
216 /*
217  * Returns seconds, approximately.  We don't need nanosecond
218  * resolution, and we don't need to waste time with a big divide when
219  * 2^30ns == 1.074s.
220  */
get_timestamp(void)221 static unsigned long get_timestamp(void)
222 {
223 	return running_clock() >> 30LL;  /* 2^30 ~= 10^9 */
224 }
225 
set_sample_period(void)226 static void set_sample_period(void)
227 {
228 	/*
229 	 * convert watchdog_thresh from seconds to ns
230 	 * the divide by 5 is to give hrtimer several chances (two
231 	 * or three with the current relation between the soft
232 	 * and hard thresholds) to increment before the
233 	 * hardlockup detector generates a warning
234 	 */
235 	sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5);
236 	watchdog_update_hrtimer_threshold(sample_period);
237 }
238 
239 /* Commands for resetting the watchdog */
update_touch_ts(void)240 static void update_touch_ts(void)
241 {
242 	__this_cpu_write(watchdog_touch_ts, get_timestamp());
243 }
244 
245 /**
246  * touch_softlockup_watchdog_sched - touch watchdog on scheduler stalls
247  *
248  * Call when the scheduler may have stalled for legitimate reasons
249  * preventing the watchdog task from executing - e.g. the scheduler
250  * entering idle state.  This should only be used for scheduler events.
251  * Use touch_softlockup_watchdog() for everything else.
252  */
touch_softlockup_watchdog_sched(void)253 notrace void touch_softlockup_watchdog_sched(void)
254 {
255 	/*
256 	 * Preemption can be enabled.  It doesn't matter which CPU's timestamp
257 	 * gets zeroed here, so use the raw_ operation.
258 	 */
259 	raw_cpu_write(watchdog_touch_ts, SOFTLOCKUP_RESET);
260 }
261 
touch_softlockup_watchdog(void)262 notrace void touch_softlockup_watchdog(void)
263 {
264 	touch_softlockup_watchdog_sched();
265 	wq_watchdog_touch(raw_smp_processor_id());
266 }
267 EXPORT_SYMBOL(touch_softlockup_watchdog);
268 
touch_all_softlockup_watchdogs(void)269 void touch_all_softlockup_watchdogs(void)
270 {
271 	int cpu;
272 
273 	/*
274 	 * watchdog_mutex cannpt be taken here, as this might be called
275 	 * from (soft)interrupt context, so the access to
276 	 * watchdog_allowed_cpumask might race with a concurrent update.
277 	 *
278 	 * The watchdog time stamp can race against a concurrent real
279 	 * update as well, the only side effect might be a cycle delay for
280 	 * the softlockup check.
281 	 */
282 	for_each_cpu(cpu, &watchdog_allowed_mask)
283 		per_cpu(watchdog_touch_ts, cpu) = SOFTLOCKUP_RESET;
284 	wq_watchdog_touch(-1);
285 }
286 
touch_softlockup_watchdog_sync(void)287 void touch_softlockup_watchdog_sync(void)
288 {
289 	__this_cpu_write(softlockup_touch_sync, true);
290 	__this_cpu_write(watchdog_touch_ts, SOFTLOCKUP_RESET);
291 }
292 
is_softlockup(unsigned long touch_ts)293 static int is_softlockup(unsigned long touch_ts)
294 {
295 	unsigned long now = get_timestamp();
296 
297 	if ((watchdog_enabled & SOFT_WATCHDOG_ENABLED) && watchdog_thresh){
298 		/* Warn about unreasonable delays. */
299 		if (time_after(now, touch_ts + get_softlockup_thresh()))
300 			return now - touch_ts;
301 	}
302 	return 0;
303 }
304 
305 /* watchdog detector functions */
is_hardlockup(void)306 bool is_hardlockup(void)
307 {
308 	unsigned long hrint = __this_cpu_read(hrtimer_interrupts);
309 
310 	if (__this_cpu_read(hrtimer_interrupts_saved) == hrint)
311 		return true;
312 
313 	__this_cpu_write(hrtimer_interrupts_saved, hrint);
314 	return false;
315 }
316 
watchdog_interrupt_count(void)317 static void watchdog_interrupt_count(void)
318 {
319 	__this_cpu_inc(hrtimer_interrupts);
320 }
321 
322 static DEFINE_PER_CPU(struct completion, softlockup_completion);
323 static DEFINE_PER_CPU(struct cpu_stop_work, softlockup_stop_work);
324 
325 /*
326  * The watchdog thread function - touches the timestamp.
327  *
328  * It only runs once every sample_period seconds (4 seconds by
329  * default) to reset the softlockup timestamp. If this gets delayed
330  * for more than 2*watchdog_thresh seconds then the debug-printout
331  * triggers in watchdog_timer_fn().
332  */
softlockup_fn(void * data)333 static int softlockup_fn(void *data)
334 {
335 	update_touch_ts();
336 	complete(this_cpu_ptr(&softlockup_completion));
337 
338 	return 0;
339 }
340 
341 /* watchdog kicker functions */
watchdog_timer_fn(struct hrtimer * hrtimer)342 static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
343 {
344 	unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts);
345 	struct pt_regs *regs = get_irq_regs();
346 	int duration;
347 	int softlockup_all_cpu_backtrace = sysctl_softlockup_all_cpu_backtrace;
348 
349 	if (!watchdog_enabled)
350 		return HRTIMER_NORESTART;
351 
352 	/* kick the hardlockup detector */
353 	watchdog_interrupt_count();
354 
355 	/* kick the softlockup detector */
356 	if (completion_done(this_cpu_ptr(&softlockup_completion))) {
357 		reinit_completion(this_cpu_ptr(&softlockup_completion));
358 		stop_one_cpu_nowait(smp_processor_id(),
359 				softlockup_fn, NULL,
360 				this_cpu_ptr(&softlockup_stop_work));
361 	}
362 
363 	/* .. and repeat */
364 	hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period));
365 
366 	if (touch_ts == SOFTLOCKUP_RESET) {
367 		if (unlikely(__this_cpu_read(softlockup_touch_sync))) {
368 			/*
369 			 * If the time stamp was touched atomically
370 			 * make sure the scheduler tick is up to date.
371 			 */
372 			__this_cpu_write(softlockup_touch_sync, false);
373 			sched_clock_tick();
374 		}
375 
376 		/* Clear the guest paused flag on watchdog reset */
377 		kvm_check_and_clear_guest_paused();
378 		update_touch_ts();
379 		return HRTIMER_RESTART;
380 	}
381 
382 	/* check for a softlockup
383 	 * This is done by making sure a high priority task is
384 	 * being scheduled.  The task touches the watchdog to
385 	 * indicate it is getting cpu time.  If it hasn't then
386 	 * this is a good indication some task is hogging the cpu
387 	 */
388 	duration = is_softlockup(touch_ts);
389 	if (unlikely(duration)) {
390 		/*
391 		 * If a virtual machine is stopped by the host it can look to
392 		 * the watchdog like a soft lockup, check to see if the host
393 		 * stopped the vm before we issue the warning
394 		 */
395 		if (kvm_check_and_clear_guest_paused())
396 			return HRTIMER_RESTART;
397 
398 		/*
399 		 * Prevent multiple soft-lockup reports if one cpu is already
400 		 * engaged in dumping all cpu back traces.
401 		 */
402 		if (softlockup_all_cpu_backtrace) {
403 			if (test_and_set_bit_lock(0, &soft_lockup_nmi_warn))
404 				return HRTIMER_RESTART;
405 		}
406 
407 		/* Start period for the next softlockup warning. */
408 		update_touch_ts();
409 
410 		pr_emerg("BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n",
411 			smp_processor_id(), duration,
412 			current->comm, task_pid_nr(current));
413 		print_modules();
414 		print_irqtrace_events(current);
415 		if (regs)
416 			show_regs(regs);
417 		else
418 			dump_stack();
419 
420 		if (softlockup_all_cpu_backtrace) {
421 			trigger_allbutself_cpu_backtrace();
422 			clear_bit_unlock(0, &soft_lockup_nmi_warn);
423 		}
424 
425 		add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK);
426 		if (softlockup_panic)
427 			panic("softlockup: hung tasks");
428 	}
429 
430 	return HRTIMER_RESTART;
431 }
432 
watchdog_enable(unsigned int cpu)433 void watchdog_enable(unsigned int cpu)
434 {
435 	struct hrtimer *hrtimer = this_cpu_ptr(&watchdog_hrtimer);
436 	struct completion *done = this_cpu_ptr(&softlockup_completion);
437 	unsigned int *enabled = this_cpu_ptr(&watchdog_en);
438 
439 	WARN_ON_ONCE(cpu != smp_processor_id());
440 
441 	init_completion(done);
442 	complete(done);
443 
444 	if (*enabled)
445 		return;
446 
447 	/*
448 	 * Start the timer first to prevent the NMI watchdog triggering
449 	 * before the timer has a chance to fire.
450 	 */
451 	hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_HARD);
452 	hrtimer->function = watchdog_timer_fn;
453 	hrtimer_start(hrtimer, ns_to_ktime(sample_period),
454 		      HRTIMER_MODE_REL_PINNED_HARD);
455 
456 	/* Initialize timestamp */
457 	update_touch_ts();
458 	/* Enable the perf event */
459 	if (watchdog_enabled & NMI_WATCHDOG_ENABLED)
460 		watchdog_nmi_enable(cpu);
461 
462 	/*
463 	 * Need to ensure above operations are observed by other CPUs before
464 	 * indicating that timer is enabled. This is to synchronize core
465 	 * isolation and hotplug. Core isolation will wait for this flag to be
466 	 * set.
467 	 */
468 	mb();
469 	*enabled = 1;
470 }
471 
watchdog_disable(unsigned int cpu)472 void watchdog_disable(unsigned int cpu)
473 {
474 	struct hrtimer *hrtimer = per_cpu_ptr(&watchdog_hrtimer, cpu);
475 	unsigned int *enabled = per_cpu_ptr(&watchdog_en, cpu);
476 
477 	if (!*enabled)
478 		return;
479 
480 	/*
481 	 * Disable the perf event first. That prevents that a large delay
482 	 * between disabling the timer and disabling the perf event causes
483 	 * the perf NMI to detect a false positive.
484 	 */
485 	watchdog_nmi_disable(cpu);
486 	hrtimer_cancel(hrtimer);
487 	wait_for_completion(per_cpu_ptr(&softlockup_completion, cpu));
488 
489 	/*
490 	 * No need for barrier here since disabling the watchdog is
491 	 * synchronized with hotplug lock
492 	 */
493 	*enabled = 0;
494 }
495 
watchdog_configured(unsigned int cpu)496 bool watchdog_configured(unsigned int cpu)
497 {
498 	return *per_cpu_ptr(&watchdog_en, cpu);
499 }
500 
softlockup_stop_fn(void * data)501 static int softlockup_stop_fn(void *data)
502 {
503 	watchdog_disable(smp_processor_id());
504 	return 0;
505 }
506 
softlockup_stop_all(void)507 static void softlockup_stop_all(void)
508 {
509 	int cpu;
510 
511 	if (!softlockup_initialized)
512 		return;
513 
514 	for_each_cpu(cpu, &watchdog_allowed_mask)
515 		smp_call_on_cpu(cpu, softlockup_stop_fn, NULL, false);
516 
517 	cpumask_clear(&watchdog_allowed_mask);
518 }
519 
softlockup_start_fn(void * data)520 static int softlockup_start_fn(void *data)
521 {
522 	watchdog_enable(smp_processor_id());
523 	return 0;
524 }
525 
softlockup_start_all(void)526 static void softlockup_start_all(void)
527 {
528 	int cpu;
529 
530 	cpumask_copy(&watchdog_allowed_mask, &watchdog_cpumask);
531 	for_each_cpu(cpu, &watchdog_allowed_mask)
532 		smp_call_on_cpu(cpu, softlockup_start_fn, NULL, false);
533 }
534 
lockup_detector_online_cpu(unsigned int cpu)535 int lockup_detector_online_cpu(unsigned int cpu)
536 {
537 	if (cpumask_test_cpu(cpu, &watchdog_allowed_mask))
538 		watchdog_enable(cpu);
539 	return 0;
540 }
541 
lockup_detector_offline_cpu(unsigned int cpu)542 int lockup_detector_offline_cpu(unsigned int cpu)
543 {
544 	if (cpumask_test_cpu(cpu, &watchdog_allowed_mask))
545 		watchdog_disable(cpu);
546 	return 0;
547 }
548 
lockup_detector_reconfigure(void)549 static void lockup_detector_reconfigure(void)
550 {
551 	cpus_read_lock();
552 	watchdog_nmi_stop();
553 
554 	softlockup_stop_all();
555 	set_sample_period();
556 	lockup_detector_update_enable();
557 	if (watchdog_enabled && watchdog_thresh)
558 		softlockup_start_all();
559 
560 	watchdog_nmi_start();
561 	cpus_read_unlock();
562 	/*
563 	 * Must be called outside the cpus locked section to prevent
564 	 * recursive locking in the perf code.
565 	 */
566 	__lockup_detector_cleanup();
567 }
568 
569 /*
570  * Create the watchdog thread infrastructure and configure the detector(s).
571  *
572  * The threads are not unparked as watchdog_allowed_mask is empty.  When
573  * the threads are successfully initialized, take the proper locks and
574  * unpark the threads in the watchdog_cpumask if the watchdog is enabled.
575  */
lockup_detector_setup(void)576 static __init void lockup_detector_setup(void)
577 {
578 	/*
579 	 * If sysctl is off and watchdog got disabled on the command line,
580 	 * nothing to do here.
581 	 */
582 	lockup_detector_update_enable();
583 
584 	if (!IS_ENABLED(CONFIG_SYSCTL) &&
585 	    !(watchdog_enabled && watchdog_thresh))
586 		return;
587 
588 	mutex_lock(&watchdog_mutex);
589 	lockup_detector_reconfigure();
590 	softlockup_initialized = true;
591 	mutex_unlock(&watchdog_mutex);
592 }
593 
594 #else /* CONFIG_SOFTLOCKUP_DETECTOR */
lockup_detector_reconfigure(void)595 static void lockup_detector_reconfigure(void)
596 {
597 	cpus_read_lock();
598 	watchdog_nmi_stop();
599 	lockup_detector_update_enable();
600 	watchdog_nmi_start();
601 	cpus_read_unlock();
602 }
lockup_detector_setup(void)603 static inline void lockup_detector_setup(void)
604 {
605 	lockup_detector_reconfigure();
606 }
607 #endif /* !CONFIG_SOFTLOCKUP_DETECTOR */
608 
__lockup_detector_cleanup(void)609 static void __lockup_detector_cleanup(void)
610 {
611 	lockdep_assert_held(&watchdog_mutex);
612 	hardlockup_detector_perf_cleanup();
613 }
614 
615 /**
616  * lockup_detector_cleanup - Cleanup after cpu hotplug or sysctl changes
617  *
618  * Caller must not hold the cpu hotplug rwsem.
619  */
lockup_detector_cleanup(void)620 void lockup_detector_cleanup(void)
621 {
622 	mutex_lock(&watchdog_mutex);
623 	__lockup_detector_cleanup();
624 	mutex_unlock(&watchdog_mutex);
625 }
626 
627 /**
628  * lockup_detector_soft_poweroff - Interface to stop lockup detector(s)
629  *
630  * Special interface for parisc. It prevents lockup detector warnings from
631  * the default pm_poweroff() function which busy loops forever.
632  */
lockup_detector_soft_poweroff(void)633 void lockup_detector_soft_poweroff(void)
634 {
635 	watchdog_enabled = 0;
636 }
637 
638 #ifdef CONFIG_SYSCTL
639 
640 /* Propagate any changes to the watchdog threads */
proc_watchdog_update(void)641 static void proc_watchdog_update(void)
642 {
643 	/* Remove impossible cpus to keep sysctl output clean. */
644 	cpumask_and(&watchdog_cpumask, &watchdog_cpumask, cpu_possible_mask);
645 	lockup_detector_reconfigure();
646 }
647 
648 /*
649  * common function for watchdog, nmi_watchdog and soft_watchdog parameter
650  *
651  * caller             | table->data points to      | 'which'
652  * -------------------|----------------------------|--------------------------
653  * proc_watchdog      | watchdog_user_enabled      | NMI_WATCHDOG_ENABLED |
654  *                    |                            | SOFT_WATCHDOG_ENABLED
655  * -------------------|----------------------------|--------------------------
656  * proc_nmi_watchdog  | nmi_watchdog_user_enabled  | NMI_WATCHDOG_ENABLED
657  * -------------------|----------------------------|--------------------------
658  * proc_soft_watchdog | soft_watchdog_user_enabled | SOFT_WATCHDOG_ENABLED
659  */
proc_watchdog_common(int which,struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)660 static int proc_watchdog_common(int which, struct ctl_table *table, int write,
661 				void *buffer, size_t *lenp, loff_t *ppos)
662 {
663 	int err, old, *param = table->data;
664 
665 	mutex_lock(&watchdog_mutex);
666 
667 	if (!write) {
668 		/*
669 		 * On read synchronize the userspace interface. This is a
670 		 * racy snapshot.
671 		 */
672 		*param = (watchdog_enabled & which) != 0;
673 		err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
674 	} else {
675 		old = READ_ONCE(*param);
676 		err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
677 		if (!err && old != READ_ONCE(*param))
678 			proc_watchdog_update();
679 	}
680 	mutex_unlock(&watchdog_mutex);
681 	return err;
682 }
683 
684 /*
685  * /proc/sys/kernel/watchdog
686  */
proc_watchdog(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)687 int proc_watchdog(struct ctl_table *table, int write,
688 		  void *buffer, size_t *lenp, loff_t *ppos)
689 {
690 	return proc_watchdog_common(NMI_WATCHDOG_ENABLED|SOFT_WATCHDOG_ENABLED,
691 				    table, write, buffer, lenp, ppos);
692 }
693 
694 /*
695  * /proc/sys/kernel/nmi_watchdog
696  */
proc_nmi_watchdog(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)697 int proc_nmi_watchdog(struct ctl_table *table, int write,
698 		      void *buffer, size_t *lenp, loff_t *ppos)
699 {
700 	if (!nmi_watchdog_available && write)
701 		return -ENOTSUPP;
702 	return proc_watchdog_common(NMI_WATCHDOG_ENABLED,
703 				    table, write, buffer, lenp, ppos);
704 }
705 
706 /*
707  * /proc/sys/kernel/soft_watchdog
708  */
proc_soft_watchdog(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)709 int proc_soft_watchdog(struct ctl_table *table, int write,
710 			void *buffer, size_t *lenp, loff_t *ppos)
711 {
712 	return proc_watchdog_common(SOFT_WATCHDOG_ENABLED,
713 				    table, write, buffer, lenp, ppos);
714 }
715 
716 /*
717  * /proc/sys/kernel/watchdog_thresh
718  */
proc_watchdog_thresh(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)719 int proc_watchdog_thresh(struct ctl_table *table, int write,
720 			 void *buffer, size_t *lenp, loff_t *ppos)
721 {
722 	int err, old;
723 
724 	mutex_lock(&watchdog_mutex);
725 
726 	old = READ_ONCE(watchdog_thresh);
727 	err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
728 
729 	if (!err && write && old != READ_ONCE(watchdog_thresh))
730 		proc_watchdog_update();
731 
732 	mutex_unlock(&watchdog_mutex);
733 	return err;
734 }
735 
736 /*
737  * The cpumask is the mask of possible cpus that the watchdog can run
738  * on, not the mask of cpus it is actually running on.  This allows the
739  * user to specify a mask that will include cpus that have not yet
740  * been brought online, if desired.
741  */
proc_watchdog_cpumask(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)742 int proc_watchdog_cpumask(struct ctl_table *table, int write,
743 			  void *buffer, size_t *lenp, loff_t *ppos)
744 {
745 	int err;
746 
747 	mutex_lock(&watchdog_mutex);
748 
749 	err = proc_do_large_bitmap(table, write, buffer, lenp, ppos);
750 	if (!err && write)
751 		proc_watchdog_update();
752 
753 	mutex_unlock(&watchdog_mutex);
754 	return err;
755 }
756 #endif /* CONFIG_SYSCTL */
757 
lockup_detector_init(void)758 void __init lockup_detector_init(void)
759 {
760 	if (tick_nohz_full_enabled())
761 		pr_info("Disabling watchdog on nohz_full cores by default\n");
762 
763 	cpumask_copy(&watchdog_cpumask,
764 		     housekeeping_cpumask(HK_FLAG_TIMER));
765 
766 	if (!watchdog_nmi_probe())
767 		nmi_watchdog_available = true;
768 	lockup_detector_setup();
769 }
770