xref: /linux/include/uapi/linux/vhost.h (revision 399f4dae683a719eeeca8f30d3871577b53ffcca)
16f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2607ca46eSDavid Howells #ifndef _LINUX_VHOST_H
3607ca46eSDavid Howells #define _LINUX_VHOST_H
4607ca46eSDavid Howells /* Userspace interface for in-kernel virtio accelerators. */
5607ca46eSDavid Howells 
6607ca46eSDavid Howells /* vhost is used to reduce the number of system calls involved in virtio.
7607ca46eSDavid Howells  *
8607ca46eSDavid Howells  * Existing virtio net code is used in the guest without modification.
9607ca46eSDavid Howells  *
10607ca46eSDavid Howells  * This header includes interface used by userspace hypervisor for
11607ca46eSDavid Howells  * device configuration.
12607ca46eSDavid Howells  */
13607ca46eSDavid Howells 
144b867132SPaolo Bonzini #include <linux/vhost_types.h>
15607ca46eSDavid Howells #include <linux/types.h>
16607ca46eSDavid Howells #include <linux/ioctl.h>
17607ca46eSDavid Howells 
18776f3950SZhu Lingshan #define VHOST_FILE_UNBIND -1
19776f3950SZhu Lingshan 
20607ca46eSDavid Howells /* ioctls */
21607ca46eSDavid Howells 
22607ca46eSDavid Howells #define VHOST_VIRTIO 0xAF
23607ca46eSDavid Howells 
24607ca46eSDavid Howells /* Features bitmask for forward compatibility.  Transport bits are used for
25607ca46eSDavid Howells  * vhost specific features. */
26607ca46eSDavid Howells #define VHOST_GET_FEATURES	_IOR(VHOST_VIRTIO, 0x00, __u64)
27607ca46eSDavid Howells #define VHOST_SET_FEATURES	_IOW(VHOST_VIRTIO, 0x00, __u64)
28607ca46eSDavid Howells 
29607ca46eSDavid Howells /* Set current process as the (exclusive) owner of this file descriptor.  This
30607ca46eSDavid Howells  * must be called before any other vhost command.  Further calls to
31607ca46eSDavid Howells  * VHOST_OWNER_SET fail until VHOST_OWNER_RESET is called. */
32607ca46eSDavid Howells #define VHOST_SET_OWNER _IO(VHOST_VIRTIO, 0x01)
33607ca46eSDavid Howells /* Give up ownership, and reset the device to default values.
34607ca46eSDavid Howells  * Allows subsequent call to VHOST_OWNER_SET to succeed. */
35607ca46eSDavid Howells #define VHOST_RESET_OWNER _IO(VHOST_VIRTIO, 0x02)
36607ca46eSDavid Howells 
37607ca46eSDavid Howells /* Set up/modify memory layout */
38607ca46eSDavid Howells #define VHOST_SET_MEM_TABLE	_IOW(VHOST_VIRTIO, 0x03, struct vhost_memory)
39607ca46eSDavid Howells 
40607ca46eSDavid Howells /* Write logging setup. */
41607ca46eSDavid Howells /* Memory writes can optionally be logged by setting bit at an offset
42607ca46eSDavid Howells  * (calculated from the physical address) from specified log base.
43607ca46eSDavid Howells  * The bit is set using an atomic 32 bit operation. */
44607ca46eSDavid Howells /* Set base address for logging. */
45607ca46eSDavid Howells #define VHOST_SET_LOG_BASE _IOW(VHOST_VIRTIO, 0x04, __u64)
46607ca46eSDavid Howells /* Specify an eventfd file descriptor to signal on log write. */
47607ca46eSDavid Howells #define VHOST_SET_LOG_FD _IOW(VHOST_VIRTIO, 0x07, int)
48c1ecd8e9SMike Christie /* By default, a device gets one vhost_worker that its virtqueues share. This
49c1ecd8e9SMike Christie  * command allows the owner of the device to create an additional vhost_worker
50c1ecd8e9SMike Christie  * for the device. It can later be bound to 1 or more of its virtqueues using
51c1ecd8e9SMike Christie  * the VHOST_ATTACH_VRING_WORKER command.
52c1ecd8e9SMike Christie  *
53c1ecd8e9SMike Christie  * This must be called after VHOST_SET_OWNER and the caller must be the owner
54c1ecd8e9SMike Christie  * of the device. The new thread will inherit caller's cgroups and namespaces,
55c1ecd8e9SMike Christie  * and will share the caller's memory space. The new thread will also be
56c1ecd8e9SMike Christie  * counted against the caller's RLIMIT_NPROC value.
57c1ecd8e9SMike Christie  *
58c1ecd8e9SMike Christie  * The worker's ID used in other commands will be returned in
59c1ecd8e9SMike Christie  * vhost_worker_state.
60c1ecd8e9SMike Christie  */
61c1ecd8e9SMike Christie #define VHOST_NEW_WORKER _IOR(VHOST_VIRTIO, 0x8, struct vhost_worker_state)
62c1ecd8e9SMike Christie /* Free a worker created with VHOST_NEW_WORKER if it's not attached to any
63c1ecd8e9SMike Christie  * virtqueue. If userspace is not able to call this for workers its created,
64c1ecd8e9SMike Christie  * the kernel will free all the device's workers when the device is closed.
65c1ecd8e9SMike Christie  */
66c1ecd8e9SMike Christie #define VHOST_FREE_WORKER _IOW(VHOST_VIRTIO, 0x9, struct vhost_worker_state)
67607ca46eSDavid Howells 
68607ca46eSDavid Howells /* Ring setup. */
69607ca46eSDavid Howells /* Set number of descriptors in ring. This parameter can not
70607ca46eSDavid Howells  * be modified while ring is running (bound to a device). */
71607ca46eSDavid Howells #define VHOST_SET_VRING_NUM _IOW(VHOST_VIRTIO, 0x10, struct vhost_vring_state)
72607ca46eSDavid Howells /* Set addresses for the ring. */
73607ca46eSDavid Howells #define VHOST_SET_VRING_ADDR _IOW(VHOST_VIRTIO, 0x11, struct vhost_vring_addr)
74607ca46eSDavid Howells /* Base value where queue looks for available descriptors */
75607ca46eSDavid Howells #define VHOST_SET_VRING_BASE _IOW(VHOST_VIRTIO, 0x12, struct vhost_vring_state)
76607ca46eSDavid Howells /* Get accessor: reads index, writes value in num */
77607ca46eSDavid Howells #define VHOST_GET_VRING_BASE _IOWR(VHOST_VIRTIO, 0x12, struct vhost_vring_state)
78607ca46eSDavid Howells 
792751c988SGreg Kurz /* Set the vring byte order in num. Valid values are VHOST_VRING_LITTLE_ENDIAN
802751c988SGreg Kurz  * or VHOST_VRING_BIG_ENDIAN (other values return -EINVAL).
812751c988SGreg Kurz  * The byte order cannot be changed while the device is active: trying to do so
822751c988SGreg Kurz  * returns -EBUSY.
832751c988SGreg Kurz  * This is a legacy only API that is simply ignored when VIRTIO_F_VERSION_1 is
842751c988SGreg Kurz  * set.
852751c988SGreg Kurz  * Not all kernel configurations support this ioctl, but all configurations that
862751c988SGreg Kurz  * support SET also support GET.
872751c988SGreg Kurz  */
882751c988SGreg Kurz #define VHOST_VRING_LITTLE_ENDIAN 0
892751c988SGreg Kurz #define VHOST_VRING_BIG_ENDIAN 1
902751c988SGreg Kurz #define VHOST_SET_VRING_ENDIAN _IOW(VHOST_VIRTIO, 0x13, struct vhost_vring_state)
912751c988SGreg Kurz #define VHOST_GET_VRING_ENDIAN _IOW(VHOST_VIRTIO, 0x14, struct vhost_vring_state)
92c1ecd8e9SMike Christie /* Attach a vhost_worker created with VHOST_NEW_WORKER to one of the device's
93228a27cfSMike Christie  * virtqueues.
94c1ecd8e9SMike Christie  *
95c1ecd8e9SMike Christie  * This will replace the virtqueue's existing worker. If the replaced worker
96c1ecd8e9SMike Christie  * is no longer attached to any virtqueues, it can be freed with
97c1ecd8e9SMike Christie  * VHOST_FREE_WORKER.
98c1ecd8e9SMike Christie  */
99c1ecd8e9SMike Christie #define VHOST_ATTACH_VRING_WORKER _IOW(VHOST_VIRTIO, 0x15,		\
100c1ecd8e9SMike Christie 				       struct vhost_vring_worker)
101c1ecd8e9SMike Christie /* Return the vring worker's ID */
102c1ecd8e9SMike Christie #define VHOST_GET_VRING_WORKER _IOWR(VHOST_VIRTIO, 0x16,		\
103c1ecd8e9SMike Christie 				     struct vhost_vring_worker)
1042751c988SGreg Kurz 
105607ca46eSDavid Howells /* The following ioctls use eventfd file descriptors to signal and poll
106607ca46eSDavid Howells  * for events. */
107607ca46eSDavid Howells 
108607ca46eSDavid Howells /* Set eventfd to poll for added buffers */
109607ca46eSDavid Howells #define VHOST_SET_VRING_KICK _IOW(VHOST_VIRTIO, 0x20, struct vhost_vring_file)
110607ca46eSDavid Howells /* Set eventfd to signal when buffers have beed used */
111607ca46eSDavid Howells #define VHOST_SET_VRING_CALL _IOW(VHOST_VIRTIO, 0x21, struct vhost_vring_file)
112607ca46eSDavid Howells /* Set eventfd to signal an error */
113607ca46eSDavid Howells #define VHOST_SET_VRING_ERR _IOW(VHOST_VIRTIO, 0x22, struct vhost_vring_file)
11403088137SJason Wang /* Set busy loop timeout (in us) */
11503088137SJason Wang #define VHOST_SET_VRING_BUSYLOOP_TIMEOUT _IOW(VHOST_VIRTIO, 0x23,	\
11603088137SJason Wang 					 struct vhost_vring_state)
11703088137SJason Wang /* Get busy loop timeout (in us) */
11803088137SJason Wang #define VHOST_GET_VRING_BUSYLOOP_TIMEOUT _IOW(VHOST_VIRTIO, 0x24,	\
11903088137SJason Wang 					 struct vhost_vring_state)
120607ca46eSDavid Howells 
121429711aeSJason Wang /* Set or get vhost backend capability */
122429711aeSJason Wang 
123429711aeSJason Wang #define VHOST_SET_BACKEND_FEATURES _IOW(VHOST_VIRTIO, 0x25, __u64)
124c48300c9SGleb Fotengauer-Malinovskiy #define VHOST_GET_BACKEND_FEATURES _IOR(VHOST_VIRTIO, 0x26, __u64)
125429711aeSJason Wang 
126607ca46eSDavid Howells /* VHOST_NET specific defines */
127607ca46eSDavid Howells 
128607ca46eSDavid Howells /* Attach virtio net ring to a raw socket, or tap device.
129607ca46eSDavid Howells  * The socket must be already bound to an ethernet device, this device will be
130607ca46eSDavid Howells  * used for transmit.  Pass fd -1 to unbind from the socket and the transmit
131607ca46eSDavid Howells  * device.  This can be used to stop the ring (e.g. for migration). */
132607ca46eSDavid Howells #define VHOST_NET_SET_BACKEND _IOW(VHOST_VIRTIO, 0x30, struct vhost_vring_file)
133607ca46eSDavid Howells 
1344b867132SPaolo Bonzini /* VHOST_SCSI specific defines */
1355012a3a3SMichael S. Tsirkin 
1365012a3a3SMichael S. Tsirkin #define VHOST_SCSI_SET_ENDPOINT _IOW(VHOST_VIRTIO, 0x40, struct vhost_scsi_target)
1375012a3a3SMichael S. Tsirkin #define VHOST_SCSI_CLEAR_ENDPOINT _IOW(VHOST_VIRTIO, 0x41, struct vhost_scsi_target)
1385012a3a3SMichael S. Tsirkin /* Changing this breaks userspace. */
1395012a3a3SMichael S. Tsirkin #define VHOST_SCSI_GET_ABI_VERSION _IOW(VHOST_VIRTIO, 0x42, int)
1405012a3a3SMichael S. Tsirkin /* Set and get the events missed flag */
1415012a3a3SMichael S. Tsirkin #define VHOST_SCSI_SET_EVENTS_MISSED _IOW(VHOST_VIRTIO, 0x43, __u32)
1425012a3a3SMichael S. Tsirkin #define VHOST_SCSI_GET_EVENTS_MISSED _IOW(VHOST_VIRTIO, 0x44, __u32)
1435012a3a3SMichael S. Tsirkin 
144433fc58eSAsias He /* VHOST_VSOCK specific defines */
145433fc58eSAsias He 
146433fc58eSAsias He #define VHOST_VSOCK_SET_GUEST_CID	_IOW(VHOST_VIRTIO, 0x60, __u64)
147433fc58eSAsias He #define VHOST_VSOCK_SET_RUNNING		_IOW(VHOST_VIRTIO, 0x61, int)
148433fc58eSAsias He 
1494c8cf318STiwei Bie /* VHOST_VDPA specific defines */
1504c8cf318STiwei Bie 
1514c8cf318STiwei Bie /* Get the device id. The device ids follow the same definition of
1524c8cf318STiwei Bie  * the device id defined in virtio-spec.
1534c8cf318STiwei Bie  */
1544c8cf318STiwei Bie #define VHOST_VDPA_GET_DEVICE_ID	_IOR(VHOST_VIRTIO, 0x70, __u32)
1554c8cf318STiwei Bie /* Get and set the status. The status bits follow the same definition
1564c8cf318STiwei Bie  * of the device status defined in virtio-spec.
1574c8cf318STiwei Bie  */
1584c8cf318STiwei Bie #define VHOST_VDPA_GET_STATUS		_IOR(VHOST_VIRTIO, 0x71, __u8)
1594c8cf318STiwei Bie #define VHOST_VDPA_SET_STATUS		_IOW(VHOST_VIRTIO, 0x72, __u8)
1604c8cf318STiwei Bie /* Get and set the device config. The device config follows the same
1614c8cf318STiwei Bie  * definition of the device config defined in virtio-spec.
1624c8cf318STiwei Bie  */
1634c8cf318STiwei Bie #define VHOST_VDPA_GET_CONFIG		_IOR(VHOST_VIRTIO, 0x73, \
1644c8cf318STiwei Bie 					     struct vhost_vdpa_config)
1654c8cf318STiwei Bie #define VHOST_VDPA_SET_CONFIG		_IOW(VHOST_VIRTIO, 0x74, \
1664c8cf318STiwei Bie 					     struct vhost_vdpa_config)
1674c8cf318STiwei Bie /* Enable/disable the ring. */
1684c8cf318STiwei Bie #define VHOST_VDPA_SET_VRING_ENABLE	_IOW(VHOST_VIRTIO, 0x75, \
1694c8cf318STiwei Bie 					     struct vhost_vring_state)
1704c8cf318STiwei Bie /* Get the max ring size. */
1714c8cf318STiwei Bie #define VHOST_VDPA_GET_VRING_NUM	_IOR(VHOST_VIRTIO, 0x76, __u16)
1724c8cf318STiwei Bie 
173776f3950SZhu Lingshan /* Set event fd for config interrupt*/
174776f3950SZhu Lingshan #define VHOST_VDPA_SET_CONFIG_CALL	_IOW(VHOST_VIRTIO, 0x77, int)
1751b48dc03SJason Wang 
1761b48dc03SJason Wang /* Get the valid iova range */
1771b48dc03SJason Wang #define VHOST_VDPA_GET_IOVA_RANGE	_IOR(VHOST_VIRTIO, 0x78, \
1781b48dc03SJason Wang 					     struct vhost_vdpa_iova_range)
179a61280ddSLongpeng /* Get the config size */
180a61280ddSLongpeng #define VHOST_VDPA_GET_CONFIG_SIZE	_IOR(VHOST_VIRTIO, 0x79, __u32)
181a61280ddSLongpeng 
182a0c95f20SGautam Dawar /* Get the number of address spaces. */
183a0c95f20SGautam Dawar #define VHOST_VDPA_GET_AS_NUM		_IOR(VHOST_VIRTIO, 0x7A, unsigned int)
1842d1fcb77SGautam Dawar 
1852d1fcb77SGautam Dawar /* Get the group for a virtqueue: read index, write group in num,
1862d1fcb77SGautam Dawar  * The virtqueue index is stored in the index field of
1872d1fcb77SGautam Dawar  * vhost_vring_state. The group for this specific virtqueue is
1882d1fcb77SGautam Dawar  * returned via num field of vhost_vring_state.
1892d1fcb77SGautam Dawar  */
1902d1fcb77SGautam Dawar #define VHOST_VDPA_GET_VRING_GROUP	_IOWR(VHOST_VIRTIO, 0x7B,	\
1912d1fcb77SGautam Dawar 					      struct vhost_vring_state)
19284d7c8fdSGautam Dawar /* Set the ASID for a virtqueue group. The group index is stored in
19384d7c8fdSGautam Dawar  * the index field of vhost_vring_state, the ASID associated with this
19484d7c8fdSGautam Dawar  * group is stored at num field of vhost_vring_state.
19584d7c8fdSGautam Dawar  */
19684d7c8fdSGautam Dawar #define VHOST_VDPA_SET_GROUP_ASID	_IOW(VHOST_VIRTIO, 0x7C, \
19784d7c8fdSGautam Dawar 					     struct vhost_vring_state)
19884d7c8fdSGautam Dawar 
199f345a014SEugenio Pérez /* Suspend a device so it does not process virtqueue requests anymore
200f345a014SEugenio Pérez  *
201f345a014SEugenio Pérez  * After the return of ioctl the device must preserve all the necessary state
202f345a014SEugenio Pérez  * (the virtqueue vring base plus the possible device specific states) that is
203f345a014SEugenio Pérez  * required for restoring in the future. The device must not change its
204f345a014SEugenio Pérez  * configuration after that point.
205f345a014SEugenio Pérez  */
206f345a014SEugenio Pérez #define VHOST_VDPA_SUSPEND		_IO(VHOST_VIRTIO, 0x7D)
207f345a014SEugenio Pérez 
2083b688d7aSSebastien Boeuf /* Resume a device so it can resume processing virtqueue requests
2093b688d7aSSebastien Boeuf  *
2103b688d7aSSebastien Boeuf  * After the return of this ioctl the device will have restored all the
2113b688d7aSSebastien Boeuf  * necessary states and it is fully operational to continue processing the
2123b688d7aSSebastien Boeuf  * virtqueue descriptors.
2133b688d7aSSebastien Boeuf  */
2143b688d7aSSebastien Boeuf #define VHOST_VDPA_RESUME		_IO(VHOST_VIRTIO, 0x7E)
2153b688d7aSSebastien Boeuf 
216c8068d9bSSi-Wei Liu /* Get the group for the descriptor table including driver & device areas
217c8068d9bSSi-Wei Liu  * of a virtqueue: read index, write group in num.
218c8068d9bSSi-Wei Liu  * The virtqueue index is stored in the index field of vhost_vring_state.
219c8068d9bSSi-Wei Liu  * The group ID of the descriptor table for this specific virtqueue
220c8068d9bSSi-Wei Liu  * is returned via num field of vhost_vring_state.
221c8068d9bSSi-Wei Liu  */
222c8068d9bSSi-Wei Liu #define VHOST_VDPA_GET_VRING_DESC_GROUP	_IOWR(VHOST_VIRTIO, 0x7F,	\
223c8068d9bSSi-Wei Liu 					      struct vhost_vring_state)
2241496c470SZhu Lingshan 
225*2855c2a7SMichael S. Tsirkin 
226*2855c2a7SMichael S. Tsirkin /* Get the count of all virtqueues */
227*2855c2a7SMichael S. Tsirkin #define VHOST_VDPA_GET_VQS_COUNT	_IOR(VHOST_VIRTIO, 0x80, __u32)
228*2855c2a7SMichael S. Tsirkin 
229*2855c2a7SMichael S. Tsirkin /* Get the number of virtqueue groups. */
230*2855c2a7SMichael S. Tsirkin #define VHOST_VDPA_GET_GROUP_NUM	_IOR(VHOST_VIRTIO, 0x81, __u32)
231*2855c2a7SMichael S. Tsirkin 
2321496c470SZhu Lingshan /* Get the queue size of a specific virtqueue.
2331496c470SZhu Lingshan  * userspace set the vring index in vhost_vring_state.index
2341496c470SZhu Lingshan  * kernel set the queue size in vhost_vring_state.num
2351496c470SZhu Lingshan  */
236*2855c2a7SMichael S. Tsirkin #define VHOST_VDPA_GET_VRING_SIZE	_IOWR(VHOST_VIRTIO, 0x82,	\
2371496c470SZhu Lingshan 					      struct vhost_vring_state)
238607ca46eSDavid Howells #endif
239