4 :Copyright: 2014 Virtual Open Systems Sarl.
5 :Licence: This work is licensed under the terms of the GNU GPL,
6 version 2 or later. See the COPYING file in the top-level
9 .. contents:: Table of Contents
14 This protocol is aiming to complement the ``ioctl`` interface used to
15 control the vhost implementation in the Linux kernel. It implements
16 the control plane needed to establish virtqueue sharing with a user
17 space process on the same host. It uses communication over a Unix
18 domain socket to share file descriptors in the ancillary data of the
21 The protocol defines 2 sides of the communication, *master* and
22 *slave*. *Master* is the application that shares its virtqueues, in
23 our case QEMU. *Slave* is the consumer of the virtqueues.
25 In the current implementation QEMU is the *master*, and the *slave* is
26 the external process consuming the virtio queues, for example a
27 software Ethernet switch running in user space, such as Snabbswitch,
28 or a block device backend processing read & write to a virtual
29 disk. In order to facilitate interoperability between various backend
30 implementations, it is recommended to follow the :ref:`Backend program
31 conventions <backend_conventions>`.
33 *Master* and *slave* can be either a client (i.e. connecting) or
34 server (listening) in the socket communication.
39 .. Note:: All numbers are in the machine native byte order.
41 A vhost-user message consists of 3 header fields and a payload.
43 +---------+-------+------+---------+
44 | request | flags | size | payload |
45 +---------+-------+------+---------+
50 :request: 32-bit type of the request
52 :flags: 32-bit bit field
54 - Lower 2 bits are the version (currently 0x01)
55 - Bit 2 is the reply flag - needs to be sent on each reply from the slave
56 - Bit 3 is the need_reply flag - see :ref:`REPLY_ACK <reply_ack>` for
59 :size: 32-bit size of the payload
64 Depending on the request type, **payload** can be:
66 A single 64-bit integer
67 ^^^^^^^^^^^^^^^^^^^^^^^
73 :u64: a 64-bit unsigned integer
75 A vring state description
76 ^^^^^^^^^^^^^^^^^^^^^^^^^
82 :index: a 32-bit index
86 A vring address description
87 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
89 +-------+-------+------+------------+------+-----------+-----+
90 | index | flags | size | descriptor | used | available | log |
91 +-------+-------+------+------------+------+-----------+-----+
93 :index: a 32-bit vring index
95 :flags: a 32-bit vring flags
97 :descriptor: a 64-bit ring address of the vring descriptor table
99 :used: a 64-bit ring address of the vring used ring
101 :available: a 64-bit ring address of the vring available ring
103 :log: a 64-bit guest address for logging
105 Note that a ring address is an IOVA if ``VIRTIO_F_IOMMU_PLATFORM`` has
106 been negotiated. Otherwise it is a user address.
108 Memory regions description
109 ^^^^^^^^^^^^^^^^^^^^^^^^^^
111 +-------------+---------+---------+-----+---------+
112 | num regions | padding | region0 | ... | region7 |
113 +-------------+---------+---------+-----+---------+
115 :num regions: a 32-bit number of regions
121 +---------------+------+--------------+-------------+
122 | guest address | size | user address | mmap offset |
123 +---------------+------+--------------+-------------+
125 :guest address: a 64-bit guest address of the region
129 :user address: a 64-bit user address
131 :mmap offset: 64-bit offset where region starts in the mapped memory
136 +----------+------------+
137 | log size | log offset |
138 +----------+------------+
140 :log size: size of area used for logging
142 :log offset: offset from start of supplied file descriptor where
143 logging starts (i.e. where guest address 0 would be
149 +------+------+--------------+-------------------+------+
150 | iova | size | user address | permissions flags | type |
151 +------+------+--------------+-------------------+------+
153 :iova: a 64-bit I/O virtual address programmed by the guest
157 :user address: a 64-bit user address
159 :permissions flags: an 8-bit value:
163 - 3: Read/Write access
165 :type: an 8-bit IOTLB message type:
168 - 3: IOTLB invalidate
169 - 4: IOTLB access fail
171 Virtio device config space
172 ^^^^^^^^^^^^^^^^^^^^^^^^^^
174 +--------+------+-------+---------+
175 | offset | size | flags | payload |
176 +--------+------+-------+---------+
178 :offset: a 32-bit offset of virtio device's configuration space
180 :size: a 32-bit configuration space access size in bytes
182 :flags: a 32-bit value:
183 - 0: Vhost master messages used for writeable fields
184 - 1: Vhost master messages used for live migration
186 :payload: Size bytes array holding the contents of the virtio
187 device's configuration space
189 Vring area description
190 ^^^^^^^^^^^^^^^^^^^^^^
192 +-----+------+--------+
193 | u64 | size | offset |
194 +-----+------+--------+
196 :u64: a 64-bit integer contains vring index and flags
198 :size: a 64-bit size of this area
200 :offset: a 64-bit offset of this area from the start of the
201 supplied file descriptor
206 +-----------+-------------+------------+------------+
207 | mmap size | mmap offset | num queues | queue size |
208 +-----------+-------------+------------+------------+
210 :mmap size: a 64-bit size of area to track inflight I/O
212 :mmap offset: a 64-bit offset of this area from the start
213 of the supplied file descriptor
215 :num queues: a 16-bit number of virtqueues
217 :queue size: a 16-bit size of virtqueues
222 In QEMU the vhost-user message is implemented with the following struct:
226 typedef struct VhostUserMsg {
227 VhostUserRequest request;
232 struct vhost_vring_state state;
233 struct vhost_vring_addr addr;
234 VhostUserMemory memory;
236 struct vhost_iotlb_msg iotlb;
237 VhostUserConfig config;
238 VhostUserVringArea area;
239 VhostUserInflight inflight;
241 } QEMU_PACKED VhostUserMsg;
246 The protocol for vhost-user is based on the existing implementation of
247 vhost for the Linux Kernel. Most messages that can be sent via the
248 Unix domain socket implementing vhost-user have an equivalent ioctl to
249 the kernel implementation.
251 The communication consists of *master* sending message requests and
252 *slave* sending message replies. Most of the requests don't require
253 replies. Here is a list of the ones that do:
255 * ``VHOST_USER_GET_FEATURES``
256 * ``VHOST_USER_GET_PROTOCOL_FEATURES``
257 * ``VHOST_USER_GET_VRING_BASE``
258 * ``VHOST_USER_SET_LOG_BASE`` (if ``VHOST_USER_PROTOCOL_F_LOG_SHMFD``)
259 * ``VHOST_USER_GET_INFLIGHT_FD`` (if ``VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD``)
263 :ref:`REPLY_ACK <reply_ack>`
264 The section on ``REPLY_ACK`` protocol extension.
266 There are several messages that the master sends with file descriptors passed
267 in the ancillary data:
269 * ``VHOST_USER_SET_MEM_TABLE``
270 * ``VHOST_USER_SET_LOG_BASE`` (if ``VHOST_USER_PROTOCOL_F_LOG_SHMFD``)
271 * ``VHOST_USER_SET_LOG_FD``
272 * ``VHOST_USER_SET_VRING_KICK``
273 * ``VHOST_USER_SET_VRING_CALL``
274 * ``VHOST_USER_SET_VRING_ERR``
275 * ``VHOST_USER_SET_SLAVE_REQ_FD``
276 * ``VHOST_USER_SET_INFLIGHT_FD`` (if ``VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD``)
278 If *master* is unable to send the full message or receives a wrong
279 reply it will close the connection. An optional reconnection mechanism
282 Any protocol extensions are gated by protocol feature bits, which
283 allows full backwards compatibility on both master and slave. As
284 older slaves don't support negotiating protocol features, a feature
285 bit was dedicated for this purpose::
287 #define VHOST_USER_F_PROTOCOL_FEATURES 30
289 Starting and stopping rings
290 ---------------------------
292 Client must only process each ring when it is started.
294 Client must only pass data between the ring and the backend, when the
297 If ring is started but disabled, client must process the ring without
298 talking to the backend.
300 For example, for a networking device, in the disabled state client
301 must not supply any new RX packets, but must process and discard any
304 If ``VHOST_USER_F_PROTOCOL_FEATURES`` has not been negotiated, the
305 ring is initialized in an enabled state.
307 If ``VHOST_USER_F_PROTOCOL_FEATURES`` has been negotiated, the ring is
308 initialized in a disabled state. Client must not pass data to/from the
309 backend until ring is enabled by ``VHOST_USER_SET_VRING_ENABLE`` with
310 parameter 1, or after it has been disabled by
311 ``VHOST_USER_SET_VRING_ENABLE`` with parameter 0.
313 Each ring is initialized in a stopped state, client must not process
314 it until ring is started, or after it has been stopped.
316 Client must start ring upon receiving a kick (that is, detecting that
317 file descriptor is readable) on the descriptor specified by
318 ``VHOST_USER_SET_VRING_KICK``, and stop ring upon receiving
319 ``VHOST_USER_GET_VRING_BASE``.
321 While processing the rings (whether they are enabled or not), client
322 must support changing some configuration aspects on the fly.
324 Multiple queue support
325 ----------------------
327 Multiple queue is treated as a protocol extension, hence the slave has
328 to implement protocol features first. The multiple queues feature is
329 supported only when the protocol feature ``VHOST_USER_PROTOCOL_F_MQ``
332 The max number of queue pairs the slave supports can be queried with
333 message ``VHOST_USER_GET_QUEUE_NUM``. Master should stop when the
334 number of requested queues is bigger than that.
336 As all queues share one connection, the master uses a unique index for each
337 queue in the sent message to identify a specified queue. One queue pair
338 is enabled initially. More queues are enabled dynamically, by sending
339 message ``VHOST_USER_SET_VRING_ENABLE``.
344 During live migration, the master may need to track the modifications
345 the slave makes to the memory mapped regions. The client should mark
346 the dirty pages in a log. Once it complies to this logging, it may
347 declare the ``VHOST_F_LOG_ALL`` vhost feature.
349 To start/stop logging of data/used ring writes, server may send
350 messages ``VHOST_USER_SET_FEATURES`` with ``VHOST_F_LOG_ALL`` and
351 ``VHOST_USER_SET_VRING_ADDR`` with ``VHOST_VRING_F_LOG`` in ring's
352 flags set to 1/0, respectively.
354 All the modifications to memory pointed by vring "descriptor" should
355 be marked. Modifications to "used" vring should be marked if
356 ``VHOST_VRING_F_LOG`` is part of ring's flags.
358 Dirty pages are of size::
360 #define VHOST_LOG_PAGE 0x1000
362 The log memory fd is provided in the ancillary data of
363 ``VHOST_USER_SET_LOG_BASE`` message when the slave has
364 ``VHOST_USER_PROTOCOL_F_LOG_SHMFD`` protocol feature.
366 The size of the log is supplied as part of ``VhostUserMsg`` which
367 should be large enough to cover all known guest addresses. Log starts
368 at the supplied offset in the supplied file descriptor. The log
369 covers from address 0 to the maximum of guest regions. In pseudo-code,
370 to mark page at ``addr`` as dirty::
372 page = addr / VHOST_LOG_PAGE
373 log[page / 8] |= 1 << page % 8
375 Where ``addr`` is the guest physical address.
377 Use atomic operations, as the log may be concurrently manipulated.
379 Note that when logging modifications to the used ring (when
380 ``VHOST_VRING_F_LOG`` is set for this ring), ``log_guest_addr`` should
381 be used to calculate the log offset: the write to first byte of the
382 used ring is logged at this offset from log start. Also note that this
383 value might be outside the legal guest physical address range
384 (i.e. does not have to be covered by the ``VhostUserMemory`` table), but
385 the bit offset of the last byte of the ring must fall within the size
386 supplied by ``VhostUserLog``.
388 ``VHOST_USER_SET_LOG_FD`` is an optional message with an eventfd in
389 ancillary data, it may be used to inform the master that the log has
392 Once the source has finished migration, rings will be stopped by the
393 source. No further update must be done before rings are restarted.
395 In postcopy migration the slave is started before all the memory has
396 been received from the source host, and care must be taken to avoid
397 accessing pages that have yet to be received. The slave opens a
398 'userfault'-fd and registers the memory with it; this fd is then
399 passed back over to the master. The master services requests on the
400 userfaultfd for pages that are accessed and when the page is available
401 it performs WAKE ioctl's on the userfaultfd to wake the stalled
402 slave. The client indicates support for this via the
403 ``VHOST_USER_PROTOCOL_F_PAGEFAULT`` feature.
408 The master sends a list of vhost memory regions to the slave using the
409 ``VHOST_USER_SET_MEM_TABLE`` message. Each region has two base
410 addresses: a guest address and a user address.
412 Messages contain guest addresses and/or user addresses to reference locations
413 within the shared memory. The mapping of these addresses works as follows.
415 User addresses map to the vhost memory region containing that user address.
417 When the ``VIRTIO_F_IOMMU_PLATFORM`` feature has not been negotiated:
419 * Guest addresses map to the vhost memory region containing that guest
422 When the ``VIRTIO_F_IOMMU_PLATFORM`` feature has been negotiated:
424 * Guest addresses are also called I/O virtual addresses (IOVAs). They are
425 translated to user addresses via the IOTLB.
427 * The vhost memory region guest address is not used.
432 When the ``VIRTIO_F_IOMMU_PLATFORM`` feature has been negotiated, the
433 master sends IOTLB entries update & invalidation by sending
434 ``VHOST_USER_IOTLB_MSG`` requests to the slave with a ``struct
435 vhost_iotlb_msg`` as payload. For update events, the ``iotlb`` payload
436 has to be filled with the update message type (2), the I/O virtual
437 address, the size, the user virtual address, and the permissions
438 flags. Addresses and size must be within vhost memory regions set via
439 the ``VHOST_USER_SET_MEM_TABLE`` request. For invalidation events, the
440 ``iotlb`` payload has to be filled with the invalidation message type
441 (3), the I/O virtual address and the size. On success, the slave is
442 expected to reply with a zero payload, non-zero otherwise.
444 The slave relies on the slave communcation channel (see :ref:`Slave
445 communication <slave_communication>` section below) to send IOTLB miss
446 and access failure events, by sending ``VHOST_USER_SLAVE_IOTLB_MSG``
447 requests to the master with a ``struct vhost_iotlb_msg`` as
448 payload. For miss events, the iotlb payload has to be filled with the
449 miss message type (1), the I/O virtual address and the permissions
450 flags. For access failure event, the iotlb payload has to be filled
451 with the access failure message type (4), the I/O virtual address and
452 the permissions flags. For synchronization purpose, the slave may
453 rely on the reply-ack feature, so the master may send a reply when
454 operation is completed if the reply-ack feature is negotiated and
455 slaves requests a reply. For miss events, completed operation means
456 either master sent an update message containing the IOTLB entry
457 containing requested address and permission, or master sent nothing if
458 the IOTLB miss message is invalid (invalid IOVA or permission).
460 The master isn't expected to take the initiative to send IOTLB update
461 messages, as the slave sends IOTLB miss messages for the guest virtual
462 memory areas it needs to access.
464 .. _slave_communication:
469 An optional communication channel is provided if the slave declares
470 ``VHOST_USER_PROTOCOL_F_SLAVE_REQ`` protocol feature, to allow the
471 slave to make requests to the master.
473 The fd is provided via ``VHOST_USER_SET_SLAVE_REQ_FD`` ancillary data.
475 A slave may then send ``VHOST_USER_SLAVE_*`` messages to the master
476 using this fd communication channel.
478 If ``VHOST_USER_PROTOCOL_F_SLAVE_SEND_FD`` protocol feature is
479 negotiated, slave can send file descriptors (at most 8 descriptors in
480 each message) to master via ancillary data using this fd communication
483 Inflight I/O tracking
484 ---------------------
486 To support reconnecting after restart or crash, slave may need to
487 resubmit inflight I/Os. If virtqueue is processed in order, we can
488 easily achieve that by getting the inflight descriptors from
489 descriptor table (split virtqueue) or descriptor ring (packed
490 virtqueue). However, it can't work when we process descriptors
491 out-of-order because some entries which store the information of
492 inflight descriptors in available ring (split virtqueue) or descriptor
493 ring (packed virtqueue) might be overrided by new entries. To solve
494 this problem, slave need to allocate an extra buffer to store this
495 information of inflight descriptors and share it with master for
496 persistent. ``VHOST_USER_GET_INFLIGHT_FD`` and
497 ``VHOST_USER_SET_INFLIGHT_FD`` are used to transfer this buffer
498 between master and slave. And the format of this buffer is described
501 +---------------+---------------+-----+---------------+
502 | queue0 region | queue1 region | ... | queueN region |
503 +---------------+---------------+-----+---------------+
505 N is the number of available virtqueues. Slave could get it from num
506 queues field of ``VhostUserInflight``.
508 For split virtqueue, queue region can be implemented as:
512 typedef struct DescStateSplit {
513 /* Indicate whether this descriptor is inflight or not.
514 * Only available for head-descriptor. */
520 /* Maintain a list for the last batch of used descriptors.
521 * Only available when batching is used for submitting */
524 /* Used to preserve the order of fetching available descriptors.
525 * Only available for head-descriptor. */
529 typedef struct QueueRegionSplit {
530 /* The feature flags of this region. Now it's initialized to 0. */
533 /* The version of this region. It's 1 currently.
534 * Zero value indicates an uninitialized buffer */
537 /* The size of DescStateSplit array. It's equal to the virtqueue
538 * size. Slave could get it from queue size field of VhostUserInflight. */
541 /* The head of list that track the last batch of used descriptors. */
542 uint16_t last_batch_head;
544 /* Store the idx value of used ring */
547 /* Used to track the state of each descriptor in descriptor table */
548 DescStateSplit desc[0];
551 To track inflight I/O, the queue region should be processed as follows:
553 When receiving available buffers from the driver:
555 #. Get the next available head-descriptor index from available ring, ``i``
557 #. Set ``desc[i].counter`` to the value of global counter
559 #. Increase global counter by 1
561 #. Set ``desc[i].inflight`` to 1
563 When supplying used buffers to the driver:
565 1. Get corresponding used head-descriptor index, i
567 2. Set ``desc[i].next`` to ``last_batch_head``
569 3. Set ``last_batch_head`` to ``i``
571 #. Steps 1,2,3 may be performed repeatedly if batching is possible
573 #. Increase the ``idx`` value of used ring by the size of the batch
575 #. Set the ``inflight`` field of each ``DescStateSplit`` entry in the batch to 0
577 #. Set ``used_idx`` to the ``idx`` value of used ring
581 #. If the value of ``used_idx`` does not match the ``idx`` value of
582 used ring (means the inflight field of ``DescStateSplit`` entries in
583 last batch may be incorrect),
585 a. Subtract the value of ``used_idx`` from the ``idx`` value of
586 used ring to get last batch size of ``DescStateSplit`` entries
588 #. Set the ``inflight`` field of each ``DescStateSplit`` entry to 0 in last batch
589 list which starts from ``last_batch_head``
591 #. Set ``used_idx`` to the ``idx`` value of used ring
593 #. Resubmit inflight ``DescStateSplit`` entries in order of their
596 For packed virtqueue, queue region can be implemented as:
600 typedef struct DescStatePacked {
601 /* Indicate whether this descriptor is inflight or not.
602 * Only available for head-descriptor. */
608 /* Link to the next free entry */
611 /* Link to the last entry of descriptor list.
612 * Only available for head-descriptor. */
615 /* The length of descriptor list.
616 * Only available for head-descriptor. */
619 /* Used to preserve the order of fetching available descriptors.
620 * Only available for head-descriptor. */
626 /* The descriptor flags */
629 /* The buffer length */
632 /* The buffer address */
636 typedef struct QueueRegionPacked {
637 /* The feature flags of this region. Now it's initialized to 0. */
640 /* The version of this region. It's 1 currently.
641 * Zero value indicates an uninitialized buffer */
644 /* The size of DescStatePacked array. It's equal to the virtqueue
645 * size. Slave could get it from queue size field of VhostUserInflight. */
648 /* The head of free DescStatePacked entry list */
651 /* The old head of free DescStatePacked entry list */
652 uint16_t old_free_head;
654 /* The used index of descriptor ring */
657 /* The old used index of descriptor ring */
658 uint16_t old_used_idx;
660 /* Device ring wrap counter */
661 uint8_t used_wrap_counter;
663 /* The old device ring wrap counter */
664 uint8_t old_used_wrap_counter;
669 /* Used to track the state of each descriptor fetched from descriptor ring */
670 DescStatePacked desc[0];
673 To track inflight I/O, the queue region should be processed as follows:
675 When receiving available buffers from the driver:
677 #. Get the next available descriptor entry from descriptor ring, ``d``
679 #. If ``d`` is head descriptor,
681 a. Set ``desc[old_free_head].num`` to 0
683 #. Set ``desc[old_free_head].counter`` to the value of global counter
685 #. Increase global counter by 1
687 #. Set ``desc[old_free_head].inflight`` to 1
689 #. If ``d`` is last descriptor, set ``desc[old_free_head].last`` to
692 #. Increase ``desc[old_free_head].num`` by 1
694 #. Set ``desc[free_head].addr``, ``desc[free_head].len``,
695 ``desc[free_head].flags``, ``desc[free_head].id`` to ``d.addr``,
696 ``d.len``, ``d.flags``, ``d.id``
698 #. Set ``free_head`` to ``desc[free_head].next``
700 #. If ``d`` is last descriptor, set ``old_free_head`` to ``free_head``
702 When supplying used buffers to the driver:
704 1. Get corresponding used head-descriptor entry from descriptor ring,
707 2. Get corresponding ``DescStatePacked`` entry, ``e``
709 3. Set ``desc[e.last].next`` to ``free_head``
711 4. Set ``free_head`` to the index of ``e``
713 #. Steps 1,2,3,4 may be performed repeatedly if batching is possible
715 #. Increase ``used_idx`` by the size of the batch and update
716 ``used_wrap_counter`` if needed
718 #. Update ``d.flags``
720 #. Set the ``inflight`` field of each head ``DescStatePacked`` entry
723 #. Set ``old_free_head``, ``old_used_idx``, ``old_used_wrap_counter``
724 to ``free_head``, ``used_idx``, ``used_wrap_counter``
728 #. If ``used_idx`` does not match ``old_used_idx`` (means the
729 ``inflight`` field of ``DescStatePacked`` entries in last batch may
732 a. Get the next descriptor ring entry through ``old_used_idx``, ``d``
734 #. Use ``old_used_wrap_counter`` to calculate the available flags
736 #. If ``d.flags`` is not equal to the calculated flags value (means
737 slave has submitted the buffer to guest driver before crash, so
738 it has to commit the in-progres update), set ``old_free_head``,
739 ``old_used_idx``, ``old_used_wrap_counter`` to ``free_head``,
740 ``used_idx``, ``used_wrap_counter``
742 #. Set ``free_head``, ``used_idx``, ``used_wrap_counter`` to
743 ``old_free_head``, ``old_used_idx``, ``old_used_wrap_counter``
744 (roll back any in-progress update)
746 #. Set the ``inflight`` field of each ``DescStatePacked`` entry in
749 #. Resubmit inflight ``DescStatePacked`` entries in order of their
757 #define VHOST_USER_PROTOCOL_F_MQ 0
758 #define VHOST_USER_PROTOCOL_F_LOG_SHMFD 1
759 #define VHOST_USER_PROTOCOL_F_RARP 2
760 #define VHOST_USER_PROTOCOL_F_REPLY_ACK 3
761 #define VHOST_USER_PROTOCOL_F_MTU 4
762 #define VHOST_USER_PROTOCOL_F_SLAVE_REQ 5
763 #define VHOST_USER_PROTOCOL_F_CROSS_ENDIAN 6
764 #define VHOST_USER_PROTOCOL_F_CRYPTO_SESSION 7
765 #define VHOST_USER_PROTOCOL_F_PAGEFAULT 8
766 #define VHOST_USER_PROTOCOL_F_CONFIG 9
767 #define VHOST_USER_PROTOCOL_F_SLAVE_SEND_FD 10
768 #define VHOST_USER_PROTOCOL_F_HOST_NOTIFIER 11
769 #define VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD 12
774 ``VHOST_USER_GET_FEATURES``
776 :equivalent ioctl: ``VHOST_GET_FEATURES``
778 :slave payload: ``u64``
780 Get from the underlying vhost implementation the features bitmask.
781 Feature bit ``VHOST_USER_F_PROTOCOL_FEATURES`` signals slave support
782 for ``VHOST_USER_GET_PROTOCOL_FEATURES`` and
783 ``VHOST_USER_SET_PROTOCOL_FEATURES``.
785 ``VHOST_USER_SET_FEATURES``
787 :equivalent ioctl: ``VHOST_SET_FEATURES``
788 :master payload: ``u64``
790 Enable features in the underlying vhost implementation using a
791 bitmask. Feature bit ``VHOST_USER_F_PROTOCOL_FEATURES`` signals
792 slave support for ``VHOST_USER_GET_PROTOCOL_FEATURES`` and
793 ``VHOST_USER_SET_PROTOCOL_FEATURES``.
795 ``VHOST_USER_GET_PROTOCOL_FEATURES``
797 :equivalent ioctl: ``VHOST_GET_FEATURES``
799 :slave payload: ``u64``
801 Get the protocol feature bitmask from the underlying vhost
802 implementation. Only legal if feature bit
803 ``VHOST_USER_F_PROTOCOL_FEATURES`` is present in
804 ``VHOST_USER_GET_FEATURES``.
807 Slave that reported ``VHOST_USER_F_PROTOCOL_FEATURES`` must
808 support this message even before ``VHOST_USER_SET_FEATURES`` was
811 ``VHOST_USER_SET_PROTOCOL_FEATURES``
813 :equivalent ioctl: ``VHOST_SET_FEATURES``
814 :master payload: ``u64``
816 Enable protocol features in the underlying vhost implementation.
818 Only legal if feature bit ``VHOST_USER_F_PROTOCOL_FEATURES`` is present in
819 ``VHOST_USER_GET_FEATURES``.
822 Slave that reported ``VHOST_USER_F_PROTOCOL_FEATURES`` must support
823 this message even before ``VHOST_USER_SET_FEATURES`` was called.
825 ``VHOST_USER_SET_OWNER``
827 :equivalent ioctl: ``VHOST_SET_OWNER``
830 Issued when a new connection is established. It sets the current
831 *master* as an owner of the session. This can be used on the *slave*
832 as a "session start" flag.
834 ``VHOST_USER_RESET_OWNER``
838 .. admonition:: Deprecated
840 This is no longer used. Used to be sent to request disabling all
841 rings, but some clients interpreted it to also discard connection
842 state (this interpretation would lead to bugs). It is recommended
843 that clients either ignore this message, or use it to disable all
846 ``VHOST_USER_SET_MEM_TABLE``
848 :equivalent ioctl: ``VHOST_SET_MEM_TABLE``
849 :master payload: memory regions description
850 :slave payload: (postcopy only) memory regions description
852 Sets the memory map regions on the slave so it can translate the
853 vring addresses. In the ancillary data there is an array of file
854 descriptors for each memory mapped region. The size and ordering of
855 the fds matches the number and ordering of memory regions.
857 When ``VHOST_USER_POSTCOPY_LISTEN`` has been received,
858 ``SET_MEM_TABLE`` replies with the bases of the memory mapped
859 regions to the master. The slave must have mmap'd the regions but
860 not yet accessed them and should not yet generate a userfault
864 ``NEED_REPLY_MASK`` is not set in this case. QEMU will then
865 reply back to the list of mappings with an empty
866 ``VHOST_USER_SET_MEM_TABLE`` as an acknowledgement; only upon
867 reception of this message may the guest start accessing the memory
868 and generating faults.
870 ``VHOST_USER_SET_LOG_BASE``
872 :equivalent ioctl: ``VHOST_SET_LOG_BASE``
876 Sets logging shared memory space.
878 When slave has ``VHOST_USER_PROTOCOL_F_LOG_SHMFD`` protocol feature,
879 the log memory fd is provided in the ancillary data of
880 ``VHOST_USER_SET_LOG_BASE`` message, the size and offset of shared
881 memory area provided in the message.
883 ``VHOST_USER_SET_LOG_FD``
885 :equivalent ioctl: ``VHOST_SET_LOG_FD``
888 Sets the logging file descriptor, which is passed as ancillary data.
890 ``VHOST_USER_SET_VRING_NUM``
892 :equivalent ioctl: ``VHOST_SET_VRING_NUM``
893 :master payload: vring state description
895 Set the size of the queue.
897 ``VHOST_USER_SET_VRING_ADDR``
899 :equivalent ioctl: ``VHOST_SET_VRING_ADDR``
900 :master payload: vring address description
903 Sets the addresses of the different aspects of the vring.
905 ``VHOST_USER_SET_VRING_BASE``
907 :equivalent ioctl: ``VHOST_SET_VRING_BASE``
908 :master payload: vring state description
910 Sets the base offset in the available vring.
912 ``VHOST_USER_GET_VRING_BASE``
914 :equivalent ioctl: ``VHOST_USER_GET_VRING_BASE``
915 :master payload: vring state description
916 :slave payload: vring state description
918 Get the available vring base offset.
920 ``VHOST_USER_SET_VRING_KICK``
922 :equivalent ioctl: ``VHOST_SET_VRING_KICK``
923 :master payload: ``u64``
925 Set the event file descriptor for adding buffers to the vring. It is
926 passed in the ancillary data.
928 Bits (0-7) of the payload contain the vring index. Bit 8 is the
929 invalid FD flag. This flag is set when there is no file descriptor
930 in the ancillary data. This signals that polling should be used
931 instead of waiting for a kick.
933 ``VHOST_USER_SET_VRING_CALL``
935 :equivalent ioctl: ``VHOST_SET_VRING_CALL``
936 :master payload: ``u64``
938 Set the event file descriptor to signal when buffers are used. It is
939 passed in the ancillary data.
941 Bits (0-7) of the payload contain the vring index. Bit 8 is the
942 invalid FD flag. This flag is set when there is no file descriptor
943 in the ancillary data. This signals that polling will be used
944 instead of waiting for the call.
946 ``VHOST_USER_SET_VRING_ERR``
948 :equivalent ioctl: ``VHOST_SET_VRING_ERR``
949 :master payload: ``u64``
951 Set the event file descriptor to signal when error occurs. It is
952 passed in the ancillary data.
954 Bits (0-7) of the payload contain the vring index. Bit 8 is the
955 invalid FD flag. This flag is set when there is no file descriptor
956 in the ancillary data.
958 ``VHOST_USER_GET_QUEUE_NUM``
960 :equivalent ioctl: N/A
964 Query how many queues the backend supports.
966 This request should be sent only when ``VHOST_USER_PROTOCOL_F_MQ``
967 is set in queried protocol features by
968 ``VHOST_USER_GET_PROTOCOL_FEATURES``.
970 ``VHOST_USER_SET_VRING_ENABLE``
972 :equivalent ioctl: N/A
973 :master payload: vring state description
975 Signal slave to enable or disable corresponding vring.
977 This request should be sent only when
978 ``VHOST_USER_F_PROTOCOL_FEATURES`` has been negotiated.
980 ``VHOST_USER_SEND_RARP``
982 :equivalent ioctl: N/A
983 :master payload: ``u64``
985 Ask vhost user backend to broadcast a fake RARP to notify the migration
986 is terminated for guest that does not support GUEST_ANNOUNCE.
988 Only legal if feature bit ``VHOST_USER_F_PROTOCOL_FEATURES`` is
989 present in ``VHOST_USER_GET_FEATURES`` and protocol feature bit
990 ``VHOST_USER_PROTOCOL_F_RARP`` is present in
991 ``VHOST_USER_GET_PROTOCOL_FEATURES``. The first 6 bytes of the
992 payload contain the mac address of the guest to allow the vhost user
993 backend to construct and broadcast the fake RARP.
995 ``VHOST_USER_NET_SET_MTU``
997 :equivalent ioctl: N/A
998 :master payload: ``u64``
1000 Set host MTU value exposed to the guest.
1002 This request should be sent only when ``VIRTIO_NET_F_MTU`` feature
1003 has been successfully negotiated, ``VHOST_USER_F_PROTOCOL_FEATURES``
1004 is present in ``VHOST_USER_GET_FEATURES`` and protocol feature bit
1005 ``VHOST_USER_PROTOCOL_F_NET_MTU`` is present in
1006 ``VHOST_USER_GET_PROTOCOL_FEATURES``.
1008 If ``VHOST_USER_PROTOCOL_F_REPLY_ACK`` is negotiated, slave must
1009 respond with zero in case the specified MTU is valid, or non-zero
1012 ``VHOST_USER_SET_SLAVE_REQ_FD``
1014 :equivalent ioctl: N/A
1015 :master payload: N/A
1017 Set the socket file descriptor for slave initiated requests. It is passed
1018 in the ancillary data.
1020 This request should be sent only when
1021 ``VHOST_USER_F_PROTOCOL_FEATURES`` has been negotiated, and protocol
1022 feature bit ``VHOST_USER_PROTOCOL_F_SLAVE_REQ`` bit is present in
1023 ``VHOST_USER_GET_PROTOCOL_FEATURES``. If
1024 ``VHOST_USER_PROTOCOL_F_REPLY_ACK`` is negotiated, slave must
1025 respond with zero for success, non-zero otherwise.
1027 ``VHOST_USER_IOTLB_MSG``
1029 :equivalent ioctl: N/A (equivalent to ``VHOST_IOTLB_MSG`` message type)
1030 :master payload: ``struct vhost_iotlb_msg``
1031 :slave payload: ``u64``
1033 Send IOTLB messages with ``struct vhost_iotlb_msg`` as payload.
1035 Master sends such requests to update and invalidate entries in the
1036 device IOTLB. The slave has to acknowledge the request with sending
1037 zero as ``u64`` payload for success, non-zero otherwise.
1039 This request should be send only when ``VIRTIO_F_IOMMU_PLATFORM``
1040 feature has been successfully negotiated.
1042 ``VHOST_USER_SET_VRING_ENDIAN``
1044 :equivalent ioctl: ``VHOST_SET_VRING_ENDIAN``
1045 :master payload: vring state description
1047 Set the endianness of a VQ for legacy devices. Little-endian is
1048 indicated with state.num set to 0 and big-endian is indicated with
1049 state.num set to 1. Other values are invalid.
1051 This request should be sent only when
1052 ``VHOST_USER_PROTOCOL_F_CROSS_ENDIAN`` has been negotiated.
1053 Backends that negotiated this feature should handle both
1054 endiannesses and expect this message once (per VQ) during device
1055 configuration (ie. before the master starts the VQ).
1057 ``VHOST_USER_GET_CONFIG``
1059 :equivalent ioctl: N/A
1060 :master payload: virtio device config space
1061 :slave payload: virtio device config space
1063 When ``VHOST_USER_PROTOCOL_F_CONFIG`` is negotiated, this message is
1064 submitted by the vhost-user master to fetch the contents of the
1065 virtio device configuration space, vhost-user slave's payload size
1066 MUST match master's request, vhost-user slave uses zero length of
1067 payload to indicate an error to vhost-user master. The vhost-user
1068 master may cache the contents to avoid repeated
1069 ``VHOST_USER_GET_CONFIG`` calls.
1071 ``VHOST_USER_SET_CONFIG``
1073 :equivalent ioctl: N/A
1074 :master payload: virtio device config space
1077 When ``VHOST_USER_PROTOCOL_F_CONFIG`` is negotiated, this message is
1078 submitted by the vhost-user master when the Guest changes the virtio
1079 device configuration space and also can be used for live migration
1080 on the destination host. The vhost-user slave must check the flags
1081 field, and slaves MUST NOT accept SET_CONFIG for read-only
1082 configuration space fields unless the live migration bit is set.
1084 ``VHOST_USER_CREATE_CRYPTO_SESSION``
1086 :equivalent ioctl: N/A
1087 :master payload: crypto session description
1088 :slave payload: crypto session description
1090 Create a session for crypto operation. The server side must return
1091 the session id, 0 or positive for success, negative for failure.
1092 This request should be sent only when
1093 ``VHOST_USER_PROTOCOL_F_CRYPTO_SESSION`` feature has been
1094 successfully negotiated. It's a required feature for crypto
1097 ``VHOST_USER_CLOSE_CRYPTO_SESSION``
1099 :equivalent ioctl: N/A
1100 :master payload: ``u64``
1102 Close a session for crypto operation which was previously
1103 created by ``VHOST_USER_CREATE_CRYPTO_SESSION``.
1105 This request should be sent only when
1106 ``VHOST_USER_PROTOCOL_F_CRYPTO_SESSION`` feature has been
1107 successfully negotiated. It's a required feature for crypto
1110 ``VHOST_USER_POSTCOPY_ADVISE``
1112 :master payload: N/A
1113 :slave payload: userfault fd
1115 When ``VHOST_USER_PROTOCOL_F_PAGEFAULT`` is supported, the master
1116 advises slave that a migration with postcopy enabled is underway,
1117 the slave must open a userfaultfd for later use. Note that at this
1118 stage the migration is still in precopy mode.
1120 ``VHOST_USER_POSTCOPY_LISTEN``
1122 :master payload: N/A
1124 Master advises slave that a transition to postcopy mode has
1125 happened. The slave must ensure that shared memory is registered
1126 with userfaultfd to cause faulting of non-present pages.
1128 This is always sent sometime after a ``VHOST_USER_POSTCOPY_ADVISE``,
1129 and thus only when ``VHOST_USER_PROTOCOL_F_PAGEFAULT`` is supported.
1131 ``VHOST_USER_POSTCOPY_END``
1133 :slave payload: ``u64``
1135 Master advises that postcopy migration has now completed. The slave
1136 must disable the userfaultfd. The response is an acknowledgement
1139 When ``VHOST_USER_PROTOCOL_F_PAGEFAULT`` is supported, this message
1140 is sent at the end of the migration, after
1141 ``VHOST_USER_POSTCOPY_LISTEN`` was previously sent.
1143 The value returned is an error indication; 0 is success.
1145 ``VHOST_USER_GET_INFLIGHT_FD``
1147 :equivalent ioctl: N/A
1148 :master payload: inflight description
1150 When ``VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD`` protocol feature has
1151 been successfully negotiated, this message is submitted by master to
1152 get a shared buffer from slave. The shared buffer will be used to
1153 track inflight I/O by slave. QEMU should retrieve a new one when vm
1156 ``VHOST_USER_SET_INFLIGHT_FD``
1158 :equivalent ioctl: N/A
1159 :master payload: inflight description
1161 When ``VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD`` protocol feature has
1162 been successfully negotiated, this message is submitted by master to
1163 send the shared inflight buffer back to slave so that slave could
1164 get inflight I/O after a crash or restart.
1169 ``VHOST_USER_SLAVE_IOTLB_MSG``
1171 :equivalent ioctl: N/A (equivalent to ``VHOST_IOTLB_MSG`` message type)
1172 :slave payload: ``struct vhost_iotlb_msg``
1173 :master payload: N/A
1175 Send IOTLB messages with ``struct vhost_iotlb_msg`` as payload.
1176 Slave sends such requests to notify of an IOTLB miss, or an IOTLB
1177 access failure. If ``VHOST_USER_PROTOCOL_F_REPLY_ACK`` is
1178 negotiated, and slave set the ``VHOST_USER_NEED_REPLY`` flag, master
1179 must respond with zero when operation is successfully completed, or
1180 non-zero otherwise. This request should be send only when
1181 ``VIRTIO_F_IOMMU_PLATFORM`` feature has been successfully
1184 ``VHOST_USER_SLAVE_CONFIG_CHANGE_MSG``
1186 :equivalent ioctl: N/A
1188 :master payload: N/A
1190 When ``VHOST_USER_PROTOCOL_F_CONFIG`` is negotiated, vhost-user
1191 slave sends such messages to notify that the virtio device's
1192 configuration space has changed, for those host devices which can
1193 support such feature, host driver can send ``VHOST_USER_GET_CONFIG``
1194 message to slave to get the latest content. If
1195 ``VHOST_USER_PROTOCOL_F_REPLY_ACK`` is negotiated, and slave set the
1196 ``VHOST_USER_NEED_REPLY`` flag, master must respond with zero when
1197 operation is successfully completed, or non-zero otherwise.
1199 ``VHOST_USER_SLAVE_VRING_HOST_NOTIFIER_MSG``
1201 :equivalent ioctl: N/A
1202 :slave payload: vring area description
1203 :master payload: N/A
1205 Sets host notifier for a specified queue. The queue index is
1206 contained in the ``u64`` field of the vring area description. The
1207 host notifier is described by the file descriptor (typically it's a
1208 VFIO device fd) which is passed as ancillary data and the size
1209 (which is mmap size and should be the same as host page size) and
1210 offset (which is mmap offset) carried in the vring area
1211 description. QEMU can mmap the file descriptor based on the size and
1212 offset to get a memory range. Registering a host notifier means
1213 mapping this memory range to the VM as the specified queue's notify
1214 MMIO region. Slave sends this request to tell QEMU to de-register
1215 the existing notifier if any and register the new notifier if the
1216 request is sent with a file descriptor.
1218 This request should be sent only when
1219 ``VHOST_USER_PROTOCOL_F_HOST_NOTIFIER`` protocol feature has been
1220 successfully negotiated.
1224 VHOST_USER_PROTOCOL_F_REPLY_ACK
1225 -------------------------------
1227 The original vhost-user specification only demands replies for certain
1228 commands. This differs from the vhost protocol implementation where
1229 commands are sent over an ``ioctl()`` call and block until the client
1232 With this protocol extension negotiated, the sender (QEMU) can set the
1233 ``need_reply`` [Bit 3] flag to any command. This indicates that the
1234 client MUST respond with a Payload ``VhostUserMsg`` indicating success
1235 or failure. The payload should be set to zero on success or non-zero
1236 on failure, unless the message already has an explicit reply body.
1238 The response payload gives QEMU a deterministic indication of the result
1239 of the command. Today, QEMU is expected to terminate the main vhost-user
1240 loop upon receiving such errors. In future, qemu could be taught to be more
1241 resilient for selective requests.
1243 For the message types that already solicit a reply from the client,
1244 the presence of ``VHOST_USER_PROTOCOL_F_REPLY_ACK`` or need_reply bit
1245 being set brings no behavioural change. (See the Communication_
1246 section for details.)
1248 .. _backend_conventions:
1250 Backend program conventions
1251 ===========================
1253 vhost-user backends can provide various devices & services and may
1254 need to be configured manually depending on the use case. However, it
1255 is a good idea to follow the conventions listed here when
1256 possible. Users, QEMU or libvirt, can then rely on some common
1257 behaviour to avoid heterogenous configuration and management of the
1258 backend programs and facilitate interoperability.
1260 Each backend installed on a host system should come with at least one
1261 JSON file that conforms to the vhost-user.json schema. Each file
1262 informs the management applications about the backend type, and binary
1263 location. In addition, it defines rules for management apps for
1264 picking the highest priority backend when multiple match the search
1265 criteria (see ``@VhostUserBackend`` documentation in the schema file).
1267 If the backend is not capable of enabling a requested feature on the
1268 host (such as 3D acceleration with virgl), or the initialization
1269 failed, the backend should fail to start early and exit with a status
1270 != 0. It may also print a message to stderr for further details.
1272 The backend program must not daemonize itself, but it may be
1273 daemonized by the management layer. It may also have a restricted
1274 access to the system.
1276 File descriptors 0, 1 and 2 will exist, and have regular
1277 stdin/stdout/stderr usage (they may have been redirected to /dev/null
1278 by the management layer, or to a log handler).
1280 The backend program must end (as quickly and cleanly as possible) when
1281 the SIGTERM signal is received. Eventually, it may receive SIGKILL by
1282 the management layer after a few seconds.
1284 The following command line options have an expected behaviour. They
1285 are mandatory, unless explicitly said differently:
1289 This option specify the location of the vhost-user Unix domain socket.
1290 It is incompatible with --fd.
1294 When this argument is given, the backend program is started with the
1295 vhost-user socket as file descriptor FDNUM. It is incompatible with
1298 --print-capabilities
1300 Output to stdout the backend capabilities in JSON format, and then
1301 exit successfully. Other options and arguments should be ignored, and
1302 the backend program should not perform its normal function. The
1303 capabilities can be reported dynamically depending on the host
1306 The JSON output is described in the ``vhost-user.json`` schema, by
1307 ```@VHostUserBackendCapabilities``. Example:
1322 Command line options:
1326 Specify the linux input device.
1332 Do no request exclusive access to the input device.
1339 Command line options:
1343 Specify the GPU DRM render node.
1349 Enable virgl rendering support.