2021-06-16 12:43:49 +02:00
|
|
|
/*
|
|
|
|
* QTest fuzzer-generated testcase for sb16 audio device
|
|
|
|
*
|
|
|
|
* Copyright (c) 2021 Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
2022-03-30 11:39:05 +02:00
|
|
|
#include "libqtest.h"
|
2021-06-16 12:43:49 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This used to trigger the assert in audio_calloc
|
|
|
|
* https://bugs.launchpad.net/qemu/+bug/1910603
|
|
|
|
*/
|
|
|
|
static void test_fuzz_sb16_0x1c(void)
|
|
|
|
{
|
2022-09-02 18:51:19 +02:00
|
|
|
QTestState *s = qtest_init("-M q35 "
|
2021-06-16 12:43:49 +02:00
|
|
|
"-device sb16,audiodev=snd0 "
|
|
|
|
"-audiodev none,id=snd0");
|
|
|
|
qtest_outw(s, 0x22c, 0x41);
|
|
|
|
qtest_outb(s, 0x22c, 0x00);
|
|
|
|
qtest_outw(s, 0x22c, 0x1004);
|
|
|
|
qtest_outw(s, 0x22c, 0x001c);
|
|
|
|
qtest_quit(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_fuzz_sb16_0x91(void)
|
|
|
|
{
|
2022-09-02 18:51:19 +02:00
|
|
|
QTestState *s = qtest_init("-M pc "
|
2021-06-16 12:43:49 +02:00
|
|
|
"-device sb16,audiodev=none "
|
|
|
|
"-audiodev id=none,driver=none");
|
|
|
|
qtest_outw(s, 0x22c, 0xf141);
|
|
|
|
qtest_outb(s, 0x22c, 0x00);
|
|
|
|
qtest_outb(s, 0x22c, 0x24);
|
|
|
|
qtest_outb(s, 0x22c, 0x91);
|
|
|
|
qtest_quit(s);
|
|
|
|
}
|
|
|
|
|
2021-06-24 04:44:47 +02:00
|
|
|
/*
|
|
|
|
* This used to trigger the assert in audio_calloc
|
|
|
|
* through command 0xd4
|
|
|
|
*/
|
|
|
|
static void test_fuzz_sb16_0xd4(void)
|
|
|
|
{
|
2022-09-02 18:51:19 +02:00
|
|
|
QTestState *s = qtest_init("-M pc "
|
2021-06-24 04:44:47 +02:00
|
|
|
"-device sb16,audiodev=none "
|
|
|
|
"-audiodev id=none,driver=none");
|
|
|
|
qtest_outb(s, 0x22c, 0x41);
|
|
|
|
qtest_outb(s, 0x22c, 0x00);
|
|
|
|
qtest_outb(s, 0x22c, 0x14);
|
|
|
|
qtest_outb(s, 0x22c, 0xd4);
|
|
|
|
qtest_quit(s);
|
|
|
|
}
|
|
|
|
|
2021-06-16 12:43:49 +02:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
g_test_init(&argc, &argv, NULL);
|
|
|
|
|
2022-09-02 19:34:49 +02:00
|
|
|
if (qtest_has_machine("q35")) {
|
|
|
|
qtest_add_func("fuzz/test_fuzz_sb16/1c", test_fuzz_sb16_0x1c);
|
|
|
|
}
|
|
|
|
if (qtest_has_machine("pc")) {
|
|
|
|
qtest_add_func("fuzz/test_fuzz_sb16/91", test_fuzz_sb16_0x91);
|
|
|
|
qtest_add_func("fuzz/test_fuzz_sb16/d4", test_fuzz_sb16_0xd4);
|
|
|
|
}
|
2021-06-16 12:43:49 +02:00
|
|
|
|
2022-04-14 15:01:27 +02:00
|
|
|
return g_test_run();
|
2021-06-16 12:43:49 +02:00
|
|
|
}
|