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)
Mon, Nov 4, 8:04 AM
Unknown Object (File)
Sun, Oct 13, 12:49 AM
Unknown Object (File)
Sep 29 2024, 6:08 PM
Unknown Object (File)
Sep 28 2024, 8:32 AM
Unknown Object (File)
Sep 27 2024, 4:56 PM
Unknown Object (File)
Sep 9 2024, 1:49 AM
Unknown Object (File)
Sep 8 2024, 6:47 AM
Unknown Object (File)
Sep 8 2024, 2:52 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