tests/ide-test: Create a single unit-test covering more PRDT cases

Fuzzing the Linux kernel with syzkaller allowed to find how to crash qemu
using a special SCSI_IOCTL_SEND_COMMAND. It hits the assertion in
ide_dma_cb() introduced in the commit a718978ed5 in July 2015.
Currently this bug is not reproduced by the unit tests.

Let's improve the ide-test to cover more PRDT cases including one
that causes this particular qemu crash.

The test is developed according to the Programming Interface for
Bus Master IDE Controller (Revision 1.0 5/16/94).

Signed-off-by: Alexander Popov <alex.popov@linux.com>
Message-id: 20191223175117.508990-3-alex.popov@linux.com
Signed-off-by: John Snow <jsnow@redhat.com>
This commit is contained in:
Alexander Popov 2019-12-23 20:51:17 +03:00 committed by John Snow
parent ed78352a59
commit 59805ae92d

View File

@ -445,104 +445,81 @@ static void test_bmdma_trim(void)
test_bmdma_teardown(qts); test_bmdma_teardown(qts);
} }
static void test_bmdma_short_prdt(void) /*
* This test is developed according to the Programming Interface for
* Bus Master IDE Controller (Revision 1.0 5/16/94)
*/
static void test_bmdma_various_prdts(void)
{ {
QTestState *qts; int sectors = 0;
QPCIDevice *dev; uint32_t size = 0;
QPCIBar bmdma_bar, ide_bar;
uint8_t status;
PrdtEntry prdt[] = { for (sectors = 1; sectors <= 256; sectors *= 2) {
{ QTestState *qts = NULL;
.addr = 0, QPCIDevice *dev = NULL;
.size = cpu_to_le32(0x10 | PRDT_EOT), QPCIBar bmdma_bar, ide_bar;
},
};
qts = test_bmdma_setup(); qts = test_bmdma_setup();
dev = get_pci_device(qts, &bmdma_bar, &ide_bar);
dev = get_pci_device(qts, &bmdma_bar, &ide_bar); for (size = 0; size < 65536; size += 256) {
uint32_t req_size = sectors * 512;
uint32_t prd_size = size & 0xfffe; /* bit 0 is always set to 0 */
uint8_t ret = 0;
uint8_t req_status = 0;
uint8_t abort_req_status = 0;
PrdtEntry prdt[] = {
{
.addr = 0,
.size = cpu_to_le32(size | PRDT_EOT),
},
};
/* Normal request */ /* A value of zero in PRD size indicates 64K */
status = send_dma_request(qts, CMD_READ_DMA, 0, 1, if (prd_size == 0) {
prdt, ARRAY_SIZE(prdt), NULL); prd_size = 65536;
g_assert_cmphex(status, ==, 0); }
assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR);
/* Abort the request before it completes */ /*
status = send_dma_request(qts, CMD_READ_DMA | CMDF_ABORT, 0, 1, * 1. If PRDs specified a smaller size than the IDE transfer
prdt, ARRAY_SIZE(prdt), NULL); * size, then the Interrupt and Active bits in the Controller
g_assert_cmphex(status, ==, 0); * status register are not set (Error Condition).
assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR); *
free_pci_device(dev); * 2. If the size of the physical memory regions was equal to
test_bmdma_teardown(qts); * the IDE device transfer size, the Interrupt bit in the
} * Controller status register is set to 1, Active bit is set to 0.
*
* 3. If PRDs specified a larger size than the IDE transfer size,
* the Interrupt and Active bits in the Controller status register
* are both set to 1.
*/
if (prd_size < req_size) {
req_status = 0;
abort_req_status = 0;
} else if (prd_size == req_size) {
req_status = BM_STS_INTR;
abort_req_status = BM_STS_INTR;
} else {
req_status = BM_STS_ACTIVE | BM_STS_INTR;
abort_req_status = BM_STS_INTR;
}
static void test_bmdma_one_sector_short_prdt(void) /* Test the request */
{ ret = send_dma_request(qts, CMD_READ_DMA, 0, sectors,
QTestState *qts; prdt, ARRAY_SIZE(prdt), NULL);
QPCIDevice *dev; g_assert_cmphex(ret, ==, req_status);
QPCIBar bmdma_bar, ide_bar; assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR);
uint8_t status;
/* Read 2 sectors but only give 1 sector in PRDT */ /* Now test aborting the same request */
PrdtEntry prdt[] = { ret = send_dma_request(qts, CMD_READ_DMA | CMDF_ABORT, 0,
{ sectors, prdt, ARRAY_SIZE(prdt), NULL);
.addr = 0, g_assert_cmphex(ret, ==, abort_req_status);
.size = cpu_to_le32(0x200 | PRDT_EOT), assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR);
}, }
};
qts = test_bmdma_setup(); free_pci_device(dev);
test_bmdma_teardown(qts);
dev = get_pci_device(qts, &bmdma_bar, &ide_bar); }
/* Normal request */
status = send_dma_request(qts, CMD_READ_DMA, 0, 2,
prdt, ARRAY_SIZE(prdt), NULL);
g_assert_cmphex(status, ==, 0);
assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR);
/* Abort the request before it completes */
status = send_dma_request(qts, CMD_READ_DMA | CMDF_ABORT, 0, 2,
prdt, ARRAY_SIZE(prdt), NULL);
g_assert_cmphex(status, ==, 0);
assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR);
free_pci_device(dev);
test_bmdma_teardown(qts);
}
static void test_bmdma_long_prdt(void)
{
QTestState *qts;
QPCIDevice *dev;
QPCIBar bmdma_bar, ide_bar;
uint8_t status;
PrdtEntry prdt[] = {
{
.addr = 0,
.size = cpu_to_le32(0x1000 | PRDT_EOT),
},
};
qts = test_bmdma_setup();
dev = get_pci_device(qts, &bmdma_bar, &ide_bar);
/* Normal request */
status = send_dma_request(qts, CMD_READ_DMA, 0, 1,
prdt, ARRAY_SIZE(prdt), NULL);
g_assert_cmphex(status, ==, BM_STS_ACTIVE | BM_STS_INTR);
assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR);
/* Abort the request before it completes */
status = send_dma_request(qts, CMD_READ_DMA | CMDF_ABORT, 0, 1,
prdt, ARRAY_SIZE(prdt), NULL);
g_assert_cmphex(status, ==, BM_STS_INTR);
assert_bit_clear(qpci_io_readb(dev, ide_bar, reg_status), DF | ERR);
free_pci_device(dev);
test_bmdma_teardown(qts);
} }
static void test_bmdma_no_busmaster(void) static void test_bmdma_no_busmaster(void)
@ -1066,10 +1043,7 @@ int main(int argc, char **argv)
qtest_add_func("/ide/bmdma/simple_rw", test_bmdma_simple_rw); qtest_add_func("/ide/bmdma/simple_rw", test_bmdma_simple_rw);
qtest_add_func("/ide/bmdma/trim", test_bmdma_trim); qtest_add_func("/ide/bmdma/trim", test_bmdma_trim);
qtest_add_func("/ide/bmdma/short_prdt", test_bmdma_short_prdt); qtest_add_func("/ide/bmdma/various_prdts", test_bmdma_various_prdts);
qtest_add_func("/ide/bmdma/one_sector_short_prdt",
test_bmdma_one_sector_short_prdt);
qtest_add_func("/ide/bmdma/long_prdt", test_bmdma_long_prdt);
qtest_add_func("/ide/bmdma/no_busmaster", test_bmdma_no_busmaster); qtest_add_func("/ide/bmdma/no_busmaster", test_bmdma_no_busmaster);
qtest_add_func("/ide/flush", test_flush); qtest_add_func("/ide/flush", test_flush);