Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 1 | /* |
| 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 Cao | 86f5e6a | 2012-02-09 17:42:22 -0500 | [diff] [blame] | 6 | * 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 Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 9 | * to those contributors as well. |
| 10 | */ |
| 11 | |
Andrew Morton | 4501980 | 2012-03-23 15:01:55 -0700 | [diff] [blame] | 12 | #define pr_fmt(fmt) "NMI watchdog: " fmt |
| 13 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 14 | #include <linux/mm.h> |
| 15 | #include <linux/cpu.h> |
| 16 | #include <linux/nmi.h> |
| 17 | #include <linux/init.h> |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 18 | #include <linux/module.h> |
| 19 | #include <linux/sysctl.h> |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 20 | #include <linux/smpboot.h> |
Clark Williams | 8bd75c7 | 2013-02-07 09:47:07 -0600 | [diff] [blame] | 21 | #include <linux/sched/rt.h> |
Ingo Molnar | ae7e81c | 2017-02-01 18:07:51 +0100 | [diff] [blame] | 22 | #include <uapi/linux/sched/types.h> |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 23 | #include <linux/tick.h> |
Tejun Heo | 82607adc | 2015-12-08 11:28:04 -0500 | [diff] [blame] | 24 | #include <linux/workqueue.h> |
Ingo Molnar | e601757 | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 25 | #include <linux/sched/clock.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 26 | #include <linux/sched/debug.h> |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 27 | |
| 28 | #include <asm/irq_regs.h> |
Eric B Munson | 5d1c0f4 | 2012-03-10 14:37:28 -0500 | [diff] [blame] | 29 | #include <linux/kvm_para.h> |
Ulrich Obergfell | 81a4bee | 2015-09-04 15:45:15 -0700 | [diff] [blame] | 30 | #include <linux/kthread.h> |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 31 | |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 32 | /* Watchdog configuration */ |
Peter Zijlstra | ab992dc | 2015-05-18 11:31:50 +0200 | [diff] [blame] | 33 | static DEFINE_MUTEX(watchdog_proc_mutex); |
| 34 | |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 35 | int __read_mostly nmi_watchdog_enabled; |
| 36 | |
| 37 | #if defined(CONFIG_HARDLOCKUP_DETECTOR) || defined(CONFIG_HAVE_NMI_WATCHDOG) |
| 38 | unsigned long __read_mostly watchdog_enabled = SOFT_WATCHDOG_ENABLED | |
| 39 | NMI_WATCHDOG_ENABLED; |
Ulrich Obergfell | 84d56e6 | 2015-04-14 15:43:55 -0700 | [diff] [blame] | 40 | #else |
Babu Moger | 249e52e | 2016-12-14 15:06:21 -0800 | [diff] [blame] | 41 | unsigned long __read_mostly watchdog_enabled = SOFT_WATCHDOG_ENABLED; |
Ulrich Obergfell | 84d56e6 | 2015-04-14 15:43:55 -0700 | [diff] [blame] | 42 | #endif |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 43 | |
| 44 | #ifdef CONFIG_HARDLOCKUP_DETECTOR |
| 45 | /* boot commands */ |
| 46 | /* |
| 47 | * Should we panic when a soft-lockup or hard-lockup occurs: |
| 48 | */ |
| 49 | unsigned int __read_mostly hardlockup_panic = |
| 50 | CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE; |
| 51 | /* |
| 52 | * We may not want to enable hard lockup detection by default in all cases, |
| 53 | * for example when running the kernel as a guest on a hypervisor. In these |
| 54 | * cases this function can be called to disable hard lockup detection. This |
| 55 | * function should only be executed once by the boot processor before the |
| 56 | * kernel command line parameters are parsed, because otherwise it is not |
| 57 | * possible to override this in hardlockup_panic_setup(). |
| 58 | */ |
| 59 | void hardlockup_detector_disable(void) |
| 60 | { |
| 61 | watchdog_enabled &= ~NMI_WATCHDOG_ENABLED; |
| 62 | } |
| 63 | |
| 64 | static int __init hardlockup_panic_setup(char *str) |
| 65 | { |
| 66 | if (!strncmp(str, "panic", 5)) |
| 67 | hardlockup_panic = 1; |
| 68 | else if (!strncmp(str, "nopanic", 7)) |
| 69 | hardlockup_panic = 0; |
| 70 | else if (!strncmp(str, "0", 1)) |
| 71 | watchdog_enabled &= ~NMI_WATCHDOG_ENABLED; |
| 72 | else if (!strncmp(str, "1", 1)) |
| 73 | watchdog_enabled |= NMI_WATCHDOG_ENABLED; |
| 74 | return 1; |
| 75 | } |
| 76 | __setup("nmi_watchdog=", hardlockup_panic_setup); |
| 77 | |
| 78 | #endif |
| 79 | |
| 80 | #ifdef CONFIG_SOFTLOCKUP_DETECTOR |
Ulrich Obergfell | 84d56e6 | 2015-04-14 15:43:55 -0700 | [diff] [blame] | 81 | int __read_mostly soft_watchdog_enabled; |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 82 | #endif |
| 83 | |
Ulrich Obergfell | 84d56e6 | 2015-04-14 15:43:55 -0700 | [diff] [blame] | 84 | int __read_mostly watchdog_user_enabled; |
Mandeep Singh Baines | 4eec42f | 2011-05-22 22:10:23 -0700 | [diff] [blame] | 85 | int __read_mostly watchdog_thresh = 10; |
Ulrich Obergfell | 84d56e6 | 2015-04-14 15:43:55 -0700 | [diff] [blame] | 86 | |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 87 | #ifdef CONFIG_SMP |
| 88 | int __read_mostly sysctl_softlockup_all_cpu_backtrace; |
Jiri Kosina | 5553787 | 2015-11-05 18:44:41 -0800 | [diff] [blame] | 89 | int __read_mostly sysctl_hardlockup_all_cpu_backtrace; |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 90 | #endif |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 91 | struct cpumask watchdog_cpumask __read_mostly; |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 92 | unsigned long *watchdog_cpumask_bits = cpumask_bits(&watchdog_cpumask); |
| 93 | |
Ulrich Obergfell | ec6a906 | 2015-09-04 15:45:28 -0700 | [diff] [blame] | 94 | /* |
| 95 | * The 'watchdog_running' variable is set to 1 when the watchdog threads |
| 96 | * are registered/started and is set to 0 when the watchdog threads are |
| 97 | * unregistered/stopped, so it is an indicator whether the threads exist. |
| 98 | */ |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 99 | static int __read_mostly watchdog_running; |
Ulrich Obergfell | ec6a906 | 2015-09-04 15:45:28 -0700 | [diff] [blame] | 100 | /* |
| 101 | * If a subsystem has a need to deactivate the watchdog temporarily, it |
| 102 | * can use the suspend/resume interface to achieve this. The content of |
| 103 | * the 'watchdog_suspended' variable reflects this state. Existing threads |
| 104 | * are parked/unparked by the lockup_detector_{suspend|resume} functions |
| 105 | * (see comment blocks pertaining to those functions for further details). |
| 106 | * |
| 107 | * 'watchdog_suspended' also prevents threads from being registered/started |
| 108 | * or unregistered/stopped via parameters in /proc/sys/kernel, so the state |
| 109 | * of 'watchdog_running' cannot change while the watchdog is deactivated |
| 110 | * temporarily (see related code in 'proc' handlers). |
| 111 | */ |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 112 | int __read_mostly watchdog_suspended; |
| 113 | |
| 114 | /* |
| 115 | * These functions can be overridden if an architecture implements its |
| 116 | * own hardlockup detector. |
| 117 | */ |
| 118 | int __weak watchdog_nmi_enable(unsigned int cpu) |
| 119 | { |
| 120 | return 0; |
| 121 | } |
| 122 | void __weak watchdog_nmi_disable(unsigned int cpu) |
| 123 | { |
| 124 | } |
| 125 | |
| 126 | #ifdef CONFIG_SOFTLOCKUP_DETECTOR |
| 127 | |
| 128 | /* Helper for online, unparked cpus. */ |
| 129 | #define for_each_watchdog_cpu(cpu) \ |
| 130 | for_each_cpu_and((cpu), cpu_online_mask, &watchdog_cpumask) |
| 131 | |
| 132 | atomic_t watchdog_park_in_progress = ATOMIC_INIT(0); |
Ulrich Obergfell | ec6a906 | 2015-09-04 15:45:28 -0700 | [diff] [blame] | 133 | |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 134 | static u64 __read_mostly sample_period; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 135 | |
| 136 | static DEFINE_PER_CPU(unsigned long, watchdog_touch_ts); |
| 137 | static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog); |
| 138 | static DEFINE_PER_CPU(struct hrtimer, watchdog_hrtimer); |
| 139 | static DEFINE_PER_CPU(bool, softlockup_touch_sync); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 140 | static DEFINE_PER_CPU(bool, soft_watchdog_warn); |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 141 | static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts); |
| 142 | static DEFINE_PER_CPU(unsigned long, soft_lockup_hrtimer_cnt); |
chai wen | b1a8de1 | 2014-10-09 15:25:17 -0700 | [diff] [blame] | 143 | static DEFINE_PER_CPU(struct task_struct *, softlockup_task_ptr_saved); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 144 | static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved); |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 145 | static unsigned long soft_lockup_nmi_warn; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 146 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 147 | unsigned int __read_mostly softlockup_panic = |
| 148 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE; |
| 149 | |
| 150 | static int __init softlockup_panic_setup(char *str) |
| 151 | { |
| 152 | softlockup_panic = simple_strtoul(str, NULL, 0); |
| 153 | |
| 154 | return 1; |
| 155 | } |
| 156 | __setup("softlockup_panic=", softlockup_panic_setup); |
| 157 | |
| 158 | static int __init nowatchdog_setup(char *str) |
| 159 | { |
Ulrich Obergfell | 195daf6 | 2015-04-14 15:44:13 -0700 | [diff] [blame] | 160 | watchdog_enabled = 0; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 161 | return 1; |
| 162 | } |
| 163 | __setup("nowatchdog", nowatchdog_setup); |
| 164 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 165 | static int __init nosoftlockup_setup(char *str) |
| 166 | { |
Ulrich Obergfell | 195daf6 | 2015-04-14 15:44:13 -0700 | [diff] [blame] | 167 | watchdog_enabled &= ~SOFT_WATCHDOG_ENABLED; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 168 | return 1; |
| 169 | } |
| 170 | __setup("nosoftlockup", nosoftlockup_setup); |
Ulrich Obergfell | 195daf6 | 2015-04-14 15:44:13 -0700 | [diff] [blame] | 171 | |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 172 | #ifdef CONFIG_SMP |
| 173 | static int __init softlockup_all_cpu_backtrace_setup(char *str) |
| 174 | { |
| 175 | sysctl_softlockup_all_cpu_backtrace = |
| 176 | !!simple_strtol(str, NULL, 0); |
| 177 | return 1; |
| 178 | } |
| 179 | __setup("softlockup_all_cpu_backtrace=", softlockup_all_cpu_backtrace_setup); |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 180 | #ifdef CONFIG_HARDLOCKUP_DETECTOR |
Jiri Kosina | 5553787 | 2015-11-05 18:44:41 -0800 | [diff] [blame] | 181 | static int __init hardlockup_all_cpu_backtrace_setup(char *str) |
| 182 | { |
| 183 | sysctl_hardlockup_all_cpu_backtrace = |
| 184 | !!simple_strtol(str, NULL, 0); |
| 185 | return 1; |
| 186 | } |
| 187 | __setup("hardlockup_all_cpu_backtrace=", hardlockup_all_cpu_backtrace_setup); |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 188 | #endif |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 189 | #endif |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 190 | |
Mandeep Singh Baines | 4eec42f | 2011-05-22 22:10:23 -0700 | [diff] [blame] | 191 | /* |
| 192 | * Hard-lockup warnings should be triggered after just a few seconds. Soft- |
| 193 | * lockups can have false positives under extreme conditions. So we generally |
| 194 | * want a higher threshold for soft lockups than for hard lockups. So we couple |
| 195 | * the thresholds with a factor: we make the soft threshold twice the amount of |
| 196 | * time the hard threshold is. |
| 197 | */ |
Ingo Molnar | 6e9101a | 2011-05-24 05:43:18 +0200 | [diff] [blame] | 198 | static int get_softlockup_thresh(void) |
Mandeep Singh Baines | 4eec42f | 2011-05-22 22:10:23 -0700 | [diff] [blame] | 199 | { |
| 200 | return watchdog_thresh * 2; |
| 201 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 202 | |
| 203 | /* |
| 204 | * Returns seconds, approximately. We don't need nanosecond |
| 205 | * resolution, and we don't need to waste time with a big divide when |
| 206 | * 2^30ns == 1.074s. |
| 207 | */ |
Namhyung Kim | c06b4f1 | 2012-12-27 11:49:44 +0900 | [diff] [blame] | 208 | static unsigned long get_timestamp(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 209 | { |
Cyril Bur | 545a2bf | 2015-02-12 15:01:24 -0800 | [diff] [blame] | 210 | return running_clock() >> 30LL; /* 2^30 ~= 10^9 */ |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 211 | } |
| 212 | |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 213 | static void set_sample_period(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 214 | { |
| 215 | /* |
Mandeep Singh Baines | 586692a | 2011-05-22 22:10:22 -0700 | [diff] [blame] | 216 | * convert watchdog_thresh from seconds to ns |
Fernando Luis Vázquez Cao | 86f5e6a | 2012-02-09 17:42:22 -0500 | [diff] [blame] | 217 | * the divide by 5 is to give hrtimer several chances (two |
| 218 | * or three with the current relation between the soft |
| 219 | * and hard thresholds) to increment before the |
| 220 | * hardlockup detector generates a warning |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 221 | */ |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 222 | sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | /* Commands for resetting the watchdog */ |
| 226 | static void __touch_watchdog(void) |
| 227 | { |
Namhyung Kim | c06b4f1 | 2012-12-27 11:49:44 +0900 | [diff] [blame] | 228 | __this_cpu_write(watchdog_touch_ts, get_timestamp()); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 229 | } |
| 230 | |
Tejun Heo | 03e0d46 | 2015-12-08 11:28:04 -0500 | [diff] [blame] | 231 | /** |
| 232 | * touch_softlockup_watchdog_sched - touch watchdog on scheduler stalls |
| 233 | * |
| 234 | * Call when the scheduler may have stalled for legitimate reasons |
| 235 | * preventing the watchdog task from executing - e.g. the scheduler |
| 236 | * entering idle state. This should only be used for scheduler events. |
| 237 | * Use touch_softlockup_watchdog() for everything else. |
| 238 | */ |
| 239 | void touch_softlockup_watchdog_sched(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 240 | { |
Andrew Morton | 7861144 | 2014-04-18 15:07:12 -0700 | [diff] [blame] | 241 | /* |
| 242 | * Preemption can be enabled. It doesn't matter which CPU's timestamp |
| 243 | * gets zeroed here, so use the raw_ operation. |
| 244 | */ |
| 245 | raw_cpu_write(watchdog_touch_ts, 0); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 246 | } |
Tejun Heo | 03e0d46 | 2015-12-08 11:28:04 -0500 | [diff] [blame] | 247 | |
| 248 | void touch_softlockup_watchdog(void) |
| 249 | { |
| 250 | touch_softlockup_watchdog_sched(); |
Tejun Heo | 82607adc | 2015-12-08 11:28:04 -0500 | [diff] [blame] | 251 | wq_watchdog_touch(raw_smp_processor_id()); |
Tejun Heo | 03e0d46 | 2015-12-08 11:28:04 -0500 | [diff] [blame] | 252 | } |
Ingo Molnar | 0167c78 | 2010-05-13 08:53:33 +0200 | [diff] [blame] | 253 | EXPORT_SYMBOL(touch_softlockup_watchdog); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 254 | |
Don Zickus | 332fbdb | 2010-05-07 17:11:45 -0400 | [diff] [blame] | 255 | void touch_all_softlockup_watchdogs(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 256 | { |
| 257 | int cpu; |
| 258 | |
| 259 | /* |
| 260 | * this is done lockless |
| 261 | * do we care if a 0 races with a timestamp? |
| 262 | * all it means is the softlock check starts one cycle later |
| 263 | */ |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 264 | for_each_watchdog_cpu(cpu) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 265 | per_cpu(watchdog_touch_ts, cpu) = 0; |
Tejun Heo | 82607adc | 2015-12-08 11:28:04 -0500 | [diff] [blame] | 266 | wq_watchdog_touch(-1); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 267 | } |
| 268 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 269 | void touch_softlockup_watchdog_sync(void) |
| 270 | { |
Christoph Lameter | f7f66b0 | 2014-08-17 12:30:34 -0500 | [diff] [blame] | 271 | __this_cpu_write(softlockup_touch_sync, true); |
| 272 | __this_cpu_write(watchdog_touch_ts, 0); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 273 | } |
| 274 | |
Don Zickus | 26e09c6 | 2010-05-17 18:06:04 -0400 | [diff] [blame] | 275 | static int is_softlockup(unsigned long touch_ts) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 276 | { |
Namhyung Kim | c06b4f1 | 2012-12-27 11:49:44 +0900 | [diff] [blame] | 277 | unsigned long now = get_timestamp(); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 278 | |
Ulrich Obergfell | 39d2da2 | 2015-11-05 18:44:56 -0800 | [diff] [blame] | 279 | if ((watchdog_enabled & SOFT_WATCHDOG_ENABLED) && watchdog_thresh){ |
Ulrich Obergfell | 195daf6 | 2015-04-14 15:44:13 -0700 | [diff] [blame] | 280 | /* Warn about unreasonable delays. */ |
| 281 | if (time_after(now, touch_ts + get_softlockup_thresh())) |
| 282 | return now - touch_ts; |
| 283 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 284 | return 0; |
| 285 | } |
| 286 | |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 287 | /* watchdog detector functions */ |
| 288 | bool is_hardlockup(void) |
| 289 | { |
| 290 | unsigned long hrint = __this_cpu_read(hrtimer_interrupts); |
| 291 | |
| 292 | if (__this_cpu_read(hrtimer_interrupts_saved) == hrint) |
| 293 | return true; |
| 294 | |
| 295 | __this_cpu_write(hrtimer_interrupts_saved, hrint); |
| 296 | return false; |
| 297 | } |
| 298 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 299 | static void watchdog_interrupt_count(void) |
| 300 | { |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 301 | __this_cpu_inc(hrtimer_interrupts); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 302 | } |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 303 | |
Ulrich Obergfell | 58cf690 | 2015-11-05 18:44:30 -0800 | [diff] [blame] | 304 | static int watchdog_enable_all_cpus(void); |
| 305 | static void watchdog_disable_all_cpus(void); |
| 306 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 307 | /* watchdog kicker functions */ |
| 308 | static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer) |
| 309 | { |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 310 | unsigned long touch_ts = __this_cpu_read(watchdog_touch_ts); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 311 | struct pt_regs *regs = get_irq_regs(); |
| 312 | int duration; |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 313 | int softlockup_all_cpu_backtrace = sysctl_softlockup_all_cpu_backtrace; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 314 | |
Don Zickus | b94f511 | 2017-01-24 15:17:53 -0800 | [diff] [blame] | 315 | if (atomic_read(&watchdog_park_in_progress) != 0) |
| 316 | return HRTIMER_NORESTART; |
| 317 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 318 | /* kick the hardlockup detector */ |
| 319 | watchdog_interrupt_count(); |
| 320 | |
| 321 | /* kick the softlockup detector */ |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 322 | wake_up_process(__this_cpu_read(softlockup_watchdog)); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 323 | |
| 324 | /* .. and repeat */ |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 325 | hrtimer_forward_now(hrtimer, ns_to_ktime(sample_period)); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 326 | |
| 327 | if (touch_ts == 0) { |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 328 | if (unlikely(__this_cpu_read(softlockup_touch_sync))) { |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 329 | /* |
| 330 | * If the time stamp was touched atomically |
| 331 | * make sure the scheduler tick is up to date. |
| 332 | */ |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 333 | __this_cpu_write(softlockup_touch_sync, false); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 334 | sched_clock_tick(); |
| 335 | } |
Eric B Munson | 5d1c0f4 | 2012-03-10 14:37:28 -0500 | [diff] [blame] | 336 | |
| 337 | /* Clear the guest paused flag on watchdog reset */ |
| 338 | kvm_check_and_clear_guest_paused(); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 339 | __touch_watchdog(); |
| 340 | return HRTIMER_RESTART; |
| 341 | } |
| 342 | |
| 343 | /* check for a softlockup |
| 344 | * This is done by making sure a high priority task is |
| 345 | * being scheduled. The task touches the watchdog to |
| 346 | * indicate it is getting cpu time. If it hasn't then |
| 347 | * this is a good indication some task is hogging the cpu |
| 348 | */ |
Don Zickus | 26e09c6 | 2010-05-17 18:06:04 -0400 | [diff] [blame] | 349 | duration = is_softlockup(touch_ts); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 350 | if (unlikely(duration)) { |
Eric B Munson | 5d1c0f4 | 2012-03-10 14:37:28 -0500 | [diff] [blame] | 351 | /* |
| 352 | * If a virtual machine is stopped by the host it can look to |
| 353 | * the watchdog like a soft lockup, check to see if the host |
| 354 | * stopped the vm before we issue the warning |
| 355 | */ |
| 356 | if (kvm_check_and_clear_guest_paused()) |
| 357 | return HRTIMER_RESTART; |
| 358 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 359 | /* only warn once */ |
chai wen | b1a8de1 | 2014-10-09 15:25:17 -0700 | [diff] [blame] | 360 | if (__this_cpu_read(soft_watchdog_warn) == true) { |
| 361 | /* |
| 362 | * When multiple processes are causing softlockups the |
| 363 | * softlockup detector only warns on the first one |
| 364 | * because the code relies on a full quiet cycle to |
| 365 | * re-arm. The second process prevents the quiet cycle |
| 366 | * and never gets reported. Use task pointers to detect |
| 367 | * this. |
| 368 | */ |
| 369 | if (__this_cpu_read(softlockup_task_ptr_saved) != |
| 370 | current) { |
| 371 | __this_cpu_write(soft_watchdog_warn, false); |
| 372 | __touch_watchdog(); |
| 373 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 374 | return HRTIMER_RESTART; |
chai wen | b1a8de1 | 2014-10-09 15:25:17 -0700 | [diff] [blame] | 375 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 376 | |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 377 | if (softlockup_all_cpu_backtrace) { |
| 378 | /* Prevent multiple soft-lockup reports if one cpu is already |
| 379 | * engaged in dumping cpu back traces |
| 380 | */ |
| 381 | if (test_and_set_bit(0, &soft_lockup_nmi_warn)) { |
| 382 | /* Someone else will report us. Let's give up */ |
| 383 | __this_cpu_write(soft_watchdog_warn, true); |
| 384 | return HRTIMER_RESTART; |
| 385 | } |
| 386 | } |
| 387 | |
Fabian Frederick | 656c3b7 | 2014-08-06 16:04:03 -0700 | [diff] [blame] | 388 | pr_emerg("BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n", |
Don Zickus | 26e09c6 | 2010-05-17 18:06:04 -0400 | [diff] [blame] | 389 | smp_processor_id(), duration, |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 390 | current->comm, task_pid_nr(current)); |
chai wen | b1a8de1 | 2014-10-09 15:25:17 -0700 | [diff] [blame] | 391 | __this_cpu_write(softlockup_task_ptr_saved, current); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 392 | print_modules(); |
| 393 | print_irqtrace_events(current); |
| 394 | if (regs) |
| 395 | show_regs(regs); |
| 396 | else |
| 397 | dump_stack(); |
| 398 | |
Aaron Tomlin | ed23587 | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 399 | if (softlockup_all_cpu_backtrace) { |
| 400 | /* Avoid generating two back traces for current |
| 401 | * given that one is already made above |
| 402 | */ |
| 403 | trigger_allbutself_cpu_backtrace(); |
| 404 | |
| 405 | clear_bit(0, &soft_lockup_nmi_warn); |
| 406 | /* Barrier to sync with other cpus */ |
| 407 | smp_mb__after_atomic(); |
| 408 | } |
| 409 | |
Josh Hunt | 69361ee | 2014-08-08 14:22:31 -0700 | [diff] [blame] | 410 | add_taint(TAINT_SOFTLOCKUP, LOCKDEP_STILL_OK); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 411 | if (softlockup_panic) |
| 412 | panic("softlockup: hung tasks"); |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 413 | __this_cpu_write(soft_watchdog_warn, true); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 414 | } else |
Christoph Lameter | 909ea96 | 2010-12-08 16:22:55 +0100 | [diff] [blame] | 415 | __this_cpu_write(soft_watchdog_warn, false); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 416 | |
| 417 | return HRTIMER_RESTART; |
| 418 | } |
| 419 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 420 | static void watchdog_set_prio(unsigned int policy, unsigned int prio) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 421 | { |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 422 | struct sched_param param = { .sched_priority = prio }; |
| 423 | |
| 424 | sched_setscheduler(current, policy, ¶m); |
| 425 | } |
| 426 | |
| 427 | static void watchdog_enable(unsigned int cpu) |
| 428 | { |
Christoph Lameter | f7f66b0 | 2014-08-17 12:30:34 -0500 | [diff] [blame] | 429 | struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 430 | |
Bjørn Mork | 3935e895 | 2012-12-19 20:51:31 +0100 | [diff] [blame] | 431 | /* kick off the timer for the hardlockup detector */ |
| 432 | hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 433 | hrtimer->function = watchdog_timer_fn; |
| 434 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 435 | /* Enable the perf event */ |
| 436 | watchdog_nmi_enable(cpu); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 437 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 438 | /* done here because hrtimer_start can only pin to smp_processor_id() */ |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 439 | hrtimer_start(hrtimer, ns_to_ktime(sample_period), |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 440 | HRTIMER_MODE_REL_PINNED); |
| 441 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 442 | /* initialize timestamp */ |
| 443 | watchdog_set_prio(SCHED_FIFO, MAX_RT_PRIO - 1); |
| 444 | __touch_watchdog(); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 445 | } |
| 446 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 447 | static void watchdog_disable(unsigned int cpu) |
| 448 | { |
Christoph Lameter | f7f66b0 | 2014-08-17 12:30:34 -0500 | [diff] [blame] | 449 | struct hrtimer *hrtimer = raw_cpu_ptr(&watchdog_hrtimer); |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 450 | |
| 451 | watchdog_set_prio(SCHED_NORMAL, 0); |
| 452 | hrtimer_cancel(hrtimer); |
| 453 | /* disable the perf event */ |
| 454 | watchdog_nmi_disable(cpu); |
| 455 | } |
| 456 | |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 457 | static void watchdog_cleanup(unsigned int cpu, bool online) |
| 458 | { |
| 459 | watchdog_disable(cpu); |
| 460 | } |
| 461 | |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 462 | static int watchdog_should_run(unsigned int cpu) |
| 463 | { |
| 464 | return __this_cpu_read(hrtimer_interrupts) != |
| 465 | __this_cpu_read(soft_lockup_hrtimer_cnt); |
| 466 | } |
| 467 | |
| 468 | /* |
| 469 | * The watchdog thread function - touches the timestamp. |
| 470 | * |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 471 | * It only runs once every sample_period seconds (4 seconds by |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 472 | * default) to reset the softlockup timestamp. If this gets delayed |
| 473 | * for more than 2*watchdog_thresh seconds then the debug-printout |
| 474 | * triggers in watchdog_timer_fn(). |
| 475 | */ |
| 476 | static void watchdog(unsigned int cpu) |
| 477 | { |
| 478 | __this_cpu_write(soft_lockup_hrtimer_cnt, |
| 479 | __this_cpu_read(hrtimer_interrupts)); |
| 480 | __touch_watchdog(); |
Ulrich Obergfell | bcfba4f | 2015-04-14 15:44:10 -0700 | [diff] [blame] | 481 | |
| 482 | /* |
| 483 | * watchdog_nmi_enable() clears the NMI_WATCHDOG_ENABLED bit in the |
| 484 | * failure path. Check for failures that can occur asynchronously - |
| 485 | * for example, when CPUs are on-lined - and shut down the hardware |
| 486 | * perf event on each CPU accordingly. |
| 487 | * |
| 488 | * The only non-obvious place this bit can be cleared is through |
| 489 | * watchdog_nmi_enable(), so a pr_info() is placed there. Placing a |
| 490 | * pr_info here would be too noisy as it would result in a message |
| 491 | * every few seconds if the hardlockup was disabled but the softlockup |
| 492 | * enabled. |
| 493 | */ |
| 494 | if (!(watchdog_enabled & NMI_WATCHDOG_ENABLED)) |
| 495 | watchdog_nmi_disable(cpu); |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 496 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 497 | |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 498 | static struct smp_hotplug_thread watchdog_threads = { |
| 499 | .store = &softlockup_watchdog, |
| 500 | .thread_should_run = watchdog_should_run, |
| 501 | .thread_fn = watchdog, |
| 502 | .thread_comm = "watchdog/%u", |
| 503 | .setup = watchdog_enable, |
| 504 | .cleanup = watchdog_cleanup, |
| 505 | .park = watchdog_disable, |
| 506 | .unpark = watchdog_enable, |
| 507 | }; |
| 508 | |
Ulrich Obergfell | 81a4bee | 2015-09-04 15:45:15 -0700 | [diff] [blame] | 509 | /* |
| 510 | * park all watchdog threads that are specified in 'watchdog_cpumask' |
Ulrich Obergfell | ee7fed5 | 2015-11-05 18:44:39 -0800 | [diff] [blame] | 511 | * |
| 512 | * This function returns an error if kthread_park() of a watchdog thread |
| 513 | * fails. In this situation, the watchdog threads of some CPUs can already |
| 514 | * be parked and the watchdog threads of other CPUs can still be runnable. |
| 515 | * Callers are expected to handle this special condition as appropriate in |
| 516 | * their context. |
Ulrich Obergfell | a2a45b8 | 2015-11-05 18:44:53 -0800 | [diff] [blame] | 517 | * |
| 518 | * This function may only be called in a context that is protected against |
| 519 | * races with CPU hotplug - for example, via get_online_cpus(). |
Ulrich Obergfell | 81a4bee | 2015-09-04 15:45:15 -0700 | [diff] [blame] | 520 | */ |
| 521 | static int watchdog_park_threads(void) |
| 522 | { |
| 523 | int cpu, ret = 0; |
| 524 | |
Don Zickus | b94f511 | 2017-01-24 15:17:53 -0800 | [diff] [blame] | 525 | atomic_set(&watchdog_park_in_progress, 1); |
| 526 | |
Ulrich Obergfell | 81a4bee | 2015-09-04 15:45:15 -0700 | [diff] [blame] | 527 | for_each_watchdog_cpu(cpu) { |
| 528 | ret = kthread_park(per_cpu(softlockup_watchdog, cpu)); |
| 529 | if (ret) |
| 530 | break; |
| 531 | } |
Ulrich Obergfell | 81a4bee | 2015-09-04 15:45:15 -0700 | [diff] [blame] | 532 | |
Don Zickus | b94f511 | 2017-01-24 15:17:53 -0800 | [diff] [blame] | 533 | atomic_set(&watchdog_park_in_progress, 0); |
| 534 | |
Ulrich Obergfell | 81a4bee | 2015-09-04 15:45:15 -0700 | [diff] [blame] | 535 | return ret; |
| 536 | } |
| 537 | |
| 538 | /* |
| 539 | * unpark all watchdog threads that are specified in 'watchdog_cpumask' |
Ulrich Obergfell | a2a45b8 | 2015-11-05 18:44:53 -0800 | [diff] [blame] | 540 | * |
| 541 | * This function may only be called in a context that is protected against |
| 542 | * races with CPU hotplug - for example, via get_online_cpus(). |
Ulrich Obergfell | 81a4bee | 2015-09-04 15:45:15 -0700 | [diff] [blame] | 543 | */ |
| 544 | static void watchdog_unpark_threads(void) |
| 545 | { |
| 546 | int cpu; |
| 547 | |
Ulrich Obergfell | 81a4bee | 2015-09-04 15:45:15 -0700 | [diff] [blame] | 548 | for_each_watchdog_cpu(cpu) |
| 549 | kthread_unpark(per_cpu(softlockup_watchdog, cpu)); |
Ulrich Obergfell | 81a4bee | 2015-09-04 15:45:15 -0700 | [diff] [blame] | 550 | } |
| 551 | |
Ulrich Obergfell | b43cb43 | 2015-11-05 18:44:33 -0800 | [diff] [blame] | 552 | static int update_watchdog_all_cpus(void) |
Michal Hocko | 9809b18 | 2013-09-24 15:27:30 -0700 | [diff] [blame] | 553 | { |
Ulrich Obergfell | b43cb43 | 2015-11-05 18:44:33 -0800 | [diff] [blame] | 554 | int ret; |
| 555 | |
| 556 | ret = watchdog_park_threads(); |
| 557 | if (ret) |
| 558 | return ret; |
| 559 | |
Ulrich Obergfell | d4bdd0b21 | 2015-09-04 15:45:21 -0700 | [diff] [blame] | 560 | watchdog_unpark_threads(); |
Ulrich Obergfell | b43cb43 | 2015-11-05 18:44:33 -0800 | [diff] [blame] | 561 | |
| 562 | return 0; |
Michal Hocko | 9809b18 | 2013-09-24 15:27:30 -0700 | [diff] [blame] | 563 | } |
| 564 | |
Ulrich Obergfell | b2f57c3 | 2015-04-14 15:44:16 -0700 | [diff] [blame] | 565 | static int watchdog_enable_all_cpus(void) |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 566 | { |
| 567 | int err = 0; |
| 568 | |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 569 | if (!watchdog_running) { |
Frederic Weisbecker | 230ec93 | 2015-09-04 15:45:06 -0700 | [diff] [blame] | 570 | err = smpboot_register_percpu_thread_cpumask(&watchdog_threads, |
| 571 | &watchdog_cpumask); |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 572 | if (err) |
| 573 | pr_err("Failed to create watchdog threads, disabled\n"); |
Frederic Weisbecker | 230ec93 | 2015-09-04 15:45:06 -0700 | [diff] [blame] | 574 | else |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 575 | watchdog_running = 1; |
Ulrich Obergfell | b2f57c3 | 2015-04-14 15:44:16 -0700 | [diff] [blame] | 576 | } else { |
| 577 | /* |
| 578 | * Enable/disable the lockup detectors or |
| 579 | * change the sample period 'on the fly'. |
| 580 | */ |
Ulrich Obergfell | b43cb43 | 2015-11-05 18:44:33 -0800 | [diff] [blame] | 581 | err = update_watchdog_all_cpus(); |
| 582 | |
| 583 | if (err) { |
| 584 | watchdog_disable_all_cpus(); |
| 585 | pr_err("Failed to update lockup detectors, disabled\n"); |
| 586 | } |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 587 | } |
| 588 | |
Ulrich Obergfell | b43cb43 | 2015-11-05 18:44:33 -0800 | [diff] [blame] | 589 | if (err) |
| 590 | watchdog_enabled = 0; |
| 591 | |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 592 | return err; |
| 593 | } |
| 594 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 595 | static void watchdog_disable_all_cpus(void) |
| 596 | { |
Frederic Weisbecker | 3c00ea8 | 2013-05-19 20:45:15 +0200 | [diff] [blame] | 597 | if (watchdog_running) { |
| 598 | watchdog_running = 0; |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 599 | smpboot_unregister_percpu_thread(&watchdog_threads); |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 600 | } |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 601 | } |
| 602 | |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 603 | #else /* SOFTLOCKUP */ |
| 604 | static int watchdog_park_threads(void) |
| 605 | { |
| 606 | return 0; |
| 607 | } |
| 608 | |
| 609 | static void watchdog_unpark_threads(void) |
| 610 | { |
| 611 | } |
| 612 | |
| 613 | static int watchdog_enable_all_cpus(void) |
| 614 | { |
| 615 | return 0; |
| 616 | } |
| 617 | |
| 618 | static void watchdog_disable_all_cpus(void) |
| 619 | { |
| 620 | } |
| 621 | |
| 622 | static void set_sample_period(void) |
| 623 | { |
| 624 | } |
| 625 | #endif /* SOFTLOCKUP */ |
| 626 | |
| 627 | /* |
| 628 | * Suspend the hard and soft lockup detector by parking the watchdog threads. |
| 629 | */ |
| 630 | int lockup_detector_suspend(void) |
| 631 | { |
| 632 | int ret = 0; |
| 633 | |
| 634 | get_online_cpus(); |
| 635 | mutex_lock(&watchdog_proc_mutex); |
| 636 | /* |
| 637 | * Multiple suspend requests can be active in parallel (counted by |
| 638 | * the 'watchdog_suspended' variable). If the watchdog threads are |
| 639 | * running, the first caller takes care that they will be parked. |
| 640 | * The state of 'watchdog_running' cannot change while a suspend |
| 641 | * request is active (see related code in 'proc' handlers). |
| 642 | */ |
| 643 | if (watchdog_running && !watchdog_suspended) |
| 644 | ret = watchdog_park_threads(); |
| 645 | |
| 646 | if (ret == 0) |
| 647 | watchdog_suspended++; |
| 648 | else { |
| 649 | watchdog_disable_all_cpus(); |
| 650 | pr_err("Failed to suspend lockup detectors, disabled\n"); |
| 651 | watchdog_enabled = 0; |
| 652 | } |
| 653 | |
| 654 | mutex_unlock(&watchdog_proc_mutex); |
| 655 | |
| 656 | return ret; |
| 657 | } |
| 658 | |
| 659 | /* |
| 660 | * Resume the hard and soft lockup detector by unparking the watchdog threads. |
| 661 | */ |
| 662 | void lockup_detector_resume(void) |
| 663 | { |
| 664 | mutex_lock(&watchdog_proc_mutex); |
| 665 | |
| 666 | watchdog_suspended--; |
| 667 | /* |
| 668 | * The watchdog threads are unparked if they were previously running |
| 669 | * and if there is no more active suspend request. |
| 670 | */ |
| 671 | if (watchdog_running && !watchdog_suspended) |
| 672 | watchdog_unpark_threads(); |
| 673 | |
| 674 | mutex_unlock(&watchdog_proc_mutex); |
| 675 | put_online_cpus(); |
| 676 | } |
| 677 | |
Ulrich Obergfell | 58cf690 | 2015-11-05 18:44:30 -0800 | [diff] [blame] | 678 | #ifdef CONFIG_SYSCTL |
| 679 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 680 | /* |
Ulrich Obergfell | a0c9cbb | 2015-04-14 15:43:58 -0700 | [diff] [blame] | 681 | * Update the run state of the lockup detectors. |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 682 | */ |
Ulrich Obergfell | a0c9cbb | 2015-04-14 15:43:58 -0700 | [diff] [blame] | 683 | static int proc_watchdog_update(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 684 | { |
Ulrich Obergfell | a0c9cbb | 2015-04-14 15:43:58 -0700 | [diff] [blame] | 685 | int err = 0; |
| 686 | |
| 687 | /* |
| 688 | * Watchdog threads won't be started if they are already active. |
| 689 | * The 'watchdog_running' variable in watchdog_*_all_cpus() takes |
| 690 | * care of this. If those threads are already active, the sample |
| 691 | * period will be updated and the lockup detectors will be enabled |
| 692 | * or disabled 'on the fly'. |
| 693 | */ |
| 694 | if (watchdog_enabled && watchdog_thresh) |
Ulrich Obergfell | b2f57c3 | 2015-04-14 15:44:16 -0700 | [diff] [blame] | 695 | err = watchdog_enable_all_cpus(); |
Ulrich Obergfell | a0c9cbb | 2015-04-14 15:43:58 -0700 | [diff] [blame] | 696 | else |
| 697 | watchdog_disable_all_cpus(); |
| 698 | |
| 699 | return err; |
| 700 | |
| 701 | } |
| 702 | |
| 703 | /* |
Ulrich Obergfell | ef246a2 | 2015-04-14 15:44:05 -0700 | [diff] [blame] | 704 | * common function for watchdog, nmi_watchdog and soft_watchdog parameter |
| 705 | * |
| 706 | * caller | table->data points to | 'which' contains the flag(s) |
| 707 | * -------------------|-----------------------|----------------------------- |
| 708 | * proc_watchdog | watchdog_user_enabled | NMI_WATCHDOG_ENABLED or'ed |
| 709 | * | | with SOFT_WATCHDOG_ENABLED |
| 710 | * -------------------|-----------------------|----------------------------- |
| 711 | * proc_nmi_watchdog | nmi_watchdog_enabled | NMI_WATCHDOG_ENABLED |
| 712 | * -------------------|-----------------------|----------------------------- |
| 713 | * proc_soft_watchdog | soft_watchdog_enabled | SOFT_WATCHDOG_ENABLED |
| 714 | */ |
| 715 | static int proc_watchdog_common(int which, struct ctl_table *table, int write, |
| 716 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 717 | { |
| 718 | int err, old, new; |
| 719 | int *watchdog_param = (int *)table->data; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 720 | |
Ulrich Obergfell | 8614dde | 2015-11-05 18:44:50 -0800 | [diff] [blame] | 721 | get_online_cpus(); |
Michal Hocko | 359e6fa | 2013-09-24 15:27:29 -0700 | [diff] [blame] | 722 | mutex_lock(&watchdog_proc_mutex); |
Thomas Gleixner | bcd951c | 2012-07-16 10:42:38 +0000 | [diff] [blame] | 723 | |
Ulrich Obergfell | 8c073d2 | 2015-09-04 15:45:18 -0700 | [diff] [blame] | 724 | if (watchdog_suspended) { |
| 725 | /* no parameter changes allowed while watchdog is suspended */ |
| 726 | err = -EAGAIN; |
| 727 | goto out; |
| 728 | } |
| 729 | |
Ulrich Obergfell | ef246a2 | 2015-04-14 15:44:05 -0700 | [diff] [blame] | 730 | /* |
| 731 | * If the parameter is being read return the state of the corresponding |
| 732 | * bit(s) in 'watchdog_enabled', else update 'watchdog_enabled' and the |
| 733 | * run state of the lockup detectors. |
| 734 | */ |
| 735 | if (!write) { |
| 736 | *watchdog_param = (watchdog_enabled & which) != 0; |
| 737 | err = proc_dointvec_minmax(table, write, buffer, lenp, ppos); |
| 738 | } else { |
| 739 | err = proc_dointvec_minmax(table, write, buffer, lenp, ppos); |
| 740 | if (err) |
| 741 | goto out; |
| 742 | |
| 743 | /* |
| 744 | * There is a race window between fetching the current value |
| 745 | * from 'watchdog_enabled' and storing the new value. During |
| 746 | * this race window, watchdog_nmi_enable() can sneak in and |
| 747 | * clear the NMI_WATCHDOG_ENABLED bit in 'watchdog_enabled'. |
| 748 | * The 'cmpxchg' detects this race and the loop retries. |
| 749 | */ |
| 750 | do { |
| 751 | old = watchdog_enabled; |
| 752 | /* |
| 753 | * If the parameter value is not zero set the |
| 754 | * corresponding bit(s), else clear it(them). |
| 755 | */ |
| 756 | if (*watchdog_param) |
| 757 | new = old | which; |
| 758 | else |
| 759 | new = old & ~which; |
| 760 | } while (cmpxchg(&watchdog_enabled, old, new) != old); |
| 761 | |
| 762 | /* |
Ulrich Obergfell | b43cb43 | 2015-11-05 18:44:33 -0800 | [diff] [blame] | 763 | * Update the run state of the lockup detectors. There is _no_ |
| 764 | * need to check the value returned by proc_watchdog_update() |
| 765 | * and to restore the previous value of 'watchdog_enabled' as |
| 766 | * both lockup detectors are disabled if proc_watchdog_update() |
| 767 | * returns an error. |
Ulrich Obergfell | ef246a2 | 2015-04-14 15:44:05 -0700 | [diff] [blame] | 768 | */ |
Joshua Hunt | a1ee193 | 2016-03-17 14:17:23 -0700 | [diff] [blame] | 769 | if (old == new) |
| 770 | goto out; |
| 771 | |
Ulrich Obergfell | ef246a2 | 2015-04-14 15:44:05 -0700 | [diff] [blame] | 772 | err = proc_watchdog_update(); |
Ulrich Obergfell | ef246a2 | 2015-04-14 15:44:05 -0700 | [diff] [blame] | 773 | } |
| 774 | out: |
| 775 | mutex_unlock(&watchdog_proc_mutex); |
Ulrich Obergfell | 8614dde | 2015-11-05 18:44:50 -0800 | [diff] [blame] | 776 | put_online_cpus(); |
Ulrich Obergfell | ef246a2 | 2015-04-14 15:44:05 -0700 | [diff] [blame] | 777 | return err; |
| 778 | } |
| 779 | |
| 780 | /* |
Ulrich Obergfell | 83a80a3 | 2015-04-14 15:44:08 -0700 | [diff] [blame] | 781 | * /proc/sys/kernel/watchdog |
| 782 | */ |
| 783 | int proc_watchdog(struct ctl_table *table, int write, |
| 784 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 785 | { |
| 786 | return proc_watchdog_common(NMI_WATCHDOG_ENABLED|SOFT_WATCHDOG_ENABLED, |
| 787 | table, write, buffer, lenp, ppos); |
| 788 | } |
| 789 | |
| 790 | /* |
| 791 | * /proc/sys/kernel/nmi_watchdog |
| 792 | */ |
| 793 | int proc_nmi_watchdog(struct ctl_table *table, int write, |
| 794 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 795 | { |
| 796 | return proc_watchdog_common(NMI_WATCHDOG_ENABLED, |
| 797 | table, write, buffer, lenp, ppos); |
| 798 | } |
| 799 | |
| 800 | /* |
| 801 | * /proc/sys/kernel/soft_watchdog |
| 802 | */ |
| 803 | int proc_soft_watchdog(struct ctl_table *table, int write, |
| 804 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 805 | { |
| 806 | return proc_watchdog_common(SOFT_WATCHDOG_ENABLED, |
| 807 | table, write, buffer, lenp, ppos); |
| 808 | } |
| 809 | |
| 810 | /* |
| 811 | * /proc/sys/kernel/watchdog_thresh |
| 812 | */ |
| 813 | int proc_watchdog_thresh(struct ctl_table *table, int write, |
| 814 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 815 | { |
Joshua Hunt | a1ee193 | 2016-03-17 14:17:23 -0700 | [diff] [blame] | 816 | int err, old, new; |
Ulrich Obergfell | 83a80a3 | 2015-04-14 15:44:08 -0700 | [diff] [blame] | 817 | |
Ulrich Obergfell | 8614dde | 2015-11-05 18:44:50 -0800 | [diff] [blame] | 818 | get_online_cpus(); |
Ulrich Obergfell | 83a80a3 | 2015-04-14 15:44:08 -0700 | [diff] [blame] | 819 | mutex_lock(&watchdog_proc_mutex); |
| 820 | |
Ulrich Obergfell | 8c073d2 | 2015-09-04 15:45:18 -0700 | [diff] [blame] | 821 | if (watchdog_suspended) { |
| 822 | /* no parameter changes allowed while watchdog is suspended */ |
| 823 | err = -EAGAIN; |
| 824 | goto out; |
| 825 | } |
| 826 | |
Ulrich Obergfell | 83a80a3 | 2015-04-14 15:44:08 -0700 | [diff] [blame] | 827 | old = ACCESS_ONCE(watchdog_thresh); |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 828 | err = proc_dointvec_minmax(table, write, buffer, lenp, ppos); |
Ulrich Obergfell | 83a80a3 | 2015-04-14 15:44:08 -0700 | [diff] [blame] | 829 | |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 830 | if (err || !write) |
Michal Hocko | 359e6fa | 2013-09-24 15:27:29 -0700 | [diff] [blame] | 831 | goto out; |
Mandeep Singh Baines | e04ab2b | 2011-05-22 22:10:21 -0700 | [diff] [blame] | 832 | |
anish kumar | b66a2356 | 2013-03-12 14:44:08 -0400 | [diff] [blame] | 833 | /* |
Ulrich Obergfell | d283c64 | 2015-11-05 18:44:27 -0800 | [diff] [blame] | 834 | * Update the sample period. Restore on failure. |
anish kumar | b66a2356 | 2013-03-12 14:44:08 -0400 | [diff] [blame] | 835 | */ |
Joshua Hunt | a1ee193 | 2016-03-17 14:17:23 -0700 | [diff] [blame] | 836 | new = ACCESS_ONCE(watchdog_thresh); |
| 837 | if (old == new) |
| 838 | goto out; |
| 839 | |
Ulrich Obergfell | 83a80a3 | 2015-04-14 15:44:08 -0700 | [diff] [blame] | 840 | set_sample_period(); |
| 841 | err = proc_watchdog_update(); |
Ulrich Obergfell | d283c64 | 2015-11-05 18:44:27 -0800 | [diff] [blame] | 842 | if (err) { |
Ulrich Obergfell | 83a80a3 | 2015-04-14 15:44:08 -0700 | [diff] [blame] | 843 | watchdog_thresh = old; |
Ulrich Obergfell | d283c64 | 2015-11-05 18:44:27 -0800 | [diff] [blame] | 844 | set_sample_period(); |
| 845 | } |
Michal Hocko | 359e6fa | 2013-09-24 15:27:29 -0700 | [diff] [blame] | 846 | out: |
| 847 | mutex_unlock(&watchdog_proc_mutex); |
Ulrich Obergfell | 8614dde | 2015-11-05 18:44:50 -0800 | [diff] [blame] | 848 | put_online_cpus(); |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 849 | return err; |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 850 | } |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 851 | |
| 852 | /* |
| 853 | * The cpumask is the mask of possible cpus that the watchdog can run |
| 854 | * on, not the mask of cpus it is actually running on. This allows the |
| 855 | * user to specify a mask that will include cpus that have not yet |
| 856 | * been brought online, if desired. |
| 857 | */ |
| 858 | int proc_watchdog_cpumask(struct ctl_table *table, int write, |
| 859 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 860 | { |
| 861 | int err; |
| 862 | |
Ulrich Obergfell | 8614dde | 2015-11-05 18:44:50 -0800 | [diff] [blame] | 863 | get_online_cpus(); |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 864 | mutex_lock(&watchdog_proc_mutex); |
Ulrich Obergfell | 8c073d2 | 2015-09-04 15:45:18 -0700 | [diff] [blame] | 865 | |
| 866 | if (watchdog_suspended) { |
| 867 | /* no parameter changes allowed while watchdog is suspended */ |
| 868 | err = -EAGAIN; |
| 869 | goto out; |
| 870 | } |
| 871 | |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 872 | err = proc_do_large_bitmap(table, write, buffer, lenp, ppos); |
| 873 | if (!err && write) { |
| 874 | /* Remove impossible cpus to keep sysctl output cleaner. */ |
| 875 | cpumask_and(&watchdog_cpumask, &watchdog_cpumask, |
| 876 | cpu_possible_mask); |
| 877 | |
| 878 | if (watchdog_running) { |
| 879 | /* |
| 880 | * Failure would be due to being unable to allocate |
| 881 | * a temporary cpumask, so we are likely not in a |
| 882 | * position to do much else to make things better. |
| 883 | */ |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 884 | #ifdef CONFIG_SOFTLOCKUP_DETECTOR |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 885 | if (smpboot_update_cpumask_percpu_thread( |
| 886 | &watchdog_threads, &watchdog_cpumask) != 0) |
| 887 | pr_err("cpumask update failed\n"); |
Nicholas Piggin | 05a4a95 | 2017-07-12 14:35:46 -0700 | [diff] [blame^] | 888 | #endif |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 889 | } |
| 890 | } |
Ulrich Obergfell | 8c073d2 | 2015-09-04 15:45:18 -0700 | [diff] [blame] | 891 | out: |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 892 | mutex_unlock(&watchdog_proc_mutex); |
Ulrich Obergfell | 8614dde | 2015-11-05 18:44:50 -0800 | [diff] [blame] | 893 | put_online_cpus(); |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 894 | return err; |
| 895 | } |
| 896 | |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 897 | #endif /* CONFIG_SYSCTL */ |
| 898 | |
Peter Zijlstra | 004417a | 2010-11-25 18:38:29 +0100 | [diff] [blame] | 899 | void __init lockup_detector_init(void) |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 900 | { |
Chuansheng Liu | 0f34c40 | 2012-12-17 15:59:50 -0800 | [diff] [blame] | 901 | set_sample_period(); |
Frederic Weisbecker | b8900bc | 2013-06-06 15:42:53 +0200 | [diff] [blame] | 902 | |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 903 | #ifdef CONFIG_NO_HZ_FULL |
| 904 | if (tick_nohz_full_enabled()) { |
Frederic Weisbecker | 314b08ff | 2015-09-04 15:45:09 -0700 | [diff] [blame] | 905 | pr_info("Disabling watchdog on nohz_full cores by default\n"); |
| 906 | cpumask_copy(&watchdog_cpumask, housekeeping_mask); |
Chris Metcalf | fe4ba3c | 2015-06-24 16:55:45 -0700 | [diff] [blame] | 907 | } else |
| 908 | cpumask_copy(&watchdog_cpumask, cpu_possible_mask); |
| 909 | #else |
| 910 | cpumask_copy(&watchdog_cpumask, cpu_possible_mask); |
| 911 | #endif |
| 912 | |
Ulrich Obergfell | 195daf6 | 2015-04-14 15:44:13 -0700 | [diff] [blame] | 913 | if (watchdog_enabled) |
Ulrich Obergfell | b2f57c3 | 2015-04-14 15:44:16 -0700 | [diff] [blame] | 914 | watchdog_enable_all_cpus(); |
Don Zickus | 58687ac | 2010-05-07 17:11:44 -0400 | [diff] [blame] | 915 | } |