diff options
author | Patrick McHardy <kaber@trash.net> | 2013-04-05 14:42:05 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-04-05 15:38:10 -0400 |
commit | 124dff01afbdbff251f0385beca84ba1b9adda68 (patch) | |
tree | 57fe790d91b0d56df456f61b25cce398bc6f4271 /include | |
parent | 34e2ed34a035de07277cca817fe8264324398141 (diff) |
netfilter: don't reset nf_trace in nf_reset()
Commit 130549fe ("netfilter: reset nf_trace in nf_reset") added code
to reset nf_trace in nf_reset(). This is wrong and unnecessary.
nf_reset() is used in the following cases:
- when passing packets up the the socket layer, at which point we want to
release all netfilter references that might keep modules pinned while
the packet is queued. nf_trace doesn't matter anymore at this point.
- when encapsulating or decapsulating IPsec packets. We want to continue
tracing these packets after IPsec processing.
- when passing packets through virtual network devices. Only devices on
that encapsulate in IPv4/v6 matter since otherwise nf_trace is not
used anymore. Its not entirely clear whether those packets should
be traced after that, however we've always done that.
- when passing packets through virtual network devices that make the
packet cross network namespace boundaries. This is the only cases
where we clearly want to reset nf_trace and is also what the
original patch intended to fix.
Add a new function nf_reset_trace() and use it in dev_forward_skb() to
fix this properly.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/skbuff.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 72b396751de7..b8292d8cc9fa 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -2641,6 +2641,10 @@ static inline void nf_reset(struct sk_buff *skb) | |||
2641 | nf_bridge_put(skb->nf_bridge); | 2641 | nf_bridge_put(skb->nf_bridge); |
2642 | skb->nf_bridge = NULL; | 2642 | skb->nf_bridge = NULL; |
2643 | #endif | 2643 | #endif |
2644 | } | ||
2645 | |||
2646 | static inline void nf_reset_trace(struct sk_buff *skb) | ||
2647 | { | ||
2644 | #if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE) | 2648 | #if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE) |
2645 | skb->nf_trace = 0; | 2649 | skb->nf_trace = 0; |
2646 | #endif | 2650 | #endif |