vhost.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. #ifndef _LINUX_VHOST_H
  2. #define _LINUX_VHOST_H
  3. /* Userspace interface for in-kernel virtio accelerators. */
  4. /* vhost is used to reduce the number of system calls involved in virtio.
  5. *
  6. * Existing virtio net code is used in the guest without modification.
  7. *
  8. * This header includes interface used by userspace hypervisor for
  9. * device configuration.
  10. */
  11. #include <linux/types.h>
  12. #include <linux/ioctl.h>
  13. #include <linux/virtio_config.h>
  14. #include <linux/virtio_ring.h>
  15. struct vhost_vring_state {
  16. unsigned int index;
  17. unsigned int num;
  18. };
  19. struct vhost_vring_file {
  20. unsigned int index;
  21. int fd; /* Pass -1 to unbind from file. */
  22. };
  23. struct vhost_vring_addr {
  24. unsigned int index;
  25. /* Option flags. */
  26. unsigned int flags;
  27. /* Flag values: */
  28. /* Whether log address is valid. If set enables logging. */
  29. #define VHOST_VRING_F_LOG 0
  30. /* Start of array of descriptors (virtually contiguous) */
  31. __u64 desc_user_addr;
  32. /* Used structure address. Must be 32 bit aligned */
  33. __u64 used_user_addr;
  34. /* Available structure address. Must be 16 bit aligned */
  35. __u64 avail_user_addr;
  36. /* Logging support. */
  37. /* Log writes to used structure, at offset calculated from specified
  38. * address. Address must be 32 bit aligned. */
  39. __u64 log_guest_addr;
  40. };
  41. /* no alignment requirement */
  42. struct vhost_iotlb_msg {
  43. __u64 iova;
  44. __u64 size;
  45. __u64 uaddr;
  46. #define VHOST_ACCESS_RO 0x1
  47. #define VHOST_ACCESS_WO 0x2
  48. #define VHOST_ACCESS_RW 0x3
  49. __u8 perm;
  50. #define VHOST_IOTLB_MISS 1
  51. #define VHOST_IOTLB_UPDATE 2
  52. #define VHOST_IOTLB_INVALIDATE 3
  53. #define VHOST_IOTLB_ACCESS_FAIL 4
  54. __u8 type;
  55. };
  56. #define VHOST_IOTLB_MSG 0x1
  57. struct vhost_msg {
  58. int type;
  59. union {
  60. struct vhost_iotlb_msg iotlb;
  61. __u8 padding[64];
  62. };
  63. };
  64. struct vhost_memory_region {
  65. __u64 guest_phys_addr;
  66. __u64 memory_size; /* bytes */
  67. __u64 userspace_addr;
  68. __u64 flags_padding; /* No flags are currently specified. */
  69. };
  70. /* All region addresses and sizes must be 4K aligned. */
  71. #define VHOST_PAGE_SIZE 0x1000
  72. struct vhost_memory {
  73. __u32 nregions;
  74. __u32 padding;
  75. struct vhost_memory_region regions[0];
  76. };
  77. /* ioctls */
  78. #define VHOST_VIRTIO 0xAF
  79. /* Features bitmask for forward compatibility. Transport bits are used for
  80. * vhost specific features. */
  81. #define VHOST_GET_FEATURES _IOR(VHOST_VIRTIO, 0x00, __u64)
  82. #define VHOST_SET_FEATURES _IOW(VHOST_VIRTIO, 0x00, __u64)
  83. /* Set current process as the (exclusive) owner of this file descriptor. This
  84. * must be called before any other vhost command. Further calls to
  85. * VHOST_OWNER_SET fail until VHOST_OWNER_RESET is called. */
  86. #define VHOST_SET_OWNER _IO(VHOST_VIRTIO, 0x01)
  87. /* Give up ownership, and reset the device to default values.
  88. * Allows subsequent call to VHOST_OWNER_SET to succeed. */
  89. #define VHOST_RESET_OWNER _IO(VHOST_VIRTIO, 0x02)
  90. /* Set up/modify memory layout */
  91. #define VHOST_SET_MEM_TABLE _IOW(VHOST_VIRTIO, 0x03, struct vhost_memory)
  92. /* Write logging setup. */
  93. /* Memory writes can optionally be logged by setting bit at an offset
  94. * (calculated from the physical address) from specified log base.
  95. * The bit is set using an atomic 32 bit operation. */
  96. /* Set base address for logging. */
  97. #define VHOST_SET_LOG_BASE _IOW(VHOST_VIRTIO, 0x04, __u64)
  98. /* Specify an eventfd file descriptor to signal on log write. */
  99. #define VHOST_SET_LOG_FD _IOW(VHOST_VIRTIO, 0x07, int)
  100. /* Ring setup. */
  101. /* Set number of descriptors in ring. This parameter can not
  102. * be modified while ring is running (bound to a device). */
  103. #define VHOST_SET_VRING_NUM _IOW(VHOST_VIRTIO, 0x10, struct vhost_vring_state)
  104. /* Set addresses for the ring. */
  105. #define VHOST_SET_VRING_ADDR _IOW(VHOST_VIRTIO, 0x11, struct vhost_vring_addr)
  106. /* Base value where queue looks for available descriptors */
  107. #define VHOST_SET_VRING_BASE _IOW(VHOST_VIRTIO, 0x12, struct vhost_vring_state)
  108. /* Get accessor: reads index, writes value in num */
  109. #define VHOST_GET_VRING_BASE _IOWR(VHOST_VIRTIO, 0x12, struct vhost_vring_state)
  110. /* Set the vring byte order in num. Valid values are VHOST_VRING_LITTLE_ENDIAN
  111. * or VHOST_VRING_BIG_ENDIAN (other values return -EINVAL).
  112. * The byte order cannot be changed while the device is active: trying to do so
  113. * returns -EBUSY.
  114. * This is a legacy only API that is simply ignored when VIRTIO_F_VERSION_1 is
  115. * set.
  116. * Not all kernel configurations support this ioctl, but all configurations that
  117. * support SET also support GET.
  118. */
  119. #define VHOST_VRING_LITTLE_ENDIAN 0
  120. #define VHOST_VRING_BIG_ENDIAN 1
  121. #define VHOST_SET_VRING_ENDIAN _IOW(VHOST_VIRTIO, 0x13, struct vhost_vring_state)
  122. #define VHOST_GET_VRING_ENDIAN _IOW(VHOST_VIRTIO, 0x14, struct vhost_vring_state)
  123. /* The following ioctls use eventfd file descriptors to signal and poll
  124. * for events. */
  125. /* Set eventfd to poll for added buffers */
  126. #define VHOST_SET_VRING_KICK _IOW(VHOST_VIRTIO, 0x20, struct vhost_vring_file)
  127. /* Set eventfd to signal when buffers have beed used */
  128. #define VHOST_SET_VRING_CALL _IOW(VHOST_VIRTIO, 0x21, struct vhost_vring_file)
  129. /* Set eventfd to signal an error */
  130. #define VHOST_SET_VRING_ERR _IOW(VHOST_VIRTIO, 0x22, struct vhost_vring_file)
  131. /* Set busy loop timeout (in us) */
  132. #define VHOST_SET_VRING_BUSYLOOP_TIMEOUT _IOW(VHOST_VIRTIO, 0x23, \
  133. struct vhost_vring_state)
  134. /* Get busy loop timeout (in us) */
  135. #define VHOST_GET_VRING_BUSYLOOP_TIMEOUT _IOW(VHOST_VIRTIO, 0x24, \
  136. struct vhost_vring_state)
  137. /* VHOST_NET specific defines */
  138. /* Attach virtio net ring to a raw socket, or tap device.
  139. * The socket must be already bound to an ethernet device, this device will be
  140. * used for transmit. Pass fd -1 to unbind from the socket and the transmit
  141. * device. This can be used to stop the ring (e.g. for migration). */
  142. #define VHOST_NET_SET_BACKEND _IOW(VHOST_VIRTIO, 0x30, struct vhost_vring_file)
  143. /* Feature bits */
  144. /* Log all write descriptors. Can be changed while device is active. */
  145. #define VHOST_F_LOG_ALL 26
  146. /* vhost-net should add virtio_net_hdr for RX, and strip for TX packets. */
  147. #define VHOST_NET_F_VIRTIO_NET_HDR 27
  148. /* Vhost have device IOTLB */
  149. #define VHOST_F_DEVICE_IOTLB 63
  150. /* VHOST_SCSI specific definitions */
  151. /*
  152. * Used by QEMU userspace to ensure a consistent vhost-scsi ABI.
  153. *
  154. * ABI Rev 0: July 2012 version starting point for v3.6-rc merge candidate +
  155. * RFC-v2 vhost-scsi userspace. Add GET_ABI_VERSION ioctl usage
  156. * ABI Rev 1: January 2013. Ignore vhost_tpgt filed in struct vhost_scsi_target.
  157. * All the targets under vhost_wwpn can be seen and used by guset.
  158. */
  159. #define VHOST_SCSI_ABI_VERSION 1
  160. struct vhost_scsi_target {
  161. int abi_version;
  162. char vhost_wwpn[224]; /* TRANSPORT_IQN_LEN */
  163. unsigned short vhost_tpgt;
  164. unsigned short reserved;
  165. };
  166. #define VHOST_SCSI_SET_ENDPOINT _IOW(VHOST_VIRTIO, 0x40, struct vhost_scsi_target)
  167. #define VHOST_SCSI_CLEAR_ENDPOINT _IOW(VHOST_VIRTIO, 0x41, struct vhost_scsi_target)
  168. /* Changing this breaks userspace. */
  169. #define VHOST_SCSI_GET_ABI_VERSION _IOW(VHOST_VIRTIO, 0x42, int)
  170. /* Set and get the events missed flag */
  171. #define VHOST_SCSI_SET_EVENTS_MISSED _IOW(VHOST_VIRTIO, 0x43, __u32)
  172. #define VHOST_SCSI_GET_EVENTS_MISSED _IOW(VHOST_VIRTIO, 0x44, __u32)
  173. /* VHOST_VSOCK specific defines */
  174. #define VHOST_VSOCK_SET_GUEST_CID _IOW(VHOST_VIRTIO, 0x60, __u64)
  175. #define VHOST_VSOCK_SET_RUNNING _IOW(VHOST_VIRTIO, 0x61, int)
  176. #endif