From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Gao feng <gaofeng@cn.fujitsu.com>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH v2] netfilter: bridge: unshare bridge info before change it
Date: Thu, 20 Nov 2014 12:42:22 +0100 [thread overview]
Message-ID: <20141120114222.GA3765@salvia> (raw)
In-Reply-To: <546D40DC.6060505@cn.fujitsu.com>
[-- Attachment #1: Type: text/plain, Size: 1606 bytes --]
On Thu, Nov 20, 2014 at 09:16:12AM +0800, Gao feng wrote:
> On 11/19/2014 09:07 PM, Pablo Neira Ayuso wrote:
> > On Wed, Nov 19, 2014 at 11:07:32AM +0800, Gao feng wrote:
> >> diff --git a/include/linux/netfilter_bridge.h b/include/linux/netfilter_bridge.h
> >> index c755e49..dca7337 100644
> >> --- a/include/linux/netfilter_bridge.h
> >> +++ b/include/linux/netfilter_bridge.h
> >> @@ -81,14 +81,64 @@ static inline unsigned int nf_bridge_mtu_reduction(const struct sk_buff *skb)
> >> return 0;
> >> }
> >>
> >> +static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
> >> +{
> >> + skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
> >> + if (likely(skb->nf_bridge))
> >> + atomic_set(&(skb->nf_bridge->use), 1);
> >> +
> >> + return skb->nf_bridge;
> >> +}
> >> +
> >> +static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
> >> +{
> >> + struct nf_bridge_info *nf_bridge = skb->nf_bridge;
> >> +
> >> + if (atomic_read(&nf_bridge->use) > 1) {
> >> + struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
> >
> > nf_bridge_alloc() overwrites the original skb->nf_bridge when
> > unsharing, so this leaks and likely breaks other things.
> >
>
> overwrite is what we expected, we store the original nfbridge in the var
> nf_bridge, copy the original to the new. and release the reference of original
> nfbridge. I cannot find anything wrong.
You're right. I overlook we already work with the fetched pointer in
_unshare().
I'm attaching a patch to clean up this. You can use it as starter in
your patch series to split this.
Thanks.
[-- Attachment #2: 0001-br_netfilter-cleanup-nf_bridge_alloc-and-nf_bridge_u.patch --]
[-- Type: text/x-diff, Size: 2695 bytes --]
>From 1c6141898a7b82484370ec9c61e3acdaf22eaa91 Mon Sep 17 00:00:00 2001
From: Pablo Neira Ayuso <pablo@netfilter.org>
Date: Thu, 20 Nov 2014 12:28:39 +0100
Subject: [PATCH] br_netfilter: cleanup nf_bridge_alloc() and
nf_bridge_unshare()
Set skb->nf_bridge out of nf_bridge_alloc() and rework clone logic
in nf_bridge_unshare(). This comes in preparation of Gao feng's
patches.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
net/bridge/br_netfilter.c | 39 +++++++++++++++++++++++----------------
1 file changed, 23 insertions(+), 16 deletions(-)
diff --git a/net/bridge/br_netfilter.c b/net/bridge/br_netfilter.c
index 1a4f32c..79dc6f7 100644
--- a/net/bridge/br_netfilter.c
+++ b/net/bridge/br_netfilter.c
@@ -129,27 +129,32 @@ static inline struct net_device *bridge_parent(const struct net_device *dev)
static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
{
- skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
- if (likely(skb->nf_bridge))
- atomic_set(&(skb->nf_bridge->use), 1);
+ struct nf_bridge_info *nf_bridge;
+
+ nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
+ if (nf_bridge == NULL)
+ return NULL;
- return skb->nf_bridge;
+ atomic_set(&nf_bridge->use, 1);
+ return nf_bridge;
}
static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
{
- struct nf_bridge_info *nf_bridge = skb->nf_bridge;
+ struct nf_bridge_info *nf_bridge;
- if (atomic_read(&nf_bridge->use) > 1) {
- struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
+ if (atomic_read(&skb->nf_bridge->use) == 1)
+ return skb->nf_bridge;
+
+ nf_bridge = nf_bridge_alloc(skb);
+ if (nf_bridge == NULL)
+ return NULL;
+
+ memcpy(nf_bridge, skb->nf_bridge, sizeof(struct nf_bridge_info));
+ atomic_set(&nf_bridge->use, 1);
+ nf_bridge_put(skb->nf_bridge);
+ skb->nf_bridge = nf_bridge;
- if (tmp) {
- memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
- atomic_set(&tmp->use, 1);
- }
- nf_bridge_put(nf_bridge);
- nf_bridge = tmp;
- }
return nf_bridge;
}
@@ -556,7 +561,8 @@ static unsigned int br_nf_pre_routing_ipv6(const struct nf_hook_ops *ops,
return NF_DROP;
nf_bridge_put(skb->nf_bridge);
- if (!nf_bridge_alloc(skb))
+ skb->nf_bridge = nf_bridge_alloc(skb);
+ if (skb->nf_bridge == NULL)
return NF_DROP;
if (!setup_pre_routing(skb))
return NF_DROP;
@@ -612,7 +618,8 @@ static unsigned int br_nf_pre_routing(const struct nf_hook_ops *ops,
return NF_DROP;
nf_bridge_put(skb->nf_bridge);
- if (!nf_bridge_alloc(skb))
+ skb->nf_bridge = nf_bridge_alloc(skb);
+ if (skb->nf_bridge == NULL)
return NF_DROP;
if (!setup_pre_routing(skb))
return NF_DROP;
--
1.7.10.4
prev parent reply other threads:[~2014-11-20 11:40 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-19 3:07 [PATCH v2] netfilter: bridge: unshare bridge info before change it Gao feng
2014-11-19 3:07 ` [PATCH] use NF_BR_PRI_BRNF in NF_HOOK_THRESH Gao feng
2014-11-19 13:35 ` Pablo Neira Ayuso
2014-11-19 13:07 ` [PATCH v2] netfilter: bridge: unshare bridge info before change it Pablo Neira Ayuso
2014-11-19 13:32 ` Pablo Neira Ayuso
2014-11-20 1:22 ` Gao feng
2014-11-20 1:16 ` Gao feng
2014-11-20 11:42 ` Pablo Neira Ayuso [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20141120114222.GA3765@salvia \
--to=pablo@netfilter.org \
--cc=gaofeng@cn.fujitsu.com \
--cc=netfilter-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).