Linux PCI Non-Transparent Bridge framework and drivers
 help / color / mirror / Atom feed
* [PATCH] NTB: ntb_transport: Ensure qp->tx_mw_dma_addr is initaliazed
@ 2019-02-19 19:56 Logan Gunthorpe
  2019-03-20 18:17 ` Jon Mason
  0 siblings, 1 reply; 2+ messages in thread
From: Logan Gunthorpe @ 2019-02-19 19:56 UTC (permalink / raw)
  To: linux-ntb; +Cc: Logan Gunthorpe, Dan Carpenter, Jon Mason

Dan Carpenter's static checker reported:

    drivers/ntb/ntb_transport.c:1926 ntb_transport_create_queue()
    error: we previously assumed 'qp->tx_dma_chan' could be null (see line 1872)

This is because the tx_mw_dma_addr is uninitialized in this function and
may be incorrectly released using a NULL DMA channel.

In practice this bug will not likely be seen. I'd guess you could hit
this if you loaded ntb_netdev with use_dma=True, then unloaded it and
loaded it again after setting the module parameter to use_dma=False.

To fix this, we simply ensure that tx_mw_dma_addr is always
initialized to zero. This is the safest in case any other part of the
code operates on it if it is non-zero.

Fixes: c27ccb899219 ("NTB: ntb_transport: Ensure the destination buffer is mapped for TX DMA")
Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Cc: Dan Carpenter <dan.carpenter@oracle.com>
Cc: Jon Mason <jdmason@kudzu.us>
---
 drivers/ntb/ntb_transport.c | 1 +
 1 file changed, 1 insertion(+)

@Jon, it would be best if you can squash this with the commit that
introduced the bug in ntb-next. Thanks.

diff --git a/drivers/ntb/ntb_transport.c b/drivers/ntb/ntb_transport.c
index 526b65afc16a..e8a8304a42df 100644
--- a/drivers/ntb/ntb_transport.c
+++ b/drivers/ntb/ntb_transport.c
@@ -1866,6 +1866,7 @@ ntb_transport_create_queue(void *data, struct device *client_dev,
 		qp->rx_dma_chan = NULL;
 	}

+	qp->tx_mw_dma_addr = 0;
 	if (qp->tx_dma_chan) {
 		qp->tx_mw_dma_addr =
 			dma_map_resource(qp->tx_dma_chan->device->dev,
--
2.19.0

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

* Re: [PATCH] NTB: ntb_transport: Ensure qp->tx_mw_dma_addr is initaliazed
  2019-02-19 19:56 [PATCH] NTB: ntb_transport: Ensure qp->tx_mw_dma_addr is initaliazed Logan Gunthorpe
@ 2019-03-20 18:17 ` Jon Mason
  0 siblings, 0 replies; 2+ messages in thread
From: Jon Mason @ 2019-03-20 18:17 UTC (permalink / raw)
  To: Logan Gunthorpe; +Cc: linux-ntb, Dan Carpenter

On Tue, Feb 19, 2019 at 12:56:36PM -0700, Logan Gunthorpe wrote:
> Dan Carpenter's static checker reported:
> 
>     drivers/ntb/ntb_transport.c:1926 ntb_transport_create_queue()
>     error: we previously assumed 'qp->tx_dma_chan' could be null (see line 1872)
> 
> This is because the tx_mw_dma_addr is uninitialized in this function and
> may be incorrectly released using a NULL DMA channel.
> 
> In practice this bug will not likely be seen. I'd guess you could hit
> this if you loaded ntb_netdev with use_dma=True, then unloaded it and
> loaded it again after setting the module parameter to use_dma=False.
> 
> To fix this, we simply ensure that tx_mw_dma_addr is always
> initialized to zero. This is the safest in case any other part of the
> code operates on it if it is non-zero.
> 
> Fixes: c27ccb899219 ("NTB: ntb_transport: Ensure the destination buffer is mapped for TX DMA")
> Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
> Cc: Dan Carpenter <dan.carpenter@oracle.com>
> Cc: Jon Mason <jdmason@kudzu.us>

Included in the ntb branch.

Thanks,
Jon

> ---
>  drivers/ntb/ntb_transport.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> @Jon, it would be best if you can squash this with the commit that
> introduced the bug in ntb-next. Thanks.
> 
> diff --git a/drivers/ntb/ntb_transport.c b/drivers/ntb/ntb_transport.c
> index 526b65afc16a..e8a8304a42df 100644
> --- a/drivers/ntb/ntb_transport.c
> +++ b/drivers/ntb/ntb_transport.c
> @@ -1866,6 +1866,7 @@ ntb_transport_create_queue(void *data, struct device *client_dev,
>  		qp->rx_dma_chan = NULL;
>  	}
> 
> +	qp->tx_mw_dma_addr = 0;
>  	if (qp->tx_dma_chan) {
>  		qp->tx_mw_dma_addr =
>  			dma_map_resource(qp->tx_dma_chan->device->dev,
> --
> 2.19.0

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

end of thread, other threads:[~2019-03-20 18:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-19 19:56 [PATCH] NTB: ntb_transport: Ensure qp->tx_mw_dma_addr is initaliazed Logan Gunthorpe
2019-03-20 18:17 ` Jon Mason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox