mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Kishon Vijay Abraham I <kishon@ti.com>
To: "Péter Ujfalusi" <peter.ujfalusi@gmail.com>,
	"Dan Williams" <dan.j.williams@intel.com>,
	"Vinod Koul" <vkoul@kernel.org>,
	"Grygorii Strashko" <grygorii.strashko@ti.com>,
	"Vignesh Raghavendra" <vigneshr@ti.com>
Cc: <dmaengine@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] dmaengine: ti: k3-udma: Fix NULL pointer dereference error
Date: Tue, 9 Feb 2021 18:15:32 +0530	[thread overview]
Message-ID: <7e06c63d-606b-be78-84ff-d5a5c72f7ad7@ti.com> (raw)
In-Reply-To: <19488154-22d5-33b4-06a1-17e9a896ae04@gmail.com>

Hi Peter,

On 09/02/21 5:53 pm, Péter Ujfalusi wrote:
> Hi Kishon,
> 
> On 2/9/21 11:00 AM, Kishon Vijay Abraham I wrote:
>> bcdma_get_*() and udma_get_*() checks if bchan/rchan/tchan/rflow is
>> already allocated by checking if it has a NON NULL value. For the
>> error cases, bchan/rchan/tchan/rflow will have error value
>> and bcdma_get_*() and udma_get_*() considers this as already allocated
>> (PASS) since the error values are NON NULL. This results in
>> NULL pointer dereference error while de-referencing
>> bchan/rchan/tchan/rflow.
> 
> I think this can happen when a channel request fails and we get a second
> request coming and faces with the not cleanup up tchan/rchan/bchan/rflow
> from the previous failure.
> Interesting that I have not faced with this, but it is a valid oversight
> from me.

Thank you for reviewing.

Got into this issue when all the PCIe endpoint functions were requesting
for a MEMCOPY channel (total 22 endpoint functions) specifically in
bcdma_get_bchan() where the scenario you mentioned above happened.

Vignesh asked me to fix it for all udma_get_*().
> 
>> Reset the value of bchan/rchan/tchan/rflow to NULL if the allocation
>> actually fails.
>>
>> Fixes: 017794739702 ("dmaengine: ti: k3-udma: Initial support for K3 BCDMA")
>> Fixes: 25dcb5dd7b7c ("dmaengine: ti: New driver for K3 UDMA")
> 
> Will this patch apply at any of these?
> 25dcb5dd7b7c does not have BCDMA (bchan)
> 017794739702 does not contain PKTDMA (tflow)

I can probably split this patch
017794739702 for bchan and 25dcb5dd7b7c for bchan/rchan/tchan/rflow

