From: Simon Horman <simon.horman@corigine.com>
To: Sergey Shtylyov <s.shtylyov@omp.ru>
Cc: Paolo Abeni <pabeni@redhat.com>, Jakub Kicinski <kuba@kernel.org>,
Zheng Wang <zyytlz.wz@163.com>,
lee@kernel.org, linyunsheng@huawei.com, davem@davemloft.net,
edumazet@google.com, richardcochran@gmail.com,
p.zabel@pengutronix.de, geert+renesas@glider.be,
magnus.damm@gmail.com, yoshihiro.shimoda.uh@renesas.com,
biju.das.jz@bp.renesas.com, wsa+renesas@sang-engineering.com,
netdev@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
linux-kernel@vger.kernel.org, hackerzheng666@gmail.com,
1395428693sheep@gmail.com, alex000young@gmail.com
Subject: Re: [PATCH v4] net: ravb: Fix possible UAF bug in ravb_remove
Date: Fri, 28 Jul 2023 12:32:41 +0200 [thread overview]
Message-ID: <ZMOZSeUaVIaZzZph@corigine.com> (raw)
In-Reply-To: <607f4fe4-5a59-39dd-71c2-0cf769b48187@omp.ru>
On Thu, Jul 27, 2023 at 09:48:41PM +0300, Sergey Shtylyov wrote:
> Hello!
>
> On 7/27/23 11:21 AM, Paolo Abeni wrote:
> [...]
> >>> diff --git a/drivers/net/ethernet/renesas/ravb_main.c b/drivers/net/ethernet/renesas/ravb_main.c
> >>> index 4d6b3b7d6abb..ce2da5101e51 100644
> >>> --- a/drivers/net/ethernet/renesas/ravb_main.c
> >>> +++ b/drivers/net/ethernet/renesas/ravb_main.c
> >>> @@ -2885,6 +2885,9 @@ static int ravb_remove(struct platform_device *pdev)
> >>> struct ravb_private *priv = netdev_priv(ndev);
> >>> const struct ravb_hw_info *info = priv->info;
> >>>
> >>> + netif_carrier_off(ndev);
> >>> + netif_tx_disable(ndev);
> >>> + cancel_work_sync(&priv->work);
> >>
> >> Still racy, the carrier can come back up after canceling the work.
> >
> > I must admit I don't see how/when this driver sets the carrier on ?!?
>
> The phylib code does it for this MAC driver, see the call tree of
> phy_link_change(), on e.g. https://elixir.bootlin.com/linux/v6.5-rc3/source/...
>
> >> But whatever, this is a non-issue in the first place.
> >
> > Do you mean the UaF can't happen? I think that is real.
>
> Looks possible to me, at least now... and anyway, shouldn't we clean up
> after ourselves if we call schedule_work()?However my current impression is
> that cancel_work_sync() should be called from ravb_close(), after calling
> phy_{stop|disconnect}()...
>
> >> The fact that ravb_tx_timeout_work doesn't take any locks seems much
> >> more suspicious.
> >
> > Indeed! But that should be a different patch, right?
>
> Yes.
>
> > Waiting a little more for feedback from renesas.
>
> Renesas historically hasn't shown much interest to reviewing the sh_eth/ravb
> driver patches, so I took that task upon myself. I also happen to be a nominal
> author of this driver... :-)
FWIIW, that matches my recollection.
Although it may be out of date by now.
next prev parent reply other threads:[~2023-07-28 10:36 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-25 3:00 [PATCH v4] net: ravb: Fix possible UAF bug in ravb_remove Zheng Wang
2023-07-26 3:19 ` Jakub Kicinski
2023-07-27 8:21 ` Paolo Abeni
2023-07-27 18:48 ` Sergey Shtylyov
2023-07-27 23:48 ` Jakub Kicinski
2023-07-28 10:32 ` Simon Horman [this message]
2023-09-20 2:37 ` Yoshihiro Shimoda
2023-09-29 20:23 ` Sergey Shtylyov
2023-10-02 0:11 ` Yoshihiro Shimoda
2023-10-03 19:39 ` Sergey Shtylyov
2023-10-04 5:05 ` Yoshihiro Shimoda
2023-10-10 12:59 ` Behme Dirk (CM/ESO2)
2023-10-12 8:39 ` Yoshihiro Shimoda
2023-10-13 6:04 ` Behme Dirk (CM/ESO2)
2023-10-13 8:32 ` Yoshihiro Shimoda
2023-08-15 10:08 ` Lee Jones
2023-08-29 13:46 ` Lee Jones
2023-08-30 4:30 ` Zheng Hacker
2023-08-31 6:46 ` Zheng Hacker
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=ZMOZSeUaVIaZzZph@corigine.com \
--to=simon.horman@corigine.com \
--cc=1395428693sheep@gmail.com \
--cc=alex000young@gmail.com \
--cc=biju.das.jz@bp.renesas.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=geert+renesas@glider.be \
--cc=hackerzheng666@gmail.com \
--cc=kuba@kernel.org \
--cc=lee@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linyunsheng@huawei.com \
--cc=magnus.damm@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=p.zabel@pengutronix.de \
--cc=pabeni@redhat.com \
--cc=richardcochran@gmail.com \
--cc=s.shtylyov@omp.ru \
--cc=wsa+renesas@sang-engineering.com \
--cc=yoshihiro.shimoda.uh@renesas.com \
--cc=zyytlz.wz@163.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 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.