mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Frank Li <Frank.li@oss.nxp.com>
To: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Cc: Bjorn Andersson <andersson@kernel.org>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Robert Foss <rfoss@kernel.org>, Todor Tomov <todor.too@gmail.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Konrad Dybcio <konradybcio@kernel.org>,
	Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>,
	Bryan O'Donoghue <bod@kernel.org>,
	Loic Poulain <loic.poulain@oss.qualcomm.com>,
	Vinod Koul <vkoul@kernel.org>,
	Neil Armstrong <neil.armstrong@linaro.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Kishon Vijay Abraham I <kishon@kernel.org>,
	Felipe Balbi <balbi@ti.com>,
	linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-media@vger.kernel.org, linux-phy@lists.infradead.org,
	Krzysztof Kozlowski <krzk@kernel.org>,
	stable@vger.kernel.org
Subject: Re: [PATCH v16 1/5] phy: core: Fix use-after-free in phy_get paths
Date: Mon, 14 Sep 2026 08:55:43 -0500	[thread overview]
Message-ID: <aqf835LdzdNZR8rh@SMW015318> (raw)
In-Reply-To: <44634913-fd6c-454d-a3a2-6a8d541b2c1e@linaro.org>

On Mon, Sep 14, 2026 at 12:37:06PM +0100, Bryan O'Donoghue wrote:
> On 11/09/2026 21:56, Frank Li wrote:
> > suggested subject:
> >
> > phy: core: use phy_provider_mutex protect between _of_phy_get and try_module_get()
>
> A pattern I try to encourage and role-model is making fixes very explicit
> and obvious - frequently I'll ask people to prefix their patches fixing
> things with Fix.

Generally, I got feedback from most maintainer is

	do something to fix ...

"do something" become more important. the most maintaniner dont like simple
said
	- fix build warning
	- simplify code
	- fix UAF
	- fix memory leask

I think it is reasonable, git log --oneline ..., if just list
	"fix build warning", which is hard to locate patch because there
are too much "fix build warning".

>
> I'll split the difference with you since now that I read this submitted
> patch title you're right, it could read better.
>
> "Fix race-condition between _of_phy_get and try_module_get()"

I think it is fine.

> > > Sashiko asked during a patch review if the existing usage pattern had a
> > > race condition; specifically in of_phy_get() if it was possible between
> > > returning from _of_phy_get() and running try_module_get() that a module
> > > might be unbound leading to use-after-free.
> > >
> > > Looking at the code this appears to be so, there is no linkage between the
> > > phy and module under a synchronisation primitive.
> > >
> > > Using the phy_provider_mutex in phy_get() will ensure there is a link between
> > > the returned phy pointer and the module_get() bumping the module reference
> > > count.
> > >
> > > Amend phy_get(), of_phy_get() and devm_of_phy_get_by_index() to fix the
> > > same usage pattern.
> > >
> > > phy_provider_unregister() must take the phy_provider_mutex so amending
> > > phy_get()/of_phy_get() to take that same mutex guarantees there is no
> > > use-after-free.
> > >
> > > Fixes: ff764963479a1 ("drivers: phy: add generic PHY framework")
> > > Cc:stable@vger.kernel.org
> > > Reviewed-by: Loic Poulain<loic.poulain@oss.qualcomm.com>
> > > Signed-off-by: Bryan O'Donoghue<bryan.odonoghue@linaro.org>
> > > ---
> > ...
> > > @@ -678,15 +677,21 @@ struct phy *of_phy_get(struct device_node *np, const char *con_id)
> > >   	if (con_id)
> > >   		index = of_property_match_string(np, "phy-names", con_id);
> > >
> > > +	mutex_lock(&phy_provider_mutex);
> > > +
> > >   	phy = _of_phy_get(np, index);
> > >   	if (IS_ERR(phy))
> > > -		return phy;
> > > +		goto out_unlock;
> > >
> > > -	if (!try_module_get(phy->ops->owner))
> > > -		return ERR_PTR(-EPROBE_DEFER);
> > > +	if (!try_module_get(phy->ops->owner)) {
> > > +		phy = ERR_PTR(-EPROBE_DEFER);
> > > +		goto out_unlock;
> > > +	}
> > why no use auto cleanup guard() for mutex lock?
>
> Technically this fix would apply to kernels predating scoped_guard() -
> kernel 6.5 v Fixes: @ ~ 3.13.

DMA engine already use cleanup. consider the same maintainer, I think it
should be fine

Frank

>
> Not really sure how far back the cherry-pick will work but I'd like to give
> the possibility.
>
> We can always sweep this file to use scoped_guard() on tip-of-tree later.
>
> ---
> bod

  reply	other threads:[~2026-09-14 13:56 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-06 11:52 [PATCH v16 0/5] Add phy_get_by_of_node and devm helper Bryan O'Donoghue
2026-09-06 11:52 ` [PATCH v16 1/5] phy: core: Fix use-after-free in phy_get paths Bryan O'Donoghue
2026-09-11 20:56   ` Frank Li
2026-09-14 11:37     ` Bryan O'Donoghue
2026-09-14 13:55       ` Frank Li [this message]
2026-09-14 15:49         ` Krzysztof Kozlowski
2026-09-06 11:52 ` [PATCH v16 2/5] phy: core: Add phy_get_by_of_node() Bryan O'Donoghue
2026-09-06 11:52 ` [PATCH v16 3/5] phy: core: Add devm_phy_get_by_of_node() Bryan O'Donoghue
2026-09-11 21:09   ` Frank Li
2026-09-14 11:03     ` Bryan O'Donoghue
2026-09-06 11:52 ` [PATCH v16 4/5] media: qcom: camss: Add support for PHY API devices Bryan O'Donoghue
2026-09-06 11:52 ` [PATCH v16 5/5] media: qcom: camss: Use data-lanes starting at 1 for new CSIPHY mode Bryan O'Donoghue
2026-09-06 13:03   ` Nihal Kumar Gupta

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=aqf835LdzdNZR8rh@SMW015318 \
    --to=frank.li@oss.nxp.com \
    --cc=andersson@kernel.org \
    --cc=balbi@ti.com \
    --cc=bod@kernel.org \
    --cc=bryan.odonoghue@linaro.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=kishon@kernel.org \
    --cc=konradybcio@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=krzk@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-phy@lists.infradead.org \
    --cc=loic.poulain@oss.qualcomm.com \
    --cc=mchehab@kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=neil.armstrong@linaro.org \
    --cc=rfoss@kernel.org \
    --cc=robh@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=todor.too@gmail.com \
    --cc=vkoul@kernel.org \
    --cc=vladimir.zapolskiy@linaro.org \
    /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

all inboxes | Powered by JetHome®