All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/1] net/sched: cls_u32: Fix reference counter leak leading to overflow
@ 2023-06-08  7:29 Lee Jones
  2023-06-08  7:31 ` Eric Dumazet
  2023-06-09 10:50 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 6+ messages in thread
From: Lee Jones @ 2023-06-08  7:29 UTC (permalink / raw)
  To: lee, jhs, xiyou.wangcong, jiri, davem, edumazet, kuba, pabeni
  Cc: linux-kernel, netdev, stable

In the event of a failure in tcf_change_indev(), u32_set_parms() will
immediately return without decrementing the recently incremented
reference counter.  If this happens enough times, the counter will
rollover and the reference freed, leading to a double free which can be
used to do 'bad things'.

In order to prevent this, move the point of possible failure above the
point where the reference counter is incremented.  Also save any
meaningful return values to be applied to the return data at the
appropriate point in time.

This issue was caught with KASAN.

Fixes: 705c7091262d ("net: sched: cls_u32: no need to call tcf_exts_change for newly allocated struct")
Suggested-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Lee Jones <lee@kernel.org>
---
v1 -> v2:
  - Instead of decrementing the refcnt in the error path, move the
    point of failure up above the section which increments it.

net/sched/cls_u32.c | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/net/sched/cls_u32.c b/net/sched/cls_u32.c
index 4e2e269f121f8..d15d50de79802 100644
--- a/net/sched/cls_u32.c
+++ b/net/sched/cls_u32.c
@@ -718,13 +718,19 @@ static int u32_set_parms(struct net *net, struct tcf_proto *tp,
 			 struct nlattr *est, u32 flags, u32 fl_flags,
 			 struct netlink_ext_ack *extack)
 {
-	int err;
+	int err, ifindex = -1;
 
 	err = tcf_exts_validate_ex(net, tp, tb, est, &n->exts, flags,
 				   fl_flags, extack);
 	if (err < 0)
 		return err;
 
+	if (tb[TCA_U32_INDEV]) {
+		ifindex = tcf_change_indev(net, tb[TCA_U32_INDEV], extack);
+		if (ifindex < 0)
+			return -EINVAL;
+	}
+
 	if (tb[TCA_U32_LINK]) {
 		u32 handle = nla_get_u32(tb[TCA_U32_LINK]);
 		struct tc_u_hnode *ht_down = NULL, *ht_old;
@@ -759,13 +765,9 @@ static int u32_set_parms(struct net *net, struct tcf_proto *tp,
 		tcf_bind_filter(tp, &n->res, base);
 	}
 
-	if (tb[TCA_U32_INDEV]) {
-		int ret;
-		ret = tcf_change_indev(net, tb[TCA_U32_INDEV], extack);
-		if (ret < 0)
-			return -EINVAL;
-		n->ifindex = ret;
-	}
+	if (ifindex >= 0)
+		n->ifindex = ifindex;
+
 	return 0;
 }
 
-- 
2.41.0.rc0.172.g3f132b7071-goog


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

* Re: [PATCH v2 1/1] net/sched: cls_u32: Fix reference counter leak leading to overflow
  2023-06-08  7:29 [PATCH v2 1/1] net/sched: cls_u32: Fix reference counter leak leading to overflow Lee Jones
@ 2023-06-08  7:31 ` Eric Dumazet
  2023-06-08  7:47   ` Lee Jones
  2023-06-09 10:50 ` patchwork-bot+netdevbpf
  1 sibling, 1 reply; 6+ messages in thread
From: Eric Dumazet @ 2023-06-08  7:31 UTC (permalink / raw)
  To: Lee Jones
  Cc: jhs, xiyou.wangcong, jiri, davem, kuba, pabeni, linux-kernel,
	netdev, stable

