Page MenuHomeFreeBSD

bhyve/virtio: return 0xFF when accessing unused PCI space
AbandonedPublic

Authored by corvink on Apr 28 2021, 9:28 AM.
Tags
Referenced Files
Unknown Object (File)
Fri, Jan 24, 7:06 PM
Unknown Object (File)
Sat, Jan 18, 9:21 PM
Unknown Object (File)
Mon, Jan 6, 6:56 AM
Unknown Object (File)
Dec 21 2024, 8:43 PM
Unknown Object (File)
Dec 4 2024, 6:29 AM
Unknown Object (File)
Nov 25 2024, 6:27 PM
Unknown Object (File)
Nov 8 2024, 7:33 AM
Unknown Object (File)
Nov 4 2024, 8:04 AM
Subscribers

Details

Reviewers
None
Group Reviewers
bhyve
Summary

VirtIO devices allocate an IO-BAR. The size of this BAR has to be a
power of two. If that's not the case, pci_emul will adjust the
size to a power of two.
VirtIO space has a size of 0x18 bytes. That's no power of two. For
that reason, pci_emul will adjust the size. If a VirtIO device
only uses the default register, it has no cfgread/cfgwrite
handler. Due to the size adjustment, it's possible that bhyve
calls this unimplemented handler. To avoid a segmentation fault,
check if a handler exists. If the handler does not exist, return
0xFF.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped