virtio_ring.h 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. #ifndef _UAPI_LINUX_VIRTIO_RING_H
  2. #define _UAPI_LINUX_VIRTIO_RING_H
  3. /* An interface for efficient virtio implementation, currently for use by KVM,
  4. * but hopefully others soon. Do NOT change this since it will
  5. * break existing servers and clients.
  6. *
  7. * This header is BSD licensed so anyone can use the definitions to implement
  8. * compatible drivers/servers.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. * 3. Neither the name of IBM nor the names of its contributors
  19. * may be used to endorse or promote products derived from this software
  20. * without specific prior written permission.
  21. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
  22. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. * ARE DISCLAIMED. IN NO EVENT SHALL IBM OR CONTRIBUTORS BE LIABLE
  25. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. *
  33. * Copyright Rusty Russell IBM Corporation 2007. */
  34. #ifndef __KERNEL__
  35. #include <stdint.h>
  36. #endif
  37. #include <linux/types.h>
  38. #include <linux/virtio_types.h>
  39. /* This marks a buffer as continuing via the next field. */
  40. #define VRING_DESC_F_NEXT 1
  41. /* This marks a buffer as write-only (otherwise read-only). */
  42. #define VRING_DESC_F_WRITE 2
  43. /* This means the buffer contains a list of buffer descriptors. */
  44. #define VRING_DESC_F_INDIRECT 4
  45. /*
  46. * Mark a descriptor as available or used in packed ring.
  47. * Notice: they are defined as shifts instead of shifted values.
  48. */
  49. #define VRING_PACKED_DESC_F_AVAIL 7
  50. #define VRING_PACKED_DESC_F_USED 15
  51. /* The Host uses this in used->flags to advise the Guest: don't kick me when
  52. * you add a buffer. It's unreliable, so it's simply an optimization. Guest
  53. * will still kick if it's out of buffers. */
  54. #define VRING_USED_F_NO_NOTIFY 1
  55. /* The Guest uses this in avail->flags to advise the Host: don't interrupt me
  56. * when you consume a buffer. It's unreliable, so it's simply an
  57. * optimization. */
  58. #define VRING_AVAIL_F_NO_INTERRUPT 1
  59. /* Enable events in packed ring. */
  60. #define VRING_PACKED_EVENT_FLAG_ENABLE 0x0
  61. /* Disable events in packed ring. */
  62. #define VRING_PACKED_EVENT_FLAG_DISABLE 0x1
  63. /*
  64. * Enable events for a specific descriptor in packed ring.
  65. * (as specified by Descriptor Ring Change Event Offset/Wrap Counter).
  66. * Only valid if VIRTIO_RING_F_EVENT_IDX has been negotiated.
  67. */
  68. #define VRING_PACKED_EVENT_FLAG_DESC 0x2
  69. /*
  70. * Wrap counter bit shift in event suppression structure
  71. * of packed ring.
  72. */
  73. #define VRING_PACKED_EVENT_F_WRAP_CTR 15
  74. /* We support indirect buffer descriptors */
  75. #define VIRTIO_RING_F_INDIRECT_DESC 28
  76. /* The Guest publishes the used index for which it expects an interrupt
  77. * at the end of the avail ring. Host should ignore the avail->flags field. */
  78. /* The Host publishes the avail index for which it expects a kick
  79. * at the end of the used ring. Guest should ignore the used->flags field. */
  80. #define VIRTIO_RING_F_EVENT_IDX 29
  81. /* Alignment requirements for vring elements.
  82. * When using pre-virtio 1.0 layout, these fall out naturally.
  83. */
  84. #define VRING_AVAIL_ALIGN_SIZE 2
  85. #define VRING_USED_ALIGN_SIZE 4
  86. #define VRING_DESC_ALIGN_SIZE 16
  87. /**
  88. * struct vring_desc - Virtio ring descriptors,
  89. * 16 bytes long. These can chain together via @next.
  90. *
  91. * @addr: buffer address (guest-physical)
  92. * @len: buffer length
  93. * @flags: descriptor flags
  94. * @next: index of the next descriptor in the chain,
  95. * if the VRING_DESC_F_NEXT flag is set. We chain unused
  96. * descriptors via this, too.
  97. */
  98. struct vring_desc {
  99. __virtio64 addr;
  100. __virtio32 len;
  101. __virtio16 flags;
  102. __virtio16 next;
  103. };
  104. struct vring_avail {
  105. __virtio16 flags;
  106. __virtio16 idx;
  107. __virtio16 ring[];
  108. };
  109. /* u32 is used here for ids for padding reasons. */
  110. struct vring_used_elem {
  111. /* Index of start of used descriptor chain. */
  112. __virtio32 id;
  113. /* Total length of the descriptor chain which was used (written to) */
  114. __virtio32 len;
  115. };
  116. typedef struct vring_used_elem __attribute__((aligned(VRING_USED_ALIGN_SIZE)))
  117. vring_used_elem_t;
  118. struct vring_used {
  119. __virtio16 flags;
  120. __virtio16 idx;
  121. vring_used_elem_t ring[];
  122. };
  123. /*
  124. * The ring element addresses are passed between components with different
  125. * alignments assumptions. Thus, we might need to decrease the compiler-selected
  126. * alignment, and so must use a typedef to make sure the aligned attribute
  127. * actually takes hold:
  128. *
  129. * https://gcc.gnu.org/onlinedocs//gcc/Common-Type-Attributes.html#Common-Type-Attributes
  130. *
  131. * When used on a struct, or struct member, the aligned attribute can only
  132. * increase the alignment; in order to decrease it, the packed attribute must
  133. * be specified as well. When used as part of a typedef, the aligned attribute
  134. * can both increase and decrease alignment, and specifying the packed
  135. * attribute generates a warning.
  136. */
  137. typedef struct vring_desc __attribute__((aligned(VRING_DESC_ALIGN_SIZE)))
  138. vring_desc_t;
  139. typedef struct vring_avail __attribute__((aligned(VRING_AVAIL_ALIGN_SIZE)))
  140. vring_avail_t;
  141. typedef struct vring_used __attribute__((aligned(VRING_USED_ALIGN_SIZE)))
  142. vring_used_t;
  143. struct vring {
  144. unsigned int num;
  145. vring_desc_t *desc;
  146. vring_avail_t *avail;
  147. vring_used_t *used;
  148. };
  149. #ifndef VIRTIO_RING_NO_LEGACY
  150. /* The standard layout for the ring is a continuous chunk of memory which looks
  151. * like this. We assume num is a power of 2.
  152. *
  153. * struct vring
  154. * {
  155. * // The actual descriptors (16 bytes each)
  156. * struct vring_desc desc[num];
  157. *
  158. * // A ring of available descriptor heads with free-running index.
  159. * __virtio16 avail_flags;
  160. * __virtio16 avail_idx;
  161. * __virtio16 available[num];
  162. * __virtio16 used_event_idx;
  163. *
  164. * // Padding to the next align boundary.
  165. * char pad[];
  166. *
  167. * // A ring of used descriptor heads with free-running index.
  168. * __virtio16 used_flags;
  169. * __virtio16 used_idx;
  170. * struct vring_used_elem used[num];
  171. * __virtio16 avail_event_idx;
  172. * };
  173. */
  174. /* We publish the used event index at the end of the available ring, and vice
  175. * versa. They are at the end for backwards compatibility. */
  176. #define vring_used_event(vr) ((vr)->avail->ring[(vr)->num])
  177. #define vring_avail_event(vr) (*(__virtio16 *)&(vr)->used->ring[(vr)->num])
  178. static inline void vring_init(struct vring *vr, unsigned int num, void *p,
  179. unsigned long align)
  180. {
  181. vr->num = num;
  182. vr->desc = p;
  183. vr->avail = (struct vring_avail *)((char *)p + num * sizeof(struct vring_desc));
  184. vr->used = (void *)(((uintptr_t)&vr->avail->ring[num] + sizeof(__virtio16)
  185. + align-1) & ~(align - 1));
  186. }
  187. static inline unsigned vring_size(unsigned int num, unsigned long align)
  188. {
  189. return ((sizeof(struct vring_desc) * num + sizeof(__virtio16) * (3 + num)
  190. + align - 1) & ~(align - 1))
  191. + sizeof(__virtio16) * 3 + sizeof(struct vring_used_elem) * num;
  192. }
  193. #endif /* VIRTIO_RING_NO_LEGACY */
  194. /* The following is used with USED_EVENT_IDX and AVAIL_EVENT_IDX */
  195. /* Assuming a given event_idx value from the other side, if
  196. * we have just incremented index from old to new_idx,
  197. * should we trigger an event? */
  198. static inline int vring_need_event(__u16 event_idx, __u16 new_idx, __u16 old)
  199. {
  200. /* Note: Xen has similar logic for notification hold-off
  201. * in include/xen/interface/io/ring.h with req_event and req_prod
  202. * corresponding to event_idx + 1 and new_idx respectively.
  203. * Note also that req_event and req_prod in Xen start at 1,
  204. * event indexes in virtio start at 0. */
  205. return (__u16)(new_idx - event_idx - 1) < (__u16)(new_idx - old);
  206. }
  207. struct vring_packed_desc_event {
  208. /* Descriptor Ring Change Event Offset/Wrap Counter. */
  209. __le16 off_wrap;
  210. /* Descriptor Ring Change Event Flags. */
  211. __le16 flags;
  212. };
  213. struct vring_packed_desc {
  214. /* Buffer Address. */
  215. __le64 addr;
  216. /* Buffer Length. */
  217. __le32 len;
  218. /* Buffer ID. */
  219. __le16 id;
  220. /* The flags depending on descriptor type. */
  221. __le16 flags;
  222. };
  223. #endif /* _UAPI_LINUX_VIRTIO_RING_H */