No description
  • C 62.9%
  • Python 34.5%
  • Meson 1.5%
  • Shell 0.8%
  • Makefile 0.3%
Find a file
Jihyeon Gim 803924493a
headers: allow including the installed headers from C++ (#878)
* headers: allow including the installed headers from C++

_Static_assert has no C++ spelling: GCC rejects it in C++ mode (clang
accepts it as an extension), so any C++ consumer of the installed
headers fails to compile. rocjitsu, for example, includes
<pci_caps/msix.h> from C++20 and cannot build its vfio-user transport
with GCC.

Introduce VFU_STATIC_ASSERT, which maps to static_assert under C++ and
to _Static_assert otherwise, and use it for the layout assertions in
the installed headers. This keeps C consumers unchanged regardless of
their C standard or feature-test macros, and makes C++11 and newer
work on both compilers.

Tested with gcc 16.2.1 and clang 22.1.8 in C99, C11, C++11 and C++20
modes, plus the project's meson build and pre-push checks.

Signed-off-by: Jihyeon Gim <potatogim@potatogim.net>
2026-09-08 12:43:45 +01:00
.github Remove debian:11 CI build (#880) 2026-09-08 12:10:36 +01:00
docs cleanup scripts (#850) 2026-04-15 19:40:49 +01:00
include headers: allow including the installed headers from C++ (#878) 2026-09-08 12:43:45 +01:00
lib migration: set data_fd to -1 in device state response (#876) 2026-08-18 13:56:24 +01:00
samples pci: fail FLR when reset callback is missing (#866) 2026-07-23 09:40:18 +01:00
scripts cleanup scripts (#850) 2026-04-15 19:40:49 +01:00
test migration: set data_fd to -1 in device state response (#876) 2026-08-18 13:56:24 +01:00
.clangd Add .clangd to point at Meson's compile_commands.json (#867) 2026-06-25 15:39:29 +01:00
.ctags exclude build dir in ctags (#577) 2021-07-09 08:31:48 +01:00
.gitignore add a gcov target (#498) 2021-05-25 15:09:03 +01:00
.gitmodules remove libparthtrap and libvfio 2020-11-02 04:23:45 -05:00
LICENSE add a github-recognised LICENSE file 2020-11-18 09:14:18 +00:00
Makefile cleanup scripts (#850) 2026-04-15 19:40:49 +01:00
meson.build De-duplicate file descriptors used for DMA region access (#841) 2026-04-07 17:52:18 +01:00
meson_options.txt avoid vfu_log() in SGL hot path (#705) 2022-08-18 10:58:58 +01:00
README.md Rework documentation (#817) 2025-10-10 11:13:28 +01:00

libvfio-user

vfio-user is a framework that allows implementing PCI devices in userspace. Clients (such as qemu) talk the vfio-user protocol over a UNIX socket to a server. This library, libvfio-user, provides an API for implementing such servers.

vfio-user example block diagram

VFIO is a kernel facility for providing secure access to PCI devices in userspace (including pass-through to a VM). With vfio-user, instead of talking to the kernel, all interactions are done in userspace, without requiring any kernel component; the kernel VFIO implementation is not used at all for a vfio-user device.

Put another way, vfio-user is to VFIO as vhost-user is to vhost.

The vfio-user protocol is intentionally modelled after the VFIO ioctl() interface, and shares many of its definitions. However, there is not an exact equivalence: for example, IOMMU groups are not represented in vfio-user.

There many different purposes you might put this library to, such as prototyping novel devices, testing frameworks, implementing alternatives to qemu's device emulation, adapting a device class to work over a network, etc.

The library abstracts most of the complexity around representing the device. Applications using libvfio-user provide a description of the device (eg. region and IRQ information) and as set of callbacks which are invoked by libvfio-user when those regions are accessed.

Memory Mapping the Device

The device driver can allow parts of the virtual device to be memory mapped by the virtual machine (e.g. the PCI BARs). The business logic needs to implement the mmap callback and reply to the request passing the memory address whose backing pages are then used to satisfy the original mmap call; more details here.

Interrupts

Interrupts are implemented via eventfd's passed from the client and registered with the library. libvfio-user consumers can then trigger interrupts by writing to the eventfd.

Building libvfio-user

Build requirements:

  • meson (v0.53.0 or above)
  • apt install libjson-c-dev libcmocka-dev or
  • yum install json-c-devel libcmocka-devel

The kernel headers are necessary because VFIO structs and defines are reused.

To build:

meson build
ninja -C build

Finally build your program and link with libvfio-user.so.

Using the library

qemu

Step-by-step instructions for using libvfio-user with qemu can be found here.

See also libvirt.

SPDK

SPDK uses libvfio-user to implement a virtual NVMe controller: see SPDK and libvfio-user for more details.

Developing with the library

See Developing with libvfio-user.

Mailing List & Chat

libvfio-user development is discussed in libvfio-user-devel@nongnu.org. Subscribe here: https://lists.gnu.org/mailman/listinfo/libvfio-user-devel.

We are on Slack at libvfio-user.slack.com (invite link); or IRC at #qemu on OFTC.

Contributing

Contributions are welcome; please file an issue or open a PR. Anything substantial is worth discussing with us first.

Please make sure to mark any commits with Signed-off-by (git commit -s), which signals agreement with the Developer Certificate of Origin v1.1.

Running make pre-push will do the same checks as done in github CI. After merging, a Coverity scan is also done.

See Testing for details on how the library is tested.

History

This project was formerly known as "muser", short for "Mediated Userspace Device". It implemented a proof-of-concept VFIO mediated device in userspace. Normally, VFIO mdev devices require a kernel module; muser implemented a small kernel module that forwarded onto userspace. The old kernel-module-based implementation can be found in the kmod branch.