All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next v2] netlink: Fix potential skb memleak in netlink_ack
@ 2022-11-05  9:05 Tao Chen
  2022-11-08  2:30 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 2+ messages in thread
From: Tao Chen @ 2022-11-05  9:05 UTC (permalink / raw)
  To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Johannes Berg, Oliver Hartkopp, Petr Machata, Kees Cook,
	Harshit Mogalapalli
  Cc: netdev, linux-kernel, Tao Chen

Fix coverity issue 'Resource leak'.

We should clean the skb resource if nlmsg_put/append failed.

Fixes: 738136a0e375 ("netlink: split up copies in the ack construction")
Signed-off-by: Tao Chen <chentao.kernel@linux.alibaba.com>

---
Changes in v2:
  -Fix some comments
  -Use "nlmsg_free" interface
---
 net/netlink/af_netlink.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c
index c6b8207e..b8afec3 100644
--- a/net/netlink/af_netlink.c
+++ b/net/netlink/af_netlink.c
@@ -2500,7 +2500,7 @@ void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err,
 
 	skb = nlmsg_new(payload + tlvlen, GFP_KERNEL);
 	if (!skb)
-		goto err_bad_put;
+		goto err_skb;
 
 	rep = nlmsg_put(skb, NETLINK_CB(in_skb).portid, nlh->nlmsg_seq,
 			NLMSG_ERROR, sizeof(*errmsg), flags);
@@ -2528,6 +2528,8 @@ void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err,
 	return;
 
 err_bad_put:
+	nlmsg_free(skb);
+err_skb:
 	NETLINK_CB(in_skb).sk->sk_err = ENOBUFS;
 	sk_error_report(NETLINK_CB(in_skb).sk);
 }
-- 
2.2.1


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

* Re: [PATCH net-next v2] netlink: Fix potential skb memleak in netlink_ack
  2022-11-05  9:05 [PATCH net-next v2] netlink: Fix potential skb memleak in netlink_ack Tao Chen
@ 2022-11-08  2:30 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-11-08  2:30 UTC (permalink / raw)
  To: Tao Chen
  Cc: davem, edumazet, kuba, pabeni, johannes, socketcan, petrm,
	keescook, harshit.m.mogalapalli, netdev, linux-kernel

Hello:

This patch was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Sat,  5 Nov 2022 17:05:04 +0800 you wrote:
> Fix coverity issue 'Resource leak'.
> 
> We should clean the skb resource if nlmsg_put/append failed.
> 
> Fixes: 738136a0e375 ("netlink: split up copies in the ack construction")
> Signed-off-by: Tao Chen <chentao.kernel@linux.alibaba.com>
> 
> [...]

Here is the summary with links:
  - [net-next,v2] netlink: Fix potential skb memleak in netlink_ack
    https://git.kernel.org/netdev/net-next/c/e69761483361

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] 2+ messages in thread

end of thread, other threads:[~2022-11-08  2:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-05  9:05 [PATCH net-next v2] netlink: Fix potential skb memleak in netlink_ack Tao Chen
2022-11-08  2:30 ` 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.