From d89275f2aaa8ae95a2bcb8e8f8b022708d2d6951 Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Fri, 13 Mar 2020 00:32:32 +0100 Subject: executor, sys/linux: add ath9k usb descriptions Among other things this changes timeout for USB programs from 2 to 3 seconds. ath9k fuzzing also requires ath9k firmware to be present, so system images need to be regenerated with the updated script. --- pkg/host/syscalls_linux.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'pkg/host') diff --git a/pkg/host/syscalls_linux.go b/pkg/host/syscalls_linux.go index 7a8765868..079a4503d 100644 --- a/pkg/host/syscalls_linux.go +++ b/pkg/host/syscalls_linux.go @@ -211,7 +211,8 @@ func isSupportedSyzkall(sandbox string, c *prog.Syscall) (bool, string) { case "syz_emit_ethernet", "syz_extract_tcp_res": reason := checkNetInjection() return reason == "", reason - case "syz_usb_connect", "syz_usb_disconnect", "syz_usb_control_io", "syz_usb_ep_write", "syz_usb_ep_read": + case "syz_usb_connect", "syz_usb_connect_ath9k", "syz_usb_disconnect", + "syz_usb_control_io", "syz_usb_ep_write", "syz_usb_ep_read": reason := checkUSBInjection() return reason == "", reason case "syz_kvm_setup_cpu": -- cgit mrf-deployment