ee1da17617
Create the four USB validation scripts that local/docs/USB-VALIDATION-RUNBOOK.md references but which did not exist on disk, closing the P8-B runtime-proof gap for the legacy host controllers and the P8-C error-injection gap for xHCI: - test-uhci-runtime-qemu.sh (P1-B): -machine pc + piix3-usb-uhci, serial-log proof that uhcid binds the controller and detects the attached usb-kbd. - test-ohci-runtime-qemu.sh (P1-B): -machine pc + pci-ohci, serial-log proof that ohcid binds the controller and detects the attached usb-kbd. - test-ehci-class-autospawn-qemu.sh (P1-A): -machine q35 + usb-ehci + usb-kbd, serial-log proof that ehcid enumerates the keyboard and usbhidd auto-spawns via the unified UsbHostController trait. The existing test-ehci-qemu.sh is a coarse usb-tablet smoke test and does NOT cover this path, so this is a full script rather than an alias. - test-usb-error-recovery-qemu.sh (P8-C): hot-unplug usb-storage mid-transfer via the QEMU monitor device_del (chardev stdio mux, Ctrl-A c toggle — the same pattern as test-xhci-device-lifecycle-qemu.sh, since qemu-login-expect.py drives only serial and cannot reach the monitor). Proves graceful detach + usbscsid IO-error handling with no panic. test-xhci-device-lifecycle-qemu.sh already existed and is unchanged. test-usb-uas-qemu.sh is intentionally NOT created: UAS is in flight in a separate workstream and its test belongs to that change. Proof style and harness fidelity: - UHCI/OHCI/EHCI proofs follow the test-xhci-irq-qemu.sh serial-log grep pattern (dual --check + interactive mode, ISO-preferred boot_args, 180s timeout, no panic fail-marker). No guest-side checker exists that validates legacy-controller enumeration specifically, so per the runbook's serial-log-evidence rule they grep driver log lines instead of inventing a guest binary. - The error-recovery proof follows the test-xhci-device-lifecycle-qemu.sh expect/Tcl monitor-mux pattern and reuses the existing redbear-usb-storage-check guest binary (redbear-hwutils) to drive an active transfer — no new guest binary is invented. All proof markers are sourced directly from the real driver trees: uhcid main.rs:487/535/545 (UHCI USB 1.1 at / controller initialized / connect) ohcid main.rs:305/341/348 (OHCI USB 1.1 at / controller initialized / connect) ehcid main.rs:154/294/560 (EHCI USB 2.0 at / controller initialized / port device) usbhidd main.rs:221 (USB HID driver spawned with scheme) usbscsid main.rs:190/200/163/156 (READ/WRITE IO ERROR / scheme tick / event error) No existing scripts, qemu-login-expect.py, config/*.toml, recipes, or the runbook were modified. The runbook's script names and --check invocations already matched exactly, so no runbook edits were required. Validation: bash -n passes on all four scripts. shellcheck is not installed on this host. NO QEMU runs were performed — the host is contended by another workload that kills QEMU processes, so validation is syntax check + pattern fidelity review only. Runtime pass/fail is unverified.