All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rpmsg: glink: Remove channel decouple from rpdev release
@ 2019-10-09  1:33 Chris Lew
  2019-10-10  5:04   ` Stephen Boyd
  0 siblings, 1 reply; 4+ messages in thread
From: Chris Lew @ 2019-10-09  1:33 UTC (permalink / raw)
  To: bjorn.andersson, ohad
  Cc: aneela, linux-arm-msm, linux-remoteproc, linux-kernel, Chris Lew

If a channel is being rapidly restarted and the kobj release worker is
busy, there is a chance the the rpdev_release function will run after
the channel struct itself has been released.

There should not be a need to decouple the channel from rpdev in the
rpdev release since that should only happen from the channel close
commands.

Signed-off-by: Chris Lew <clew@codeaurora.org>
---
 drivers/rpmsg/qcom_glink_native.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/rpmsg/qcom_glink_native.c b/drivers/rpmsg/qcom_glink_native.c
index 621f1afd4d6b..836a0bd99d11 100644
--- a/drivers/rpmsg/qcom_glink_native.c
+++ b/drivers/rpmsg/qcom_glink_native.c
@@ -1350,9 +1350,7 @@ static const struct rpmsg_endpoint_ops glink_endpoint_ops = {
 static void qcom_glink_rpdev_release(struct device *dev)
 {
 	struct rpmsg_device *rpdev = to_rpmsg_device(dev);
-	struct glink_channel *channel = to_glink_channel(rpdev->ept);
 
-	channel->rpdev = NULL;
 	kfree(rpdev);
 }
 
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

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

* Re: [PATCH] rpmsg: glink: Remove channel decouple from rpdev release
  2019-10-09  1:33 [PATCH] rpmsg: glink: Remove channel decouple from rpdev release Chris Lew
@ 2019-10-10  5:04   ` Stephen Boyd
  0 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2019-10-10  5:04 UTC (permalink / raw)
  To: Chris Lew, bjorn.andersson, ohad
  Cc: aneela, linux-arm-msm, linux-remoteproc, linux-kernel

Quoting Chris Lew (2019-10-08 18:33:45)
> If a channel is being rapidly restarted and the kobj release worker is
> busy, there is a chance the the rpdev_release function will run after
> the channel struct itself has been released.
> 
> There should not be a need to decouple the channel from rpdev in the
> rpdev release since that should only happen from the channel close
> commands.
> 
> Signed-off-by: Chris Lew <clew@codeaurora.org>

Fixes tag? The whole thing sounds broken and probably is still racy in
the face of SMP given that channel->rpdev is tested for "published" or
not. Can you describe the race that you're closing more?

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

* Re: [PATCH] rpmsg: glink: Remove channel decouple from rpdev release
@ 2019-10-10  5:04   ` Stephen Boyd
  0 siblings, 0 replies; 4+ messages in thread
From: Stephen Boyd @ 2019-10-10  5:04 UTC (permalink / raw)
  To: Chris Lew, bjorn.andersson, ohad
  Cc: aneela, linux-arm-msm, linux-remoteproc, linux-kernel, Chris Lew

Quoting Chris Lew (2019-10-08 18:33:45)
> If a channel is being rapidly restarted and the kobj release worker is
> busy, there is a chance the the rpdev_release function will run after
> the channel struct itself has been released.
> 
> There should not be a need to decouple the channel from rpdev in the
> rpdev release since that should only happen from the channel close
> commands.
> 
> Signed-off-by: Chris Lew <clew@codeaurora.org>

Fixes tag? The whole thing sounds broken and probably is still racy in
the face of SMP given that channel->rpdev is tested for "published" or
not. Can you describe the race that you're closing more?


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

* Re: [PATCH] rpmsg: glink: Remove channel decouple from rpdev release
  2019-10-10  5:04   ` Stephen Boyd
  (?)
@ 2019-10-11 18:43   ` Chris Lew
  -1 siblings, 0 replies; 4+ messages in thread
From: Chris Lew @ 2019-10-11 18:43 UTC (permalink / raw)
  To: Stephen Boyd, bjorn.andersson, ohad
  Cc: aneela, linux-arm-msm, linux-remoteproc, linux-kernel



On 10/9/2019 10:04 PM, Stephen Boyd wrote:
> Quoting Chris Lew (2019-10-08 18:33:45)
>> If a channel is being rapidly restarted and the kobj release worker is
>> busy, there is a chance the the rpdev_release function will run after
>> the channel struct itself has been released.
>>
>> There should not be a need to decouple the channel from rpdev in the
>> rpdev release since that should only happen from the channel close
>> commands.
>>
>> Signed-off-by: Chris Lew <clew@codeaurora.org>
> 
> Fixes tag? The whole thing sounds broken and probably is still racy in
> the face of SMP given that channel->rpdev is tested for "published" or
> not. Can you describe the race that you're closing more?
> 

Thanks Stephen, will add Fixes tag and try to describe the race better.

I agree that the whole thing sounds broken, the glink channel cleanup 
code has a couple bugs that need to be addressed in a more extensive 
patch. This patch is more to address the immediate issue of a 
use-after-free from one of the races.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

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

end of thread, other threads:[~2019-10-11 18:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-09  1:33 [PATCH] rpmsg: glink: Remove channel decouple from rpdev release Chris Lew
2019-10-10  5:04 ` Stephen Boyd
2019-10-10  5:04   ` Stephen Boyd
2019-10-11 18:43   ` Chris Lew

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.