All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: tipc: fix possible refcount leak in tipc_sk_create()
@ 2022-06-29  2:24 Hangyu Hua
  2022-06-29  3:49 ` Tung Quang Nguyen
  0 siblings, 1 reply; 4+ messages in thread
From: Hangyu Hua @ 2022-06-29  2:24 UTC (permalink / raw)
  To: jmaloy, ying.xue, davem, edumazet, kuba, pabeni, erik.hugne, tgraf
  Cc: netdev, tipc-discussion, linux-kernel, Hangyu Hua

sk need to be free when tipc_sk_insert fails. While tipc_sk_insert is hard
to fail, it's better to fix this.

Fixes: 07f6c4bc048a ("tipc: convert tipc reference table to use generic rhashtable")
Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
---
 net/tipc/socket.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net/tipc/socket.c b/net/tipc/socket.c
index 17f8c523e33b..43509c7e90fc 100644
--- a/net/tipc/socket.c
+++ b/net/tipc/socket.c
@@ -502,6 +502,7 @@ static int tipc_sk_create(struct net *net, struct socket *sock,
 	sock_init_data(sock, sk);
 	tipc_set_sk_state(sk, TIPC_OPEN);
 	if (tipc_sk_insert(tsk)) {
+		sk_free(sk);
 		pr_warn("Socket create failed; port number exhausted\n");
 		return -EINVAL;
 	}
-- 
2.25.1


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

* RE: [PATCH] net: tipc: fix possible refcount leak in tipc_sk_create()
  2022-06-29  2:24 [PATCH] net: tipc: fix possible refcount leak in tipc_sk_create() Hangyu Hua
@ 2022-06-29  3:49 ` Tung Quang Nguyen
  2022-06-29  6:09   ` Hangyu Hua
  0 siblings, 1 reply; 4+ messages in thread
From: Tung Quang Nguyen @ 2022-06-29  3:49 UTC (permalink / raw)
  To: Hangyu Hua
  Cc: netdev, tipc-discussion, linux-kernel, jmaloy, ying.xue, davem,
	edumazet, kuba, pabeni, tgraf

> sk need to be free when tipc_sk_insert fails. While tipc_sk_insert is hard
> to fail, it's better to fix this.
Incorrect English grammar. You should use a simple comment in changelog, for example: "Free sk in case tipc_sk_insert() fails."
> 
> Fixes: 07f6c4bc048a ("tipc: convert tipc reference table to use generic rhashtable")
> Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
> ---
>  net/tipc/socket.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/net/tipc/socket.c b/net/tipc/socket.c
> index 17f8c523e33b..43509c7e90fc 100644
> --- a/net/tipc/socket.c
> +++ b/net/tipc/socket.c
> @@ -502,6 +502,7 @@ static int tipc_sk_create(struct net *net, struct socket *sock,
>  	sock_init_data(sock, sk);
>  	tipc_set_sk_state(sk, TIPC_OPEN);
>  	if (tipc_sk_insert(tsk)) {
> +		sk_free(sk);
>  		pr_warn("Socket create failed; port number exhausted\n");
>  		return -EINVAL;
>  	}
> --
> 2.25.1


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

* Re: [PATCH] net: tipc: fix possible refcount leak in tipc_sk_create()
  2022-06-29  3:49 ` Tung Quang Nguyen
@ 2022-06-29  6:09   ` Hangyu Hua
  0 siblings, 0 replies; 4+ messages in thread
From: Hangyu Hua @ 2022-06-29  6:09 UTC (permalink / raw)
  To: Tung Quang Nguyen
  Cc: netdev, tipc-discussion, linux-kernel, jmaloy, ying.xue, davem,
	edumazet, kuba, pabeni, tgraf

On 2022/6/29 11:49, Tung Quang Nguyen wrote:
>> sk need to be free when tipc_sk_insert fails. While tipc_sk_insert is hard
>> to fail, it's better to fix this.
> Incorrect English grammar. You should use a simple comment in changelog, for example: "Free sk in case tipc_sk_insert() fails."

Thanks a lot. I will fix this then send a v2.

Hangyu.

>>
>> Fixes: 07f6c4bc048a ("tipc: convert tipc reference table to use generic rhashtable")
>> Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
>> ---
>>   net/tipc/socket.c | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/net/tipc/socket.c b/net/tipc/socket.c
>> index 17f8c523e33b..43509c7e90fc 100644
>> --- a/net/tipc/socket.c
>> +++ b/net/tipc/socket.c
>> @@ -502,6 +502,7 @@ static int tipc_sk_create(struct net *net, struct socket *sock,
>>   	sock_init_data(sock, sk);
>>   	tipc_set_sk_state(sk, TIPC_OPEN);
>>   	if (tipc_sk_insert(tsk)) {
>> +		sk_free(sk);
>>   		pr_warn("Socket create failed; port number exhausted\n");
>>   		return -EINVAL;
>>   	}
>> --
>> 2.25.1
> 

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

* [PATCH] net: tipc: fix possible refcount leak in tipc_sk_create()
@ 2022-06-29  6:29 Hangyu Hua
  0 siblings, 0 replies; 4+ messages in thread
From: Hangyu Hua @ 2022-06-29  6:29 UTC (permalink / raw)
  To: jmaloy, ying.xue, davem, edumazet, kuba, pabeni, tung.q.nguyen
  Cc: netdev, tipc-discussion, linux-kernel, Hangyu Hua

Free sk in case tipc_sk_insert() fails.

Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
---

v2: use a succinct commit log.

 net/tipc/socket.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net/tipc/socket.c b/net/tipc/socket.c
index 17f8c523e33b..43509c7e90fc 100644
--- a/net/tipc/socket.c
+++ b/net/tipc/socket.c
@@ -502,6 +502,7 @@ static int tipc_sk_create(struct net *net, struct socket *sock,
 	sock_init_data(sock, sk);
 	tipc_set_sk_state(sk, TIPC_OPEN);
 	if (tipc_sk_insert(tsk)) {
+		sk_free(sk);
 		pr_warn("Socket create failed; port number exhausted\n");
 		return -EINVAL;
 	}
-- 
2.25.1


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

end of thread, other threads:[~2022-06-29  6:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-29  2:24 [PATCH] net: tipc: fix possible refcount leak in tipc_sk_create() Hangyu Hua
2022-06-29  3:49 ` Tung Quang Nguyen
2022-06-29  6:09   ` Hangyu Hua
2022-06-29  6:29 Hangyu Hua

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.