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 = this_cpu_ptr(&watchdog_hrtimer);
475 unsigned int *enabled = per_cpu_ptr(&watchdog_en, cpu);
476
477 if (!*enabled)
478 return;
479
480 WARN_ON_ONCE(cpu != smp_processor_id());
481
482 /*
483 * Disable the perf event first. That prevents that a large delay
484 * between disabling the timer and disabling the perf event causes
485 * the perf NMI to detect a false positive.
486 */
487 watchdog_nmi_disable(cpu);
488 hrtimer_cancel(hrtimer);
489 wait_for_completion(this_cpu_ptr(&softlockup_completion));
490
491 /*
492 * No need for barrier here since disabling the watchdog is
493 * synchronized with hotplug lock
494 */
495 *enabled = 0;
496 }
497
watchdog_configured(unsigned int cpu)498 bool watchdog_configured(unsigned int cpu)
499 {
500 return *per_cpu_ptr(&watchdog_en, cpu);
501 }
502
softlockup_stop_fn(void * data)503 static int softlockup_stop_fn(void *data)
504 {
505 watchdog_disable(smp_processor_id());
506 return 0;
507 }
508
softlockup_stop_all(void)509 static void softlockup_stop_all(void)
510 {
511 int cpu;
512
513 if (!softlockup_initialized)
514 return;
515
516 for_each_cpu(cpu, &watchdog_allowed_mask)
517 smp_call_on_cpu(cpu, softlockup_stop_fn, NULL, false);
518
519 cpumask_clear(&watchdog_allowed_mask);
520 }
521
softlockup_start_fn(void * data)522 static int softlockup_start_fn(void *data)
523 {
524 watchdog_enable(smp_processor_id());
525 return 0;
526 }
527
softlockup_start_all(void)528 static void softlockup_start_all(void)
529 {
530 int cpu;
531
532 cpumask_copy(&watchdog_allowed_mask, &watchdog_cpumask);
533 for_each_cpu(cpu, &watchdog_allowed_mask)
534 smp_call_on_cpu(cpu, softlockup_start_fn, NULL, false);
535 }
536
lockup_detector_online_cpu(unsigned int cpu)537 int lockup_detector_online_cpu(unsigned int cpu)
538 {
539 if (cpumask_test_cpu(cpu, &watchdog_allowed_mask))
540 watchdog_enable(cpu);
541 return 0;
542 }
543
lockup_detector_offline_cpu(unsigned int cpu)544 int lockup_detector_offline_cpu(unsigned int cpu)
545 {
546 if (cpumask_test_cpu(cpu, &watchdog_allowed_mask))
547 watchdog_disable(cpu);
548 return 0;
549 }
550
lockup_detector_reconfigure(void)551 static void lockup_detector_reconfigure(void)
552 {
553 cpus_read_lock();
554 watchdog_nmi_stop();
555
556 softlockup_stop_all();
557 set_sample_period();
558 lockup_detector_update_enable();
559 if (watchdog_enabled && watchdog_thresh)
560 softlockup_start_all();
561
562 watchdog_nmi_start();
563 cpus_read_unlock();
564 /*
565 * Must be called outside the cpus locked section to prevent
566 * recursive locking in the perf code.
567 */
568 __lockup_detector_cleanup();
569 }
570
571 /*
572 * Create the watchdog thread infrastructure and configure the detector(s).
573 *
574 * The threads are not unparked as watchdog_allowed_mask is empty. When
575 * the threads are successfully initialized, take the proper locks and
576 * unpark the threads in the watchdog_cpumask if the watchdog is enabled.
577 */
lockup_detector_setup(void)578 static __init void lockup_detector_setup(void)
579 {
580 /*
581 * If sysctl is off and watchdog got disabled on the command line,
582 * nothing to do here.
583 */
584 lockup_detector_update_enable();
585
586 if (!IS_ENABLED(CONFIG_SYSCTL) &&
587 !(watchdog_enabled && watchdog_thresh))
588 return;
589
590 mutex_lock(&watchdog_mutex);
591 lockup_detector_reconfigure();
592 softlockup_initialized = true;
593 mutex_unlock(&watchdog_mutex);
594 }
595
596 #else /* CONFIG_SOFTLOCKUP_DETECTOR */
lockup_detector_reconfigure(void)597 static void lockup_detector_reconfigure(void)
598 {
599 cpus_read_lock();
600 watchdog_nmi_stop();
601 lockup_detector_update_enable();
602 watchdog_nmi_start();
603 cpus_read_unlock();
604 }
lockup_detector_setup(void)605 static inline void lockup_detector_setup(void)
606 {
607 lockup_detector_reconfigure();
608 }
609 #endif /* !CONFIG_SOFTLOCKUP_DETECTOR */
610
__lockup_detector_cleanup(void)611 static void __lockup_detector_cleanup(void)
612 {
613 lockdep_assert_held(&watchdog_mutex);
614 hardlockup_detector_perf_cleanup();
615 }
616
617 /**
618 * lockup_detector_cleanup - Cleanup after cpu hotplug or sysctl changes
619 *
620 * Caller must not hold the cpu hotplug rwsem.
621 */
lockup_detector_cleanup(void)622 void lockup_detector_cleanup(void)
623 {
624 mutex_lock(&watchdog_mutex);
625 __lockup_detector_cleanup();
626 mutex_unlock(&watchdog_mutex);
627 }
628
629 /**
630 * lockup_detector_soft_poweroff - Interface to stop lockup detector(s)
631 *
632 * Special interface for parisc. It prevents lockup detector warnings from
633 * the default pm_poweroff() function which busy loops forever.
634 */
lockup_detector_soft_poweroff(void)635 void lockup_detector_soft_poweroff(void)
636 {
637 watchdog_enabled = 0;
638 }
639
640 #ifdef CONFIG_SYSCTL
641
642 /* Propagate any changes to the watchdog threads */
proc_watchdog_update(void)643 static void proc_watchdog_update(void)
644 {
645 /* Remove impossible cpus to keep sysctl output clean. */
646 cpumask_and(&watchdog_cpumask, &watchdog_cpumask, cpu_possible_mask);
647 lockup_detector_reconfigure();
648 }
649
650 /*
651 * common function for watchdog, nmi_watchdog and soft_watchdog parameter
652 *
653 * caller | table->data points to | 'which'
654 * -------------------|----------------------------|--------------------------
655 * proc_watchdog | watchdog_user_enabled | NMI_WATCHDOG_ENABLED |
656 * | | SOFT_WATCHDOG_ENABLED
657 * -------------------|----------------------------|--------------------------
658 * proc_nmi_watchdog | nmi_watchdog_user_enabled | NMI_WATCHDOG_ENABLED
659 * -------------------|----------------------------|--------------------------
660 * proc_soft_watchdog | soft_watchdog_user_enabled | SOFT_WATCHDOG_ENABLED
661 */
proc_watchdog_common(int which,struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)662 static int proc_watchdog_common(int which, struct ctl_table *table, int write,
663 void *buffer, size_t *lenp, loff_t *ppos)
664 {
665 int err, old, *param = table->data;
666
667 mutex_lock(&watchdog_mutex);
668
669 if (!write) {
670 /*
671 * On read synchronize the userspace interface. This is a
672 * racy snapshot.
673 */
674 *param = (watchdog_enabled & which) != 0;
675 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
676 } else {
677 old = READ_ONCE(*param);
678 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
679 if (!err && old != READ_ONCE(*param))
680 proc_watchdog_update();
681 }
682 mutex_unlock(&watchdog_mutex);
683 return err;
684 }
685
686 /*
687 * /proc/sys/kernel/watchdog
688 */
proc_watchdog(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)689 int proc_watchdog(struct ctl_table *table, int write,
690 void *buffer, size_t *lenp, loff_t *ppos)
691 {
692 return proc_watchdog_common(NMI_WATCHDOG_ENABLED|SOFT_WATCHDOG_ENABLED,
693 table, write, buffer, lenp, ppos);
694 }
695
696 /*
697 * /proc/sys/kernel/nmi_watchdog
698 */
proc_nmi_watchdog(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)699 int proc_nmi_watchdog(struct ctl_table *table, int write,
700 void *buffer, size_t *lenp, loff_t *ppos)
701 {
702 if (!nmi_watchdog_available && write)
703 return -ENOTSUPP;
704 return proc_watchdog_common(NMI_WATCHDOG_ENABLED,
705 table, write, buffer, lenp, ppos);
706 }
707
708 /*
709 * /proc/sys/kernel/soft_watchdog
710 */
proc_soft_watchdog(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)711 int proc_soft_watchdog(struct ctl_table *table, int write,
712 void *buffer, size_t *lenp, loff_t *ppos)
713 {
714 return proc_watchdog_common(SOFT_WATCHDOG_ENABLED,
715 table, write, buffer, lenp, ppos);
716 }
717
718 /*
719 * /proc/sys/kernel/watchdog_thresh
720 */
proc_watchdog_thresh(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)721 int proc_watchdog_thresh(struct ctl_table *table, int write,
722 void *buffer, size_t *lenp, loff_t *ppos)
723 {
724 int err, old;
725
726 mutex_lock(&watchdog_mutex);
727
728 old = READ_ONCE(watchdog_thresh);
729 err = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
730
731 if (!err && write && old != READ_ONCE(watchdog_thresh))
732 proc_watchdog_update();
733
734 mutex_unlock(&watchdog_mutex);
735 return err;
736 }
737
738 /*
739 * The cpumask is the mask of possible cpus that the watchdog can run
740 * on, not the mask of cpus it is actually running on. This allows the
741 * user to specify a mask that will include cpus that have not yet
742 * been brought online, if desired.
743 */
proc_watchdog_cpumask(struct ctl_table * table,int write,void * buffer,size_t * lenp,loff_t * ppos)744 int proc_watchdog_cpumask(struct ctl_table *table, int write,
745 void *buffer, size_t *lenp, loff_t *ppos)
746 {
747 int err;
748
749 mutex_lock(&watchdog_mutex);
750
751 err = proc_do_large_bitmap(table, write, buffer, lenp, ppos);
752 if (!err && write)
753 proc_watchdog_update();
754
755 mutex_unlock(&watchdog_mutex);
756 return err;
757 }
758 #endif /* CONFIG_SYSCTL */
759
lockup_detector_init(void)760 void __init lockup_detector_init(void)
761 {
762 if (tick_nohz_full_enabled())
763 pr_info("Disabling watchdog on nohz_full cores by default\n");
764
765 cpumask_copy(&watchdog_cpumask,
766 housekeeping_cpumask(HK_FLAG_TIMER));
767
768 if (!watchdog_nmi_probe())
769 nmi_watchdog_available = true;
770 lockup_detector_setup();
771 }
772