Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

watchdog/softlockup: Low-overhead detection of interrupt storm

The following softlockup is caused by interrupt storm, but it cannot be
identified from the call tree. Because the call tree is just a snapshot
and doesn't fully capture the behavior of the CPU during the soft lockup.
watchdog: BUG: soft lockup - CPU#28 stuck for 23s! [fio:83921]
...
Call trace:
__do_softirq+0xa0/0x37c
__irq_exit_rcu+0x108/0x140
irq_exit+0x14/0x20
__handle_domain_irq+0x84/0xe0
gic_handle_irq+0x80/0x108
el0_irq_naked+0x50/0x58

Therefore, it is necessary to report CPU utilization during the
softlockup_threshold period (report once every sample_period, for a total
of 5 reportings), like this:
watchdog: BUG: soft lockup - CPU#28 stuck for 23s! [fio:83921]
CPU#28 Utilization every 4s during lockup:
#1: 0% system, 0% softirq, 100% hardirq, 0% idle
#2: 0% system, 0% softirq, 100% hardirq, 0% idle
#3: 0% system, 0% softirq, 100% hardirq, 0% idle
#4: 0% system, 0% softirq, 100% hardirq, 0% idle
#5: 0% system, 0% softirq, 100% hardirq, 0% idle
...

This is helpful in determining whether an interrupt storm has occurred or
in identifying the cause of the softlockup. The criteria for determination
are as follows:

a. If the hardirq utilization is high, then interrupt storm should be
considered and the root cause cannot be determined from the call tree.
b. If the softirq utilization is high, then the call might not necessarily
point at the root cause.
c. If the system utilization is high, then analyzing the root
cause from the call tree is possible in most cases.

The mechanism requires a considerable amount of global storage space
when configured for the maximum number of CPUs. Therefore, adding a
SOFTLOCKUP_DETECTOR_INTR_STORM Kconfig knob that defaults to "yes"
if the max number of CPUs is <= 128.

Signed-off-by: Bitao Hu <yaoma@linux.alibaba.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Reviewed-by: Liu Song <liusong@linux.alibaba.com>
Link: https://lore.kernel.org/r/20240411074134.30922-5-yaoma@linux.alibaba.com

authored by

Bitao Hu and committed by
Thomas Gleixner
d7037381 25a4a015

