From: Kory Maincent <kory.maincent@bootlin.com>
To: Paul Barker <paul.barker.ct@bp.renesas.com>
Cc: "Jakub Kicinski" <kuba@kernel.org>,
"David S. Miller" <davem@davemloft.net>,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
"Claudiu Beznea" <claudiu.beznea.uj@bp.renesas.com>,
thomas.petazzoni@bootlin.com, "Andrew Lunn" <andrew@lunn.ch>,
"Heiner Kallweit" <hkallweit1@gmail.com>,
"Russell King" <linux@armlinux.org.uk>,
"Eric Dumazet" <edumazet@google.com>,
"Paolo Abeni" <pabeni@redhat.com>,
"Niklas Söderlund" <niklas.soderlund@ragnatech.se>,
"Sergey Shtylyov" <s.shtylyov@omp.ru>
Subject: Re: [PATCH net-next v3] net: phy: Fix suspicious rcu_dereference usage
Date: Tue, 21 Jan 2025 14:01:24 +0100 [thread overview]
Message-ID: <20250121140124.259e36e0@kmaincent-XPS-13-7390> (raw)
In-Reply-To: <134f69de-64f9-4d36-94ff-22b93cb32f2e@bp.renesas.com>
On Tue, 21 Jan 2025 11:34:48 +0000
Paul Barker <paul.barker.ct@bp.renesas.com> wrote:
> On 21/01/2025 09:38, Kory Maincent wrote:
> > On Mon, 20 Jan 2025 11:12:28 -0800
> > Jakub Kicinski <kuba@kernel.org> wrote:
> >
> >> On Mon, 20 Jan 2025 15:19:25 +0100 Kory Maincent wrote:
> [...]
> >>
> >> I maintain that ravb is buggy, plenty of drivers take rtnl_lock
> >> from the .suspend callback. We need _some_ write protection here,
> >> the patch as is only silences a legitimate warning.
> >
> > Indeed if the suspend path is buggy we should fix it. Still there is lots of
> > ethernet drivers calling phy_disconnect without rtnl (IIUC) if probe return
> > an error or in the remove path. What should we do about it?
> >
> > About ravb suspend, I don't have the board, Claudiu could you try this
> > instead of the current fix:
> >
> > diff --git a/drivers/net/ethernet/renesas/ravb_main.c
> > b/drivers/net/ethernet/renesas/ravb_main.c index bc395294a32d..c9a0d2d6f371
> > 100644 --- a/drivers/net/ethernet/renesas/ravb_main.c
> > +++ b/drivers/net/ethernet/renesas/ravb_main.c
> > @@ -3215,15 +3215,22 @@ static int ravb_suspend(struct device *dev)
> > if (!netif_running(ndev))
> > goto reset_assert;
> >
> > + rtnl_lock();
> > netif_device_detach(ndev);
> >
> > - if (priv->wol_enabled)
> > - return ravb_wol_setup(ndev);
> > + if (priv->wol_enabled) {
> > + ret = ravb_wol_setup(ndev);
> > + rtnl_unlock();
> > + return ret;
> > + }
> >
> > ret = ravb_close(ndev);
> > - if (ret)
> > + if (ret) {
> > + rtnl_unlock();
> > return ret;
> > + }
> >
> > + rtnl_unlock();
> > ret = pm_runtime_force_suspend(&priv->pdev->dev);
> > if (ret)
> > return ret;
> >
> > Regards,
>
> (Cc'ing Niklas and Sergey as this relates to the ravb driver)
Yes, thanks.
> Why do we need to hold the rtnl mutex across the calls to
> netif_device_detach() and ravb_wol_setup()?
>
> My reading of Documentation/networking/netdevices.rst is that the rtnl
> mutex is held when the net subsystem calls the driver's ndo_stop method,
> which in our case is ravb_close(). So, we should take the rtnl mutex
> when we call ravb_close() directly, in both ravb_suspend() and
> ravb_wol_restore(). That would ensure that we do not call
> phy_disconnect() without holding the rtnl mutex and should fix this
> issue.
Not sure about it. For example ravb_ptp_stop() called in ravb_wol_setup() won't
be protected by the rtnl lock.
I don't know about netif_device_detach(). It doesn't seems to be the case as
there is lots of driver using it without holding rtnl lock.
Indeed we should add the rtnl lock also in the resume path.
> Commit 35f7cad1743e ("net: Add the possibility to support a selected
> hwtstamp in netdevice") may have unearthed the issue, but the fixes tag
> should point to the commits adding those unlocked calls to ravb_close().
The current patch was on phy_device.c that's why the fixes tag does not point to
a ravb commit, it will change.
Regards,
--
Köry Maincent, Bootlin
Embedded Linux and kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2025-01-21 13:01 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-20 14:19 [PATCH net-next v3] net: phy: Fix suspicious rcu_dereference usage Kory Maincent
2025-01-20 19:12 ` Jakub Kicinski
2025-01-21 9:38 ` Kory Maincent
2025-01-21 10:02 ` Russell King (Oracle)
2025-01-21 10:29 ` Claudiu Beznea
2025-01-21 11:34 ` Paul Barker
2025-01-21 13:01 ` Kory Maincent [this message]
2025-01-21 15:44 ` Paul Barker
2025-01-21 16:11 ` Kory Maincent
2025-01-22 14:03 ` Paul Barker
2025-01-22 16:12 ` Kory Maincent
2025-01-23 11:25 ` Claudiu Beznea
2025-01-23 14:05 ` Kory Maincent
2025-01-23 15:45 ` Russell King (Oracle)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250121140124.259e36e0@kmaincent-XPS-13-7390 \
--to=kory.maincent@bootlin.com \
--cc=andrew@lunn.ch \
--cc=claudiu.beznea.uj@bp.renesas.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=hkallweit1@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=netdev@vger.kernel.org \
--cc=niklas.soderlund@ragnatech.se \
--cc=pabeni@redhat.com \
--cc=paul.barker.ct@bp.renesas.com \
--cc=s.shtylyov@omp.ru \
--cc=thomas.petazzoni@bootlin.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox