Browse Source

netfilter: nf_tables: fix nf_trace always-on with XT_TRACE=n

When using nftables with CONFIG_NETFILTER_XT_TARGET_TRACE=n, we get
lots of "TRACE: filter:output:policy:1 IN=..." warnings as several
places will leave skb->nf_trace uninitialised.

Unlike iptables tracing functionality is not conditional in nftables,
so always copy/zero nf_trace setting when nftables is enabled.

Move this into __nf_copy() helper.

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Florian Westphal 11 years ago
parent
commit
478b360a47
4 changed files with 4 additions and 10 deletions
  1. 4 1
      include/linux/skbuff.h
  2. 0 3
      net/core/skbuff.c
  3. 0 3
      net/ipv4/ip_output.c
  4. 0 3
      net/ipv6/ip6_output.c

+ 4 - 1
include/linux/skbuff.h

@@ -2725,7 +2725,7 @@ static inline void nf_reset(struct sk_buff *skb)
 
 
 static inline void nf_reset_trace(struct sk_buff *skb)
 static inline void nf_reset_trace(struct sk_buff *skb)
 {
 {
-#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
+#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE) || defined(CONFIG_NF_TABLES)
 	skb->nf_trace = 0;
 	skb->nf_trace = 0;
 #endif
 #endif
 }
 }
@@ -2742,6 +2742,9 @@ static inline void __nf_copy(struct sk_buff *dst, const struct sk_buff *src)
 	dst->nf_bridge  = src->nf_bridge;
 	dst->nf_bridge  = src->nf_bridge;
 	nf_bridge_get(src->nf_bridge);
 	nf_bridge_get(src->nf_bridge);
 #endif
 #endif
+#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE) || defined(CONFIG_NF_TABLES)
+	dst->nf_trace = src->nf_trace;
+#endif
 }
 }
 
 
 static inline void nf_copy(struct sk_buff *dst, const struct sk_buff *src)
 static inline void nf_copy(struct sk_buff *dst, const struct sk_buff *src)

+ 0 - 3
net/core/skbuff.c

@@ -707,9 +707,6 @@ static void __copy_skb_header(struct sk_buff *new, const struct sk_buff *old)
 	new->mark		= old->mark;
 	new->mark		= old->mark;
 	new->skb_iif		= old->skb_iif;
 	new->skb_iif		= old->skb_iif;
 	__nf_copy(new, old);
 	__nf_copy(new, old);
-#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
-	new->nf_trace		= old->nf_trace;
-#endif
 #ifdef CONFIG_NET_SCHED
 #ifdef CONFIG_NET_SCHED
 	new->tc_index		= old->tc_index;
 	new->tc_index		= old->tc_index;
 #ifdef CONFIG_NET_CLS_ACT
 #ifdef CONFIG_NET_CLS_ACT

+ 0 - 3
net/ipv4/ip_output.c

@@ -422,9 +422,6 @@ static void ip_copy_metadata(struct sk_buff *to, struct sk_buff *from)
 	to->tc_index = from->tc_index;
 	to->tc_index = from->tc_index;
 #endif
 #endif
 	nf_copy(to, from);
 	nf_copy(to, from);
-#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
-	to->nf_trace = from->nf_trace;
-#endif
 #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
 #if defined(CONFIG_IP_VS) || defined(CONFIG_IP_VS_MODULE)
 	to->ipvs_property = from->ipvs_property;
 	to->ipvs_property = from->ipvs_property;
 #endif
 #endif

+ 0 - 3
net/ipv6/ip6_output.c

@@ -517,9 +517,6 @@ static void ip6_copy_metadata(struct sk_buff *to, struct sk_buff *from)
 	to->tc_index = from->tc_index;
 	to->tc_index = from->tc_index;
 #endif
 #endif
 	nf_copy(to, from);
 	nf_copy(to, from);
-#if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE)
-	to->nf_trace = from->nf_trace;
-#endif
 	skb_copy_secmark(to, from);
 	skb_copy_secmark(to, from);
 }
 }