From: Artem Nasonov <[email protected]> In ide_dma_cb(), the call to prepare_buf() might return a negative result and cause an assertion failure. This was found during fuzzing and can be triggered with some qtest commands. Replace the assert with proper error handling in case the result is negative, but keep the assert for failing to respect the limit upon success. If that happens, it is an implementation error.
Found by Linux Verification Center (linuxtesting.org) with libFuzzer. Cc: [email protected] Fixes: ed78352a59 ("ide: Fix incorrect handling of some PRDTs in ide_dma_cb()") Resolves: https://gitlab.com/qemu-project/qemu/-/work_items/2777 Signed-off-by: Artem Nasonov <[email protected]> Link: https://lore.kernel.org/qemu-devel/[email protected] [FE: improve commit message keep assert for failing to respect the limit] Signed-off-by: Fiona Ebner <[email protected]> Reviewed-by: Thomas Huth <[email protected]> Signed-off-by: Michael Tokarev <[email protected]> (cherry picked from commit 443e02410695b35a27fad18217424b6370358be7) Signed-off-by: Michael Tokarev <[email protected]> diff --git a/hw/ide/core.c b/hw/ide/core.c index bf616b77033..4b6066c3eca 100644 --- a/hw/ide/core.c +++ b/hw/ide/core.c @@ -921,8 +921,12 @@ static void ide_dma_cb(void *opaque, int ret) s->io_buffer_index = 0; s->io_buffer_size = n * 512; prep_size = s->bus->dma->ops->prepare_buf(s->bus->dma, s->io_buffer_size); - /* prepare_buf() must succeed and respect the limit */ - assert(prep_size >= 0 && prep_size <= n * 512); + if (prep_size < 0) { + ide_dma_error(s); + return; + } + /* If prepare_buf() succeeds, it must respect the limit. */ + assert(prep_size <= n * 512); /* * Now prep_size stores the number of bytes in the sglist, and -- 2.47.3
