Skip to content

Commit 1d58229

Browse files
Vastargazinggregkh
authored andcommitted
media: msi2500: Return queued buffers on start_streaming() failure
commit 7201c17 upstream. The vb2 framework hands buffers to the driver via buf_queue() before calling start_streaming(). If start_streaming() returns an error without first returning those buffers via vb2_buffer_done(), vb2_start_streaming() fires WARN_ON(owned_by_drv_count) and the queued buffers leak. msi2500_start_streaming() had five error paths that all hit this trap and were further tangled by ret-overwriting between calls: - -ENODEV when the USB device was already disconnected - -ERESTARTSYS when mutex_lock_interruptible() was interrupted - msi2500_set_usb_adc() failure: ret was silently overwritten by the next call (msi2500_isoc_init), so the error was lost entirely - msi2500_isoc_init() failure: cleanup_queued_bufs was called, but the function then fell through to msi2500_ctrl_msg() and again masked the original error by overwriting ret - msi2500_ctrl_msg(CMD_START_STREAMING) failure: no cleanup at all, leaving isoc URBs submitted with no way for the driver to consume them Consolidate the error paths into a small goto chain. Every failure now stops the function, drains the queued-buffer list, and returns the real error code. The ctrl_msg failure path also rolls back the preceding msi2500_isoc_init() via msi2500_isoc_cleanup() before unlocking and draining. The cleanup helper takes a vb2_buffer_state argument so that the start_streaming error paths can pass VB2_BUF_STATE_QUEUED (as expected by userspace on start_streaming failure) while stop_streaming keeps its existing VB2_BUF_STATE_ERROR semantics. This mirrors the uvcvideo fix in commit 4cf3b6f ("media: uvcvideo: Return queued buffers on start_streaming() failure"). Fixes: 977e444 ("[media] Mirics MSi3101 SDR Dongle driver") Cc: stable@vger.kernel.org Signed-off-by: Valery Borovsky <vebohr@gmail.com> Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent c6cd08a commit 1d58229

1 file changed

Lines changed: 24 additions & 8 deletions

File tree

drivers/media/usb/msi2500/msi2500.c

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,8 @@ static int msi2500_isoc_init(struct msi2500_dev *dev)
541541
}
542542

543543
/* Must be called with vb_queue_lock hold */
544-
static void msi2500_cleanup_queued_bufs(struct msi2500_dev *dev)
544+
static void msi2500_cleanup_queued_bufs(struct msi2500_dev *dev,
545+
enum vb2_buffer_state state)
545546
{
546547
unsigned long flags;
547548

@@ -554,7 +555,7 @@ static void msi2500_cleanup_queued_bufs(struct msi2500_dev *dev)
554555
buf = list_entry(dev->queued_bufs.next,
555556
struct msi2500_frame_buf, list);
556557
list_del(&buf->list);
557-
vb2_buffer_done(&buf->vb.vb2_buf, VB2_BUF_STATE_ERROR);
558+
vb2_buffer_done(&buf->vb.vb2_buf, state);
558559
}
559560
spin_unlock_irqrestore(&dev->queued_bufs_lock, flags);
560561
}
@@ -830,25 +831,40 @@ static int msi2500_start_streaming(struct vb2_queue *vq, unsigned int count)
830831

831832
dev_dbg(dev->dev, "\n");
832833

833-
if (!dev->udev)
834-
return -ENODEV;
834+
if (!dev->udev) {
835+
ret = -ENODEV;
836+
goto err_cleanup;
837+
}
835838

836-
if (mutex_lock_interruptible(&dev->v4l2_lock))
837-
return -ERESTARTSYS;
839+
if (mutex_lock_interruptible(&dev->v4l2_lock)) {
840+
ret = -ERESTARTSYS;
841+
goto err_cleanup;
842+
}
838843

839844
/* wake-up tuner */
840845
v4l2_subdev_call(dev->v4l2_subdev, core, s_power, 1);
841846

842847
ret = msi2500_set_usb_adc(dev);
848+
if (ret)
849+
goto err_unlock_cleanup;
843850

844851
ret = msi2500_isoc_init(dev);
845852
if (ret)
846-
msi2500_cleanup_queued_bufs(dev);
853+
goto err_unlock_cleanup;
847854

848855
ret = msi2500_ctrl_msg(dev, CMD_START_STREAMING, 0);
856+
if (ret)
857+
goto err_isoc_cleanup;
849858

850859
mutex_unlock(&dev->v4l2_lock);
860+
return 0;
851861

862+
err_isoc_cleanup:
863+
msi2500_isoc_cleanup(dev);
864+
err_unlock_cleanup:
865+
mutex_unlock(&dev->v4l2_lock);
866+
err_cleanup:
867+
msi2500_cleanup_queued_bufs(dev, VB2_BUF_STATE_QUEUED);
852868
return ret;
853869
}
854870

@@ -863,7 +879,7 @@ static void msi2500_stop_streaming(struct vb2_queue *vq)
863879
if (dev->udev)
864880
msi2500_isoc_cleanup(dev);
865881

866-
msi2500_cleanup_queued_bufs(dev);
882+
msi2500_cleanup_queued_bufs(dev, VB2_BUF_STATE_ERROR);
867883

868884
/* according to tests, at least 700us delay is required */
869885
msleep(20);

0 commit comments

Comments
 (0)