netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net v2] mctp: Fix incorrect netdev unref for extended addr
@ 2022-02-18  6:29 Matt Johnston
  2022-02-19  5:42 ` Jakub Kicinski
  0 siblings, 1 reply; 2+ messages in thread
From: Matt Johnston @ 2022-02-18  6:29 UTC (permalink / raw)
  Cc: Jeremy Kerr, Jakub Kicinski, David S. Miller, netdev

In the extended addressing local route output codepath
dev_get_by_index_rcu() doesn't take a dev_hold() so we shouldn't
dev_put(). Instead we need to hold/put the mctp_dev.

Fixes: 99ce45d5e7db ("mctp: Implement extended addressing")
Signed-off-by: Matt Johnston <matt@codeconstruct.com.au>
---
v2: Fix incorrect "Fixes:" ID
---
 net/mctp/route.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/net/mctp/route.c b/net/mctp/route.c
index e52cef750500..6ef79ab4a076 100644
--- a/net/mctp/route.c
+++ b/net/mctp/route.c
@@ -786,9 +786,8 @@ int mctp_local_output(struct sock *sk, struct mctp_route *rt,
 {
 	struct mctp_sock *msk = container_of(sk, struct mctp_sock, sk);
 	struct mctp_skb_cb *cb = mctp_cb(skb);
-	struct mctp_route tmp_rt;
+	struct mctp_route tmp_rt = {0};
 	struct mctp_sk_key *key;
-	struct net_device *dev;
 	struct mctp_hdr *hdr;
 	unsigned long flags;
 	unsigned int mtu;
@@ -801,12 +800,12 @@ int mctp_local_output(struct sock *sk, struct mctp_route *rt,
 
 	if (rt) {
 		ext_rt = false;
-		dev = NULL;
-
 		if (WARN_ON(!rt->dev))
 			goto out_release;
 
 	} else if (cb->ifindex) {
+		struct net_device *dev;
+
 		ext_rt = true;
 		rt = &tmp_rt;
 
@@ -816,8 +815,9 @@ int mctp_local_output(struct sock *sk, struct mctp_route *rt,
 			rcu_read_unlock();
 			return rc;
 		}
-
 		rt->dev = __mctp_dev_get(dev);
+		if (rt->dev)
+			mctp_dev_hold(rt->dev);
 		rcu_read_unlock();
 
 		if (!rt->dev)
@@ -891,10 +891,10 @@ int mctp_local_output(struct sock *sk, struct mctp_route *rt,
 	if (!ext_rt)
 		mctp_route_release(rt);
 
-	dev_put(dev);
+	if (tmp_rt.dev)
+		mctp_dev_put(tmp_rt.dev);
 
 	return rc;
-
 }
 
 /* route management */
-- 
2.32.0


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

* Re: [PATCH net v2] mctp: Fix incorrect netdev unref for extended addr
  2022-02-18  6:29 [PATCH net v2] mctp: Fix incorrect netdev unref for extended addr Matt Johnston
@ 2022-02-19  5:42 ` Jakub Kicinski
  0 siblings, 0 replies; 2+ messages in thread
From: Jakub Kicinski @ 2022-02-19  5:42 UTC (permalink / raw)
  To: Matt Johnston; +Cc: Jeremy Kerr, David S. Miller, netdev

On Fri, 18 Feb 2022 14:29:08 +0800 Matt Johnston wrote:
>  		rt->dev = __mctp_dev_get(dev);
> +		if (rt->dev)
> +			mctp_dev_hold(rt->dev);

Is it safe to have the ref like that? mctp_dev_hold() just does a
refcount_inc(), does something prevent the refcount from dropping
to zero between __mctp_dev_get() and mctp_dev_hold()?

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

end of thread, other threads:[~2022-02-19  5:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-18  6:29 [PATCH net v2] mctp: Fix incorrect netdev unref for extended addr Matt Johnston
2022-02-19  5:42 ` Jakub Kicinski

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).