lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Sat, 3 Oct 2009 07:36:30 -0700
From:	jia zhang <jia.zhang2008@...il.com>
To:	Ingo Molnar <mingo@...e.hu>
Cc:	linux-kernel@...r.kernel.org
Subject: [PATCH] softlockup: allow checking for remote CPUs getting stuck in 
	irq

This patch makes softlockup be able to report the status of
remote CPUs even though they are getting stuck in irq context.
The approach is just to let each local softlockup_tick() check
for threshold timespan for all CPUs.

Signed-off-by: Jia Zhang <jia.zhang2008@...il.com>
---
 kernel/softlockup.c |   74 +++++++++++++++++++++++++++++++++++----------------
 1 files changed, 51 insertions(+), 23 deletions(-)

diff --git a/kernel/softlockup.c b/kernel/softlockup.c
index 81324d1..0e22deb 100644
--- a/kernel/softlockup.c
+++ b/kernel/softlockup.c
@@ -4,7 +4,7 @@
  * started by Ingo Molnar, Copyright (C) 2005, 2006 Red Hat, Inc.
  *
  * this code detects soft lockups: incidents in where on a CPU
- * the kernel does not reschedule for 10 seconds or more.
+ * the kernel does not reschedule for at most 60 seconds.
  */
 #include <linux/mm.h>
 #include <linux/cpu.h>
@@ -20,7 +20,7 @@

 #include <asm/irq_regs.h>

-static DEFINE_SPINLOCK(print_lock);
+static DEFINE_SPINLOCK(softlockup_lock);

 static DEFINE_PER_CPU(unsigned long, touch_timestamp);
 static DEFINE_PER_CPU(unsigned long, print_timestamp);
@@ -101,31 +101,39 @@ int proc_dosoftlockup_thresh(struct ctl_table
*table, int write,
  * This callback runs from the timer interrupt, and checks
  * whether the watchdog thread has hung or not:
  */
-void softlockup_tick(void)
+static void __softlockup_tick(int cpu)
 {
-	int this_cpu = smp_processor_id();
-	unsigned long touch_timestamp = per_cpu(touch_timestamp, this_cpu);
+	int this_cpu;
+	unsigned long touch_timestamp;
 	unsigned long print_timestamp;
-	struct pt_regs *regs = get_irq_regs();
+	struct pt_regs *regs;
 	unsigned long now;
+	int cur_thresh = softlockup_thresh;

 	/* Is detection switched off? */
-	if (!per_cpu(watchdog_task, this_cpu) || softlockup_thresh <= 0) {
+	if (!per_cpu(watchdog_task, cpu) || cur_thresh <= 0) {
 		/* Be sure we don't false trigger if switched back on */
-		if (touch_timestamp)
-			per_cpu(touch_timestamp, this_cpu) = 0;
+		per_cpu(touch_timestamp, cpu) = 0;
 		return;
 	}

+	touch_timestamp = per_cpu(touch_timestamp, cpu);
 	if (touch_timestamp == 0) {
 		__touch_softlockup_watchdog();
 		return;
 	}

-	print_timestamp = per_cpu(print_timestamp, this_cpu);
+	print_timestamp = per_cpu(print_timestamp, cpu);
+	this_cpu = raw_smp_processor_id();

-	/* report at most once a second */
-	if (print_timestamp == touch_timestamp || did_panic)
+	/* report at most one time */
+	if (did_panic)
+		return;
+
+	if (cpu != this_cpu) {
+		if (print_timestamp >= touch_timestamp)
+			return;
+	} else if (print_timestamp == touch_timestamp)
 		return;

 	/* do not print during early bootup: */
@@ -134,39 +142,58 @@ void softlockup_tick(void)
 		return;
 	}

-	now = get_timestamp(this_cpu);
+	now = get_timestamp(cpu);

 	/*
 	 * Wake up the high-prio watchdog task twice per
 	 * threshold timespan.
 	 */
-	if (now > touch_timestamp + softlockup_thresh/2)
-		wake_up_process(per_cpu(watchdog_task, this_cpu));
+	if (now > touch_timestamp + cur_thresh/2)
+		wake_up_process(per_cpu(watchdog_task, cpu));

 	/* Warn about unreasonable delays: */
-	if (now <= (touch_timestamp + softlockup_thresh))
+	if (now <= (touch_timestamp + cur_thresh))
 		return;

-	per_cpu(print_timestamp, this_cpu) = touch_timestamp;
+	if (cpu != this_cpu) {
+		per_cpu(print_timestamp, cpu) = now;
+		printk(KERN_ERR "BUG: soft lockup - remote CPU#%d stuck for "
+						"at least %lus!\n", cpu, now - touch_timestamp);
+		return;
+	}

-	spin_lock(&print_lock);
-	printk(KERN_ERR "BUG: soft lockup - CPU#%d stuck for %lus! [%s:%d]\n",
+	per_cpu(print_timestamp, this_cpu) = touch_timestamp;
+	printk(KERN_ERR "BUG: soft lockup - local CPU#%d stuck for %lus! [%s:%d]\n",
 			this_cpu, now - touch_timestamp,
 			current->comm, task_pid_nr(current));
 	print_modules();
 	print_irqtrace_events(current);
+	regs = get_irq_regs();
 	if (regs)
 		show_regs(regs);
 	else
 		dump_stack();
-	spin_unlock(&print_lock);

 	if (softlockup_panic)
 		panic("softlockup: hung tasks");
 }

+void softlockup_tick(void)
+{
+	int cpu;
+
+	if (!spin_trylock(&softlockup_lock))
+		return;
+
+	for_each_online_cpu(cpu)
+		__softlockup_tick(cpu);
+
+	spin_unlock(&softlockup_lock);
+}
+
 /*
- * The watchdog thread - runs every second and touches the timestamp.
+ * The watchdog thread - runs every half threshold timespan and
+ * touches the timestamp.
  */
 static int watchdog(void *__bind_cpu)
 {
@@ -179,8 +206,9 @@ static int watchdog(void *__bind_cpu)

 	set_current_state(TASK_INTERRUPTIBLE);
 	/*
-	 * Run briefly once per second to reset the softlockup timestamp.
-	 * If this gets delayed for more than 60 seconds then the
+	 * Run briefly once per half threshold timespan to reset the
+	 * softlockup timestamp.
+	 * If this gets delayed for more than threshold timespan then the
 	 * debug-printout triggers in softlockup_tick().
 	 */
 	while (!kthread_should_stop()) {
-- 
1.6.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