On Thu, Jun 8, 2023 at 9:29 AM Lee Jones <lee@kernel.org> wrote:
>
> In the event of a failure in tcf_change_indev(), u32_set_parms() will
> immediately return without decrementing the recently incremented
> reference counter.  If this happens enough times, the counter will
> rollover and the reference freed, leading to a double free which can be
> used to do 'bad things'.
>
> In order to prevent this, move the point of possible failure above the
> point where the reference counter is incremented.  Also save any
> meaningful return values to be applied to the return data at the
> appropriate point in time.
>
> This issue was caught with KASAN.
>
> Fixes: 705c7091262d ("net: sched: cls_u32: no need to call tcf_exts_change for newly allocated struct")
> Suggested-by: Eric Dumazet <edumazet@google.com>
> Signed-off-by: Lee Jones <lee@kernel.org>
> ---

Thanks Lee !

Reviewed-by: Eric Dumazet <edumazet@google.com>

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

* Re: [PATCH v2 1/1] net/sched: cls_u32: Fix reference counter leak leading to overflow
  2023-06-08  7:31 ` Eric Dumazet
@ 2023-06-08  7:47   ` Lee Jones
  2023-06-08 16:40     ` Jamal Hadi Salim
  0 siblings, 1 reply; 6+ messages in thread
From: Lee Jones @ 2023-06-08  7:47 UTC (permalink / raw)
  To: Eric Dumazet
  Cc: jhs, xiyou.wangcong, jiri, davem, kuba, pabeni, linux-kernel,
	netdev, stable

On Thu, 08 Jun 2023, Eric Dumazet wrote:

> On Thu, Jun 8, 2023 at 9:29 AM Lee Jones <lee@kernel.org> wrote:
> >
> > In the event of a failure in tcf_change_indev(), u32_set_parms() will
> > immediately return without decrementing the recently incremented
> > reference counter.  If this happens enough times, the counter will
> > rollover and the reference freed, leading to a double free which can be
> > used to do 'bad things'.
> >
> > In order to prevent this, move the point of possible failure above the
> > point where the reference counter is incremented.  Also save any
> > meaningful return values to be applied to the return data at the
> > appropriate point in time.
> >
> > This issue was caught with KASAN.
> >
> > Fixes: 705c7091262d ("net: sched: cls_u32: no need to call tcf_exts_change for newly allocated struct")
> > Suggested-by: Eric Dumazet <edumazet@google.com>
> > Signed-off-by: Lee Jones <lee@kernel.org>
> > ---
> 
> Thanks Lee !

No problem.  Thanks for your help.

> Reviewed-by: Eric Dumazet <edumazet@google.com>

-- 
Lee Jones [李琼斯]

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

* Re: [PATCH v2 1/1] net/sched: cls_u32: Fix reference counter leak leading to overflow
  2023-06-08  7:47   ` Lee Jones
@ 2023-06-08 16:40     ` Jamal Hadi Salim
  2023-06-08 17:58       ` Lee Jones
  0 siblings, 1 reply; 6+ messages in thread
From: Jamal Hadi Salim @ 2023-06-08 16:40 UTC (permalink / raw)
  To: Lee Jones
  Cc: Eric Dumazet, xiyou.wangcong, jiri, davem, kuba, pabeni,
	linux-kernel, netdev, stable

On Thu, Jun 8, 2023 at 3:47 AM Lee Jones <lee@kernel.org> wrote:
>
> On Thu, 08 Jun 2023, Eric Dumazet wrote:
>
> > On Thu, Jun 8, 2023 at 9:29 AM Lee Jones <lee@kernel.org> wrote:
> > >
> > > In the event of a failure in tcf_change_indev(), u32_set_parms() will
> > > immediately return without decrementing the recently incremented
> > > reference counter.  If this happens enough times, the counter will
> > > rollover and the reference freed, leading to a double free which can be
> > > used to do 'bad things'.
> > >
> > > In order to prevent this, move the point of possible failure above the
> > > point where the reference counter is incremented.  Also save any
> > > meaningful return values to be applied to the return data at the
> > > appropriate point in time.
> > >
> > > This issue was caught with KASAN.
> > >
> > > Fixes: 705c7091262d ("net: sched: cls_u32: no need to call tcf_exts_change for newly allocated struct")
> > > Suggested-by: Eric Dumazet <edumazet@google.com>
> > > Signed-off-by: Lee Jones <lee@kernel.org>
> > > ---
> >
> > Thanks Lee !
>
> No problem.  Thanks for your help.
>
> > Reviewed-by: Eric Dumazet <edumazet@google.com>

Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>

