* [PATCH] tipc: Improve exception handling in tipc_bcast_init()
@ 2023-12-31 11:30 Markus Elfring
2024-01-02 0:28 ` Tung Quang Nguyen
0 siblings, 1 reply; 2+ messages in thread
From: Markus Elfring @ 2023-12-31 11:30 UTC (permalink / raw)
To: tipc-discussion, netdev, kernel-janitors, David S. Miller,
Eric Dumazet, Jakub Kicinski, Jon Maloy, Paolo Abeni, Ying Xue
Cc: LKML
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Sun, 31 Dec 2023 12:20:06 +0100
The kfree() function was called in two cases by
the tipc_bcast_init() function during error handling
even if the passed variable contained a null pointer.
This issue was detected by using the Coccinelle software.
* Thus return directly after a call of the function “kzalloc” failed
at the beginning.
* Move one assignment for the variable “tn” closer to the place
where this pointer is used.
* Delete a redundant kfree() call.
* Omit initialisations (for the local variables)
which became unnecessary with this refactoring.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
net/tipc/bcast.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/net/tipc/bcast.c b/net/tipc/bcast.c
index 593846d25214..631aef2dde45 100644
--- a/net/tipc/bcast.c
+++ b/net/tipc/bcast.c
@@ -688,13 +688,15 @@ int tipc_nl_bc_link_set(struct net *net, struct nlattr *attrs[])
int tipc_bcast_init(struct net *net)
{
- struct tipc_net *tn = tipc_net(net);
- struct tipc_bc_base *bb = NULL;
- struct tipc_link *l = NULL;
+ struct tipc_net *tn;
+ struct tipc_bc_base *bb;
+ struct tipc_link *l;
bb = kzalloc(sizeof(*bb), GFP_KERNEL);
if (!bb)
- goto enomem;
+ return -ENOMEM;
+
+ tn = tipc_net(net);
tn->bcbase = bb;
spin_lock_init(&tipc_net(net)->bclock);
@@ -715,7 +717,6 @@ int tipc_bcast_init(struct net *net)
return 0;
enomem:
kfree(bb);
- kfree(l);
return -ENOMEM;
}
--
2.43.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* RE: [PATCH] tipc: Improve exception handling in tipc_bcast_init()
2023-12-31 11:30 [PATCH] tipc: Improve exception handling in tipc_bcast_init() Markus Elfring
@ 2024-01-02 0:28 ` Tung Quang Nguyen
0 siblings, 0 replies; 2+ messages in thread
From: Tung Quang Nguyen @ 2024-01-02 0:28 UTC (permalink / raw)
To: Markus Elfring, tipc-discussion, netdev, kernel-janitors,
David S. Miller, Eric Dumazet, Jakub Kicinski, Jon Maloy,
Paolo Abeni, Ying Xue
Cc: LKML
>Subject: [PATCH] tipc: Improve exception handling in tipc_bcast_init()
>
>From: Markus Elfring <elfring@users.sourceforge.net>
>Date: Sun, 31 Dec 2023 12:20:06 +0100
>
>The kfree() function was called in two cases by the tipc_bcast_init() function during error handling even if the passed variable
>contained a null pointer.
>This issue was detected by using the Coccinelle software.
kfree() validates the pointer before doing actual memory free. Your patch is not necessary.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-01-02 0:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-31 11:30 [PATCH] tipc: Improve exception handling in tipc_bcast_init() Markus Elfring
2024-01-02 0:28 ` Tung Quang Nguyen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®