[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <0DB595A2CB707F458400BE9663B6A72269C0047793@SC-VEXCH2.marvell.com>
Date: Fri, 11 Oct 2013 10:58:31 -0700
From: Seif Mazareeb <seif@...vell.com>
To: "davem@...emloft.net" <davem@...emloft.net>,
"paul@...l-moore.com" <paul@...l-moore.com>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>
CC: "thomas.petazzoni@...e-electrons.com"
<thomas.petazzoni@...e-electrons.com>,
Dmitri Epshtein <dima@...vell.com>
Subject: [PATCH 1/1] net: fix cipso packet validation when !NETLABEL
When CONFIG_NETLABEL is disabled, the cipso_v4_validate() function could loop
forever in the main loop if opt[opt_iter +1] == 0, this will causing a kernel
crash in an SMP system, since the CPU executing this function will
stall /not respond to IPIs.
This problem can be reproduced by running the IP Stack Integrity Checker
(http://isic.sourceforge.net) using the following command on a Linux machine
connected to DUT:
"icmpsic -s rand -d <DUT IP address> -r 123456"
wait (1-2 min)
Signed-off-by: Seif Mazareeb <seif@...vell.com>
---
include/net/cipso_ipv4.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/net/cipso_ipv4.h b/include/net/cipso_ipv4.h
index a7a683e..047f1f6 100644
--- a/include/net/cipso_ipv4.h
+++ b/include/net/cipso_ipv4.h
@@ -306,6 +306,10 @@ static inline int cipso_v4_validate(const struct sk_buff *skb,
err_offset = opt_iter + 1;
goto out;
}
+
+ if (opt[opt_iter + 1] == 0)
+ break;
+
opt_iter += opt[opt_iter + 1];
}
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists