hi
i want to only fuzz this specific module and am trying to use the default already included /sys/linux/dev_kvm.txt
referencing that file, i have this added into my config file:
"enable_syscalls": [
"openat$kvm",
"ioctl$KVM*",
"syz_kvm_setup_cpu$x86",
]
I get a lot of these errors for many ioctls:
disabling ioctl$KVM_CREATE_VM: no syscalls can create resource fd_kvm, enable some syscalls that can create it [openat$kvm]
and seems like no fd is being created.
i tried to use syz_open_dev$kvm as i thought it is used to pass fd to ioctl but it gives 'unknown enabled syscall"
how do i go about fixing this?