Linux-NVME Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] nvme-pci: fix race condition between reset and nvme_dev_disable()
@ 2024-10-15 11:21 Maurizio Lombardi
  2024-10-15 17:27 ` Keith Busch
  2024-10-17 18:08 ` Keith Busch
  0 siblings, 2 replies; 4+ messages in thread
From: Maurizio Lombardi @ 2024-10-15 11:21 UTC (permalink / raw)
  To: kbusch; +Cc: axboe, hch, sagi, linux-nvme

nvme_dev_disable() modifies the dev->online_queues field, therefore
nvme_pci_update_nr_queues() should avoid racing against it, otherwise
we could end up passing invalid values to blk_mq_update_nr_hw_queues().

 WARNING: CPU: 39 PID: 61303 at drivers/pci/msi/api.c:347
          pci_irq_get_affinity+0x187/0x210
 Workqueue: nvme-reset-wq nvme_reset_work [nvme]
 RIP: 0010:pci_irq_get_affinity+0x187/0x210
 Call Trace:
  <TASK>
  ? blk_mq_pci_map_queues+0x87/0x3c0
  ? pci_irq_get_affinity+0x187/0x210
  blk_mq_pci_map_queues+0x87/0x3c0
  nvme_pci_map_queues+0x189/0x460 [nvme]
  blk_mq_update_nr_hw_queues+0x2a/0x40
  nvme_reset_work+0x1be/0x2a0 [nvme]

Fix the bug by locking the shutdown_lock mutex before using
dev->online_queues. Give up if nvme_dev_disable() is running or if
it has been executed already.

Fixes: 949928c1c731 ("NVMe: Fix possible queue use after freed")
Tested-by: Yi Zhang <yi.zhang@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Maurizio Lombardi <mlombard@redhat.com>
---

v2: return true in case of success, false in case of failure

 drivers/nvme/host/pci.c | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c
index 7990c3f22ecf..4b9fda0b1d9a 100644
--- a/drivers/nvme/host/pci.c
+++ b/drivers/nvme/host/pci.c
@@ -2506,17 +2506,29 @@ static unsigned int nvme_pci_nr_maps(struct nvme_dev *dev)
 	return 1;
 }
 
-static void nvme_pci_update_nr_queues(struct nvme_dev *dev)
+static bool nvme_pci_update_nr_queues(struct nvme_dev *dev)
 {
 	if (!dev->ctrl.tagset) {
 		nvme_alloc_io_tag_set(&dev->ctrl, &dev->tagset, &nvme_mq_ops,
 				nvme_pci_nr_maps(dev), sizeof(struct nvme_iod));
-		return;
+		return true;
+	}
+
+	/* Give up if we are racing with nvme_dev_disable() */
+	if (!mutex_trylock(&dev->shutdown_lock))
+		return false;
+
+	/* Check if nvme_dev_disable() has been executed already */
+	if (!dev->online_queues) {
+		mutex_unlock(&dev->shutdown_lock);
+		return false;
 	}
 
 	blk_mq_update_nr_hw_queues(&dev->tagset, dev->online_queues - 1);
 	/* free previously allocated queues that are no longer usable */
 	nvme_free_queues(dev, dev->online_queues);
+	mutex_unlock(&dev->shutdown_lock);
+	return true;
 }
 
 static int nvme_pci_enable(struct nvme_dev *dev)
@@ -2797,7 +2809,8 @@ static void nvme_reset_work(struct work_struct *work)
 		nvme_dbbuf_set(dev);
 		nvme_unquiesce_io_queues(&dev->ctrl);
 		nvme_wait_freeze(&dev->ctrl);