+112 -1
+98 -1
kernel/watchdog.c
··· 16 16 #include <linux/cpu.h> 17 17 #include <linux/nmi.h> 18 18 #include <linux/init.h> 19 + #include <linux/kernel_stat.h> 20 + #include <linux/math64.h> 19 21 #include <linux/module.h> 20 22 #include <linux/sysctl.h> 21 23 #include <linux/tick.h> ··· 36 34 #else 37 35 # define WATCHDOG_HARDLOCKUP_DEFAULT 0 38 36 #endif 37 + 38 + #define NUM_SAMPLE_PERIODS 5 39 39 40 40 unsigned long __read_mostly watchdog_enabled; 41 41 int __read_mostly watchdog_user_enabled = 1; ··· 337 333 338 334 static void __lockup_detector_cleanup(void); 339 335 336 + #ifdef CONFIG_SOFTLOCKUP_DETECTOR_INTR_STORM 337 + enum stats_per_group { 338 + STATS_SYSTEM, 339 + STATS_SOFTIRQ, 340 + STATS_HARDIRQ, 341 + STATS_IDLE, 342 + NUM_STATS_PER_GROUP, 343 + }; 344 + 345 + static const enum cpu_usage_stat tracked_stats[NUM_STATS_PER_GROUP] = { 346 + CPUTIME_SYSTEM, 347 + CPUTIME_SOFTIRQ, 348 + CPUTIME_IRQ, 349 + CPUTIME_IDLE, 350 + }; 351 + 352 + static DEFINE_PER_CPU(u16, cpustat_old[NUM_STATS_PER_GROUP]); 353 + static DEFINE_PER_CPU(u8, cpustat_util[NUM_SAMPLE_PERIODS][NUM_STATS_PER_GROUP]); 354 + static DEFINE_PER_CPU(u8, cpustat_tail); 355 + 356 + /* 357 + * We don't need nanosecond resolution. A granularity of 16ms is 358 + * sufficient for our precision, allowing us to use u16 to store 359 + * cpustats, which will roll over roughly every ~1000 seconds. 360 + * 2^24 ~= 16 * 10^6 361 + */ 362 + static u16 get_16bit_precision(u64 data_ns) 363 + { 364 + return data_ns >> 24LL; /* 2^24ns ~= 16.8ms */ 365 + } 366 + 367 + static void update_cpustat(void) 368 + { 369 + int i; 370 + u8 util; 371 + u16 old_stat, new_stat; 372 + struct kernel_cpustat kcpustat; 373 + u64 *cpustat = kcpustat.cpustat; 374 + u8 tail = __this_cpu_read(cpustat_tail); 375 + u16 sample_period_16 = get_16bit_precision(sample_period); 376 + 377 + kcpustat_cpu_fetch(&kcpustat, smp_processor_id()); 378 + 379 + for (i = 0; i < NUM_STATS_PER_GROUP; i++) { 380 + old_stat = __this_cpu_read(cpustat_old[i]); 381 + new_stat = get_16bit_precision(cpustat[tracked_stats[i]]); 382 + util = DIV_ROUND_UP(100 * (new_stat - old_stat), sample_period_16); 383 + __this_cpu_write(cpustat_util[tail][i], util); 384 + __this_cpu_write(cpustat_old[i], new_stat); 385 + } 386 + 387 + __this_cpu_write(cpustat_tail, (tail + 1) % NUM_SAMPLE_PERIODS); 388 + } 389 + 390 + static void print_cpustat(void) 391 + { 392 + int i, group; 393 + u8 tail = __this_cpu_read(cpustat_tail); 394 + u64 sample_period_second = sample_period; 395 + 396 + do_div(sample_period_second, NSEC_PER_SEC); 397 + 398 + /* 399 + * Outputting the "watchdog" prefix on every line is redundant and not 400 + * concise, and the original alarm information is sufficient for 401 + * positioning in logs, hence here printk() is used instead of pr_crit(). 402 + */ 403 + printk(KERN_CRIT "CPU#%d Utilization every %llus during lockup:\n", 404 + smp_processor_id(), sample_period_second); 405 + 406 + for (i = 0; i < NUM_SAMPLE_PERIODS; i++) { 407 + group = (tail + i) % NUM_SAMPLE_PERIODS; 408 + printk(KERN_CRIT "\t#%d: %3u%% system,\t%3u%% softirq,\t" 409 + "%3u%% hardirq,\t%3u%% idle\n", i + 1, 410 + __this_cpu_read(cpustat_util[group][STATS_SYSTEM]), 411 + __this_cpu_read(cpustat_util[group][STATS_SOFTIRQ]), 412 + __this_cpu_read(cpustat_util[group][STATS_HARDIRQ]), 413 + __this_cpu_read(cpustat_util[group][STATS_IDLE])); 414 + } 415 + } 416 + 417 + static void report_cpu_status(void) 418 + { 419 + print_cpustat(); 420 + } 421 + #else 422 + static inline void update_cpustat(void) { } 423 + static inline void report_cpu_status(void) { } 424 + #endif 425 + 340 426 /* 341 427 * Hard-lockup warnings should be triggered after just a few seconds. Soft- 342 428 * lockups can have false positives under extreme conditions. So we generally ··· 458 364 * and hard thresholds) to increment before the 459 365 * hardlockup detector generates a warning 460 366 */ 461 - sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / 5); 367 + sample_period = get_softlockup_thresh() * ((u64)NSEC_PER_SEC / NUM_SAMPLE_PERIODS); 462 368 watchdog_update_hrtimer_threshold(sample_period); 463 369 } 464 370 ··· 598 504 */ 599 505 period_ts = READ_ONCE(*this_cpu_ptr(&watchdog_report_ts)); 600 506 507 + update_cpustat(); 508 + 601 509 /* Reset the interval when touched by known problematic code. */ 602 510 if (period_ts == SOFTLOCKUP_DELAY_REPORT) { 603 511 if (unlikely(__this_cpu_read(softlockup_touch_sync))) { ··· 635 539 pr_emerg("BUG: soft lockup - CPU#%d stuck for %us! [%s:%d]\n", 636 540 smp_processor_id(), duration, 637 541 current->comm, task_pid_nr(current)); 542 + report_cpu_status(); 638 543 print_modules(); 639 544 print_irqtrace_events(current); 640 545 if (regs)
+14
lib/Kconfig.debug
··· 1029 1029 chance to run. The current stack trace is displayed upon 1030 1030 detection and the system will stay locked up. 1031 1031 1032 + config SOFTLOCKUP_DETECTOR_INTR_STORM 1033 + bool "Detect Interrupt Storm in Soft Lockups" 1034 + depends on SOFTLOCKUP_DETECTOR && IRQ_TIME_ACCOUNTING 1035 + select GENERIC_IRQ_STAT_SNAPSHOT 1036 + default y if NR_CPUS <= 128 1037 + help 1038 + Say Y here to enable the kernel to detect interrupt storm 1039 + during "soft lockups". 1040 + 1041 + "soft lockups" can be caused by a variety of reasons. If one is 1042 + caused by an interrupt storm, then the storming interrupts will not 1043 + be on the callstack. To detect this case, it is necessary to report 1044 + the CPU stats and the interrupt counts during the "soft lockups". 1045 + 1032 1046 config BOOTPARAM_SOFTLOCKUP_PANIC 1033 1047 bool "Panic (Reboot) On Soft Lockups" 1034 1048 depends on SOFTLOCKUP_DETECTOR