netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ipv4: initialise the itag variable in __mkroute_input
@ 2014-05-22  8:36 roy.qing.li
  2014-05-22 16:03 ` Alexei Starovoitov
  2014-05-22 19:57 ` David Miller
  0 siblings, 2 replies; 6+ messages in thread
From: roy.qing.li @ 2014-05-22  8:36 UTC (permalink / raw)
  To: netdev

From: Li RongQing <roy.qing.li@gmail.com>

the value of itag is a random value from stack, and may not be initiated by
fib_validate_source, which called fib_combine_itag if CONFIG_IP_ROUTE_CLASSID
is not set

This will make the cached dst uncertainty

Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
---
 net/ipv4/route.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index 50e1e0f..4154eb7 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -1526,7 +1526,7 @@ static int __mkroute_input(struct sk_buff *skb,
 	struct in_device *out_dev;
 	unsigned int flags = 0;
 	bool do_cache;
-	u32 itag;
+	u32 itag = 0;
 
 	/* get a working reference to the output device */
 	out_dev = __in_dev_get_rcu(FIB_RES_DEV(*res));
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-05-22 19:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-22  8:36 [PATCH] ipv4: initialise the itag variable in __mkroute_input roy.qing.li
2014-05-22 16:03 ` Alexei Starovoitov
2014-05-22 18:13   ` dormando
2014-05-22 18:21     ` Eric Dumazet
2014-05-22 19:01       ` dormando
2014-05-22 19:57 ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).