-		nvme_pci_update_nr_queues(dev);
+		if (!nvme_pci_update_nr_queues(dev))
+			goto out;
 		nvme_unfreeze(&dev->ctrl);
 	} else {
 		dev_warn(dev->ctrl.device, "IO queues lost\n");
-- 
2.43.5



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

* Re: [PATCH V2] nvme-pci: fix race condition between reset and nvme_dev_disable()
  2024-10-15 11:21 [PATCH V2] nvme-pci: fix race condition between reset and nvme_dev_disable() Maurizio Lombardi
@ 2024-10-15 17:27 ` Keith Busch
  2024-10-15 17:57   ` Keith Busch
  2024-10-17 18:08 ` Keith Busch
  1 sibling, 1 reply; 4+ messages in thread
From: Keith Busch @ 2024-10-15 17:27 UTC (permalink / raw)
  To: Maurizio Lombardi; +Cc: axboe, hch, sagi, linux-nvme

On Tue, Oct 15, 2024 at 01:21:00PM +0200, Maurizio Lombardi wrote:
> -static void nvme_pci_update_nr_queues(struct nvme_dev *dev)
> +static bool nvme_pci_update_nr_queues(struct nvme_dev *dev)
>  {
>  	if (!dev->ctrl.tagset) {
>  		nvme_alloc_io_tag_set(&dev->ctrl, &dev->tagset, &nvme_mq_ops,
>  				nvme_pci_nr_maps(dev), sizeof(struct nvme_iod));
> -		return;
> +		return true;
> +	}
> +
> +	/* Give up if we are racing with nvme_dev_disable() */
> +	if (!mutex_trylock(&dev->shutdown_lock))
> +		return false;
> +
> +	/* Check if nvme_dev_disable() has been executed already */
> +	if (!dev->online_queues) {
> +		mutex_unlock(&dev->shutdown_lock);
> +		return false;
>  	}
>  
>  	blk_mq_update_nr_hw_queues(&dev->tagset, dev->online_queues - 1);
>  	/* free previously allocated queues that are no longer usable */
>  	nvme_free_queues(dev, dev->online_queues);
> +	mutex_unlock(&dev->shutdown_lock);

I believe mutex_unlock needs to be above blk_mq_update_nr_hw_queues().
That function needs all the queues to be frozen, so any older IO that
times out is going to need this lock in order to reclaim it.


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

* Re: [PATCH V2] nvme-pci: fix race condition between reset and nvme_dev_disable()
  2024-10-15 17:27 ` Keith Busch
@ 2024-10-15 17:57   ` Keith Busch
  0 siblings, 0 replies; 4+ messages in thread
From: Keith Busch @ 2024-10-15 17:57 UTC (permalink / raw)
  To: Maurizio Lombardi; +Cc: axboe, hch, sagi, linux-nvme

On Tue, Oct 15, 2024 at 11:27:24AM -0600, Keith Busch wrote:
> On Tue, Oct 15, 2024 at 01:21:00PM +0200, Maurizio Lombardi wrote:
> > -static void nvme_pci_update_nr_queues(struct nvme_dev *dev)
> > +static bool nvme_pci_update_nr_queues(struct nvme_dev *dev)
> >  {
> >  	if (!dev->ctrl.tagset) {
> >  		nvme_alloc_io_tag_set(&dev->ctrl, &dev->tagset, &nvme_mq_ops,
> >  				nvme_pci_nr_maps(dev), sizeof(struct nvme_iod));
> > -		return;
> > +		return true;
> > +	}
> > +
> > +	/* Give up if we are racing with nvme_dev_disable() */
> > +	if (!mutex_trylock(&dev->shutdown_lock))
> > +		return false;
> > +
> > +	/* Check if nvme_dev_disable() has been executed already */
> > +	if (!dev->online_queues) {
> > +		mutex_unlock(&dev->shutdown_lock);
> > +		return false;
> >  	}
> >  
> >  	blk_mq_update_nr_hw_queues(&dev->tagset, dev->online_queues - 1);
> >  	/* free previously allocated queues that are no longer usable */
> >  	nvme_free_queues(dev, dev->online_queues);
> > +	mutex_unlock(&dev->shutdown_lock);
> 
> I believe mutex_unlock needs to be above blk_mq_update_nr_hw_queues().
> That function needs all the queues to be frozen, so any older IO that
> times out is going to need this lock in order to reclaim it.

Oops, unlocking there doesn't solve your problem. I guess your patch
should be safe as-is since the nvme driver already waits for the freeze
prior to updating the hw queues.


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

* Re: [PATCH V2] nvme-pci: fix race condition between reset and nvme_dev_disable()
  2024-10-15 11:21 [PATCH V2] nvme-pci: fix race condition between reset and nvme_dev_disable() Maurizio Lombardi
  2024-10-15 17:27 ` Keith Busch
@ 2024-10-17 18:08 ` Keith Busch
  1 sibling, 0 replies; 4+ messages in thread
From: Keith Busch @ 2024-10-17 18:08 UTC (permalink / raw)
  To: Maurizio Lombardi; +Cc: axboe, hch, sagi, linux-nvme

On Tue, Oct 15, 2024 at 01:21:00PM +0200, Maurizio Lombardi wrote:
> nvme_dev_disable() modifies the dev->online_queues field, therefore
> nvme_pci_update_nr_queues() should avoid racing against it, otherwise
> we could end up passing invalid values to blk_mq_update_nr_hw_queues().

Thanks, applied to nvme-6.12.


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

end of thread, other threads:[~2024-10-17 18:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-15 11:21 [PATCH V2] nvme-pci: fix race condition between reset and nvme_dev_disable() Maurizio Lombardi
2024-10-15 17:27 ` Keith Busch
2024-10-15 17:57   ` Keith Busch
2024-10-17 18:08 ` Keith Busch

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