* [PATCH] net: hso: do not call unregister if not registered
@ 2019-02-09 0:02 Yavuz, Tuba
0 siblings, 0 replies; 4+ messages in thread
From: Yavuz, Tuba @ 2019-02-09 0:02 UTC (permalink / raw)
To: netdev@vger.kernel.org
On an error path inside the hso_create_net_device function of the hso
driver, hso_free_net_device gets called. This causes potentially a
negative reference count in the net device if register_netdev has not
been called yet as hso_free_net_device calls unregister_netdev
regardless. I think the driver should distinguish these cases and call
unregister_netdev only if register_netdev has been called.
Signed-off-by: Tuba Yavuz <tuba@ece.ufl.edu>
---
--- linux-stable/drivers/net/usb/hso.c.orig 2019-01-27 14:45:58.232683119 -0500
+++ linux-stable/drivers/net/usb/hso.c 2019-02-05 17:54:17.056496019 -0500
@@ -2377,7 +2377,9 @@ static void hso_free_net_device(struct h
remove_net_device(hso_net->parent);
- if (hso_net->net)
+ if (hso_net->net &&
+ hso_net->net->reg_state == NETREG_REGISTERED)
unregister_netdev(hso_net->net);
/* start freeing */
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH]: net: hso: do not call unregister if not registered
@ 2019-02-05 23:01 Yavuz, Tuba
2019-02-06 0:36 ` David Miller
0 siblings, 1 reply; 4+ messages in thread
From: Yavuz, Tuba @ 2019-02-05 23:01 UTC (permalink / raw)
To: netdev@vger.kernel.org
On an error path inside the hso_create_net_device function of the hso
driver, hso_free_net_device gets called. This causes potentially a
negative reference count in the net device if register_netdev has not
been called yet as hso_free_net_device calls unregister_netdev
regardless. I think the driver should distinguish these cases and call
unregister_netdev only if register_netdev has been called.
Signed-off-by: Tuba Yavuz <tuba@ece.ufl.edu>
---
--- linux-stable/drivers/net/usb/hso.c.orig 2019-01-27 14:45:58.232683119 -0500
+++ linux-stable/drivers/net/usb/hso.c 2019-02-05 17:54:17.056496019 -0500
@@ -2377,7 +2377,9 @@ static void hso_free_net_device(struct h
remove_net_device(hso_net->parent);
- if (hso_net->net)
+ if (hso_net->net &&
+ hso_net->net->reg_state == NETREG_REGISTERED
+ )
unregister_netdev(hso_net->net);
/* start freeing */
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH]: net: hso: do not call unregister if not registered
2019-02-05 23:01 [PATCH]: " Yavuz, Tuba
@ 2019-02-06 0:36 ` David Miller
2019-02-06 0:38 ` Yavuz, Tuba
0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2019-02-06 0:36 UTC (permalink / raw)
To: tuba; +Cc: netdev
From: "Yavuz, Tuba" <tuba@ece.ufl.edu>
Date: Tue, 5 Feb 2019 23:01:25 +0000
>
>
> On an error path inside the hso_create_net_device function of the hso
> driver, hso_free_net_device gets called. This causes potentially a
> negative reference count in the net device if register_netdev has not
> been called yet as hso_free_net_device calls unregister_netdev
> regardless. I think the driver should distinguish these cases and call
> unregister_netdev only if register_netdev has been called.
>
> Signed-off-by: Tuba Yavuz <tuba@ece.ufl.edu>
> ---
>
> --- linux-stable/drivers/net/usb/hso.c.orig 2019-01-27 14:45:58.232683119 -0500
> +++ linux-stable/drivers/net/usb/hso.c 2019-02-05 17:54:17.056496019 -0500
> @@ -2377,7 +2377,9 @@ static void hso_free_net_device(struct h
>
> remove_net_device(hso_net->parent);
>
> - if (hso_net->net)
> + if (hso_net->net &&
> + hso_net->net->reg_state == NETREG_REGISTERED
> + )
This is not formatted correctly, the final closing ')' should end the
previous line, like this:
if (hso_net->net &&
hso_net->net->reg_state == NETREG_REGISTERED)
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH]: net: hso: do not call unregister if not registered
2019-02-06 0:36 ` David Miller
@ 2019-02-06 0:38 ` Yavuz, Tuba
0 siblings, 0 replies; 4+ messages in thread
From: Yavuz, Tuba @ 2019-02-06 0:38 UTC (permalink / raw)
To: David Miller; +Cc: netdev@vger.kernel.org
This is surprising as I got total: 0 errors, 0 warnings, 0 checks, 10 lines checked.
Anyhow, I'll submit as suggested.
Best,
Tuba Yavuz, Ph.D.
Assistant Professor
Electrical and Computer Engineering Department
University of Florida
Gainesville, FL 32611
Webpage: http://www.tuba.ece.ufl.edu/
Email: tuba@ece.ufl.edu
Phone: (352) 846 0202
________________________________________
From: David Miller <davem@davemloft.net>
Sent: Tuesday, February 5, 2019 7:36 PM
To: Yavuz, Tuba
Cc: netdev@vger.kernel.org
Subject: Re: [PATCH]: net: hso: do not call unregister if not registered
From: "Yavuz, Tuba" <tuba@ece.ufl.edu>
Date: Tue, 5 Feb 2019 23:01:25 +0000
>
>
> On an error path inside the hso_create_net_device function of the hso
> driver, hso_free_net_device gets called. This causes potentially a
> negative reference count in the net device if register_netdev has not
> been called yet as hso_free_net_device calls unregister_netdev
> regardless. I think the driver should distinguish these cases and call
> unregister_netdev only if register_netdev has been called.
>
> Signed-off-by: Tuba Yavuz <tuba@ece.ufl.edu>
> ---
>
> --- linux-stable/drivers/net/usb/hso.c.orig 2019-01-27 14:45:58.232683119 -0500
> +++ linux-stable/drivers/net/usb/hso.c 2019-02-05 17:54:17.056496019 -0500
> @@ -2377,7 +2377,9 @@ static void hso_free_net_device(struct h
>
> remove_net_device(hso_net->parent);
>
> - if (hso_net->net)
> + if (hso_net->net &&
> + hso_net->net->reg_state == NETREG_REGISTERED
> + )
This is not formatted correctly, the final closing ')' should end the
previous line, like this:
if (hso_net->net &&
hso_net->net->reg_state == NETREG_REGISTERED)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-02-09 0:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-09 0:02 [PATCH] net: hso: do not call unregister if not registered Yavuz, Tuba
-- strict thread matches above, loose matches on Subject: below --
2019-02-05 23:01 [PATCH]: " Yavuz, Tuba
2019-02-06 0:36 ` David Miller
2019-02-06 0:38 ` Yavuz, Tuba
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).