cheers,
jamal

> --
> Lee Jones [李琼斯]

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

* Re: [PATCH v2 1/1] net/sched: cls_u32: Fix reference counter leak leading to overflow
  2023-06-08 16:40     ` Jamal Hadi Salim
@ 2023-06-08 17:58       ` Lee Jones
  0 siblings, 0 replies; 6+ messages in thread
From: Lee Jones @ 2023-06-08 17:58 UTC (permalink / raw)
  To: Jamal Hadi Salim
  Cc: Eric Dumazet, xiyou.wangcong, jiri, davem, kuba, pabeni,
	linux-kernel, netdev, stable

On Thu, 08 Jun 2023, Jamal Hadi Salim wrote:

> On Thu, Jun 8, 2023 at 3:47 AM Lee Jones <lee@kernel.org> wrote:
> >
> > On Thu, 08 Jun 2023, Eric Dumazet wrote:
> >
> > > On Thu, Jun 8, 2023 at 9:29 AM Lee Jones <lee@kernel.org> wrote:
> > > >
> > > > In the event of a failure in tcf_change_indev(), u32_set_parms() will
> > > > immediately return without decrementing the recently incremented
> > > > reference counter.  If this happens enough times, the counter will
> > > > rollover and the reference freed, leading to a double free which can be
> > > > used to do 'bad things'.
> > > >
> > > > In order to prevent this, move the point of possible failure above the
> > > > point where the reference counter is incremented.  Also save any
> > > > meaningful return values to be applied to the return data at the
> > > > appropriate point in time.
> > > >
> > > > This issue was caught with KASAN.
> > > >
> > > > Fixes: 705c7091262d ("net: sched: cls_u32: no need to call tcf_exts_change for newly allocated struct")
> > > > Suggested-by: Eric Dumazet <edumazet@google.com>
> > > > Signed-off-by: Lee Jones <lee@kernel.org>
> > > > ---
> > >
> > > Thanks Lee !
> >
> > No problem.  Thanks for your help.
> >
> > > Reviewed-by: Eric Dumazet <edumazet@google.com>
> 
> Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>

Thanks Jamal.

-- 
Lee Jones [李琼斯]

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

* Re: [PATCH v2 1/1] net/sched: cls_u32: Fix reference counter leak leading to overflow
  2023-06-08  7:29 [PATCH v2 1/1] net/sched: cls_u32: Fix reference counter leak leading to overflow Lee Jones
  2023-06-08  7:31 ` Eric Dumazet
@ 2023-06-09 10:50 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 6+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-06-09 10:50 UTC (permalink / raw)
  To: Lee Jones
  Cc: jhs, xiyou.wangcong, jiri, davem, edumazet, kuba, pabeni,
	linux-kernel, netdev, stable

Hello:

This patch was applied to netdev/net.git (main)
by David S. Miller <davem@davemloft.net>:

On Thu,  8 Jun 2023 08:29:03 +0100 you wrote:
> In the event of a failure in tcf_change_indev(), u32_set_parms() will
> immediately return without decrementing the recently incremented
> reference counter.  If this happens enough times, the counter will
> rollover and the reference freed, leading to a double free which can be
> used to do 'bad things'.
> 
> In order to prevent this, move the point of possible failure above the
> point where the reference counter is incremented.  Also save any
> meaningful return values to be applied to the return data at the
> appropriate point in time.
> 
> [...]

Here is the summary with links:
  - [v2,1/1] net/sched: cls_u32: Fix reference counter leak leading to overflow
    https://git.kernel.org/netdev/net/c/04c55383fa56

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2023-06-09 10:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-08  7:29 [PATCH v2 1/1] net/sched: cls_u32: Fix reference counter leak leading to overflow Lee Jones
2023-06-08  7:31 ` Eric Dumazet
2023-06-08  7:47   ` Lee Jones
2023-06-08 16:40     ` Jamal Hadi Salim
2023-06-08 17:58       ` Lee Jones
2023-06-09 10:50 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.