> 
>> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
>> ---
>>  drivers/dma/ti/k3-udma.c | 30 +++++++++++++++++++++++++-----
>>  1 file changed, 25 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/dma/ti/k3-udma.c b/drivers/dma/ti/k3-udma.c
>> index 298460438bb4..aa4ef583ff83 100644
>> --- a/drivers/dma/ti/k3-udma.c
>> +++ b/drivers/dma/ti/k3-udma.c
>> @@ -1330,6 +1330,7 @@ static int bcdma_get_bchan(struct udma_chan *uc)
>>  {
>>  	struct udma_dev *ud = uc->ud;
>>  	enum udma_tp_level tpl;
>> +	int ret;
>>  
>>  	if (uc->bchan) {
>>  		dev_dbg(ud->dev, "chan%d: already have bchan%d allocated\n",
>> @@ -1347,8 +1348,11 @@ static int bcdma_get_bchan(struct udma_chan *uc)
>>  		tpl = ud->bchan_tpl.levels - 1;
>>  
>>  	uc->bchan = __udma_reserve_bchan(ud, tpl, -1);
>> -	if (IS_ERR(uc->bchan))
>> -		return PTR_ERR(uc->bchan);
>> +	if (IS_ERR(uc->bchan)) {
>> +		ret = PTR_ERR(uc->bchan);
>> +		uc->bchan = NULL;
>> +		return ret;
>> +	}
>>  
>>  	uc->tchan = uc->bchan;
>>  
>> @@ -1358,6 +1362,7 @@ static int bcdma_get_bchan(struct udma_chan *uc)
>>  static int udma_get_tchan(struct udma_chan *uc)
>>  {
>>  	struct udma_dev *ud = uc->ud;
>> +	int ret;
>>  
>>  	if (uc->tchan) {
>>  		dev_dbg(ud->dev, "chan%d: already have tchan%d allocated\n",
>> @@ -1372,8 +1377,11 @@ static int udma_get_tchan(struct udma_chan *uc)
>>  	 */
>>  	uc->tchan = __udma_reserve_tchan(ud, uc->config.channel_tpl,
>>  					 uc->config.mapped_channel_id);
>> -	if (IS_ERR(uc->tchan))
>> -		return PTR_ERR(uc->tchan);
>> +	if (IS_ERR(uc->tchan)) {
>> +		ret = PTR_ERR(uc->tchan);
>> +		uc->tchan = NULL;
>> +		return ret;
>> +	}
>>  
>>  	if (ud->tflow_cnt) {
>>  		int tflow_id;
>> @@ -1403,6 +1411,7 @@ static int udma_get_tchan(struct udma_chan *uc)
>>  static int udma_get_rchan(struct udma_chan *uc)
>>  {
>>  	struct udma_dev *ud = uc->ud;
>> +	int ret;
>>  
>>  	if (uc->rchan) {
>>  		dev_dbg(ud->dev, "chan%d: already have rchan%d allocated\n",
>> @@ -1417,8 +1426,13 @@ static int udma_get_rchan(struct udma_chan *uc)
>>  	 */
>>  	uc->rchan = __udma_reserve_rchan(ud, uc->config.channel_tpl,
>>  					 uc->config.mapped_channel_id);
>> +	if (IS_ERR(uc->rchan)) {
>> +		ret = PTR_ERR(uc->rchan);
>> +		uc->rchan = NULL;
>> +		return ret;
>> +	}
>>  
>> -	return PTR_ERR_OR_ZERO(uc->rchan);
>> +	return 0;
>>  }
>>  
>>  static int udma_get_chan_pair(struct udma_chan *uc)
>> @@ -1472,6 +1486,7 @@ static int udma_get_chan_pair(struct udma_chan *uc)
>>  static int udma_get_rflow(struct udma_chan *uc, int flow_id)
>>  {
>>  	struct udma_dev *ud = uc->ud;
>> +	int ret;
>>  
>>  	if (!uc->rchan) {
>>  		dev_err(ud->dev, "chan%d: does not have rchan??\n", uc->id);
>> @@ -1485,6 +1500,11 @@ static int udma_get_rflow(struct udma_chan *uc, int flow_id)
>>  	}
>>  
>>  	uc->rflow = __udma_get_rflow(ud, flow_id);
>> +	if (IS_ERR(uc->rflow)) {
>> +		ret = PTR_ERR(uc->rflow);
>> +		uc->rflow = NULL;
>> +		return ret;
>> +	}
>>  
>>  	return PTR_ERR_OR_ZERO(uc->rflow);
> 
> return 0;

Will fix this.

Thanks
Kishon

  reply	other threads:[~2021-02-09 12:48 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-09  9:00 Kishon Vijay Abraham I
2021-02-09 12:23 ` Péter Ujfalusi
2021-02-09 12:45   ` Kishon Vijay Abraham I [this message]
2021-02-10  7:50     ` Péter Ujfalusi
2021-02-09 12:02 Kishon Vijay Abraham I
2021-02-10 10:03 ` Péter Ujfalusi
2021-02-10 11:34   ` Kishon Vijay Abraham I

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=7e06c63d-606b-be78-84ff-d5a5c72f7ad7@ti.com \
    --to=kishon@ti.com \
    --cc=dan.j.williams@intel.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=grygorii.strashko@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=peter.ujfalusi@gmail.com \
    --cc=vigneshr@ti.com \
    --cc=vkoul@kernel.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®