]> Git Repo - linux.git/commitdiff
netfilter: reset nf_trace in nf_reset
authorGao feng <[email protected]>
Thu, 21 Mar 2013 19:48:41 +0000 (19:48 +0000)
committerPablo Neira Ayuso <[email protected]>
Mon, 25 Mar 2013 13:21:23 +0000 (14:21 +0100)
We forgot to clear the nf_trace of sk_buff in nf_reset,
When we use veth device, this nf_trace information will
be leaked from one net namespace to another net namespace.

Signed-off-by: Gao feng <[email protected]>
Signed-off-by: Pablo Neira Ayuso <[email protected]>
include/linux/skbuff.h

index 441f5bfdab8ea476749bb512d2c7deeed7399a83..72b396751de7bbab16c54df29edf44d3ef7af447 100644 (file)
@@ -2641,6 +2641,9 @@ static inline void nf_reset(struct sk_buff *skb)
        nf_bridge_put(skb->nf_bridge);
        skb->nf_bridge = NULL;
 #endif
+#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
+       skb->nf_trace = 0;
+#endif
 }
 
 /* Note: This doesn't put any conntrack and bridge info in dst. */
This page took 0.060787 seconds and 4 git commands to generate.