DPDK  21.11.7
rte_vhost.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2017 Intel Corporation
3  */
4 
5 #ifndef _RTE_VHOST_H_
6 #define _RTE_VHOST_H_
7 
13 #include <stdbool.h>
14 #include <stdint.h>
15 #include <sys/eventfd.h>
16 
17 #include <rte_memory.h>
18 #include <rte_mempool.h>
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 #ifndef __cplusplus
25 /* These are not C++-aware. */
26 #include <linux/vhost.h>
27 #include <linux/virtio_ring.h>
28 #include <linux/virtio_net.h>
29 #endif
30 
31 #define RTE_VHOST_USER_CLIENT (1ULL << 0)
32 #define RTE_VHOST_USER_NO_RECONNECT (1ULL << 1)
33 #define RTE_VHOST_USER_RESERVED_1 (1ULL << 2)
34 #define RTE_VHOST_USER_IOMMU_SUPPORT (1ULL << 3)
35 #define RTE_VHOST_USER_POSTCOPY_SUPPORT (1ULL << 4)
36 /* support mbuf with external buffer attached */
37 #define RTE_VHOST_USER_EXTBUF_SUPPORT (1ULL << 5)
38 /* support only linear buffers (no chained mbufs) */
39 #define RTE_VHOST_USER_LINEARBUF_SUPPORT (1ULL << 6)
40 #define RTE_VHOST_USER_ASYNC_COPY (1ULL << 7)
41 #define RTE_VHOST_USER_NET_COMPLIANT_OL_FLAGS (1ULL << 8)
42 
43 /* Features. */
44 #ifndef VIRTIO_NET_F_GUEST_ANNOUNCE
45  #define VIRTIO_NET_F_GUEST_ANNOUNCE 21
46 #endif
47 
48 #ifndef VIRTIO_NET_F_MQ
49  #define VIRTIO_NET_F_MQ 22
50 #endif
51 
52 #ifndef VIRTIO_NET_F_MTU
53  #define VIRTIO_NET_F_MTU 3
54 #endif
55 
56 #ifndef VIRTIO_F_ANY_LAYOUT
57  #define VIRTIO_F_ANY_LAYOUT 27
58 #endif
59 
61 #ifndef VHOST_USER_PROTOCOL_F_MQ
62 #define VHOST_USER_PROTOCOL_F_MQ 0
63 #endif
64 
65 #ifndef VHOST_USER_PROTOCOL_F_LOG_SHMFD
66 #define VHOST_USER_PROTOCOL_F_LOG_SHMFD 1
67 #endif
68 
69 #ifndef VHOST_USER_PROTOCOL_F_RARP
70 #define VHOST_USER_PROTOCOL_F_RARP 2
71 #endif
72 
73 #ifndef VHOST_USER_PROTOCOL_F_REPLY_ACK
74 #define VHOST_USER_PROTOCOL_F_REPLY_ACK 3
75 #endif
76 
77 #ifndef VHOST_USER_PROTOCOL_F_NET_MTU
78 #define VHOST_USER_PROTOCOL_F_NET_MTU 4
79 #endif
80 
81 #ifndef VHOST_USER_PROTOCOL_F_SLAVE_REQ
82 #define VHOST_USER_PROTOCOL_F_SLAVE_REQ 5
83 #endif
84 
85 #ifndef VHOST_USER_PROTOCOL_F_CRYPTO_SESSION
86 #define VHOST_USER_PROTOCOL_F_CRYPTO_SESSION 7
87 #endif
88 
89 #ifndef VHOST_USER_PROTOCOL_F_PAGEFAULT
90 #define VHOST_USER_PROTOCOL_F_PAGEFAULT 8
91 #endif
92 
93 #ifndef VHOST_USER_PROTOCOL_F_CONFIG
94 #define VHOST_USER_PROTOCOL_F_CONFIG 9
95 #endif
96 
97 #ifndef VHOST_USER_PROTOCOL_F_SLAVE_SEND_FD
98 #define VHOST_USER_PROTOCOL_F_SLAVE_SEND_FD 10
99 #endif
100 
101 #ifndef VHOST_USER_PROTOCOL_F_HOST_NOTIFIER
102 #define VHOST_USER_PROTOCOL_F_HOST_NOTIFIER 11
103 #endif
104 
105 #ifndef VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD
106 #define VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD 12
107 #endif
108 
109 #ifndef VHOST_USER_PROTOCOL_F_STATUS
110 #define VHOST_USER_PROTOCOL_F_STATUS 16
111 #endif
112 
114 #ifndef VHOST_USER_F_PROTOCOL_FEATURES
115 #define VHOST_USER_F_PROTOCOL_FEATURES 30
116 #endif
117 
118 struct rte_vdpa_device;
119 
125  uint64_t guest_phys_addr;
126  uint64_t guest_user_addr;
127  uint64_t host_user_addr;
128  uint64_t size;
129  void *mmap_addr;
130  uint64_t mmap_size;
131  int fd;
132 };
133 
138  uint32_t nregions;
139  struct rte_vhost_mem_region regions[];
140 };
141 
142 struct rte_vhost_inflight_desc_split {
143  uint8_t inflight;
144  uint8_t padding[5];
145  uint16_t next;
146  uint64_t counter;
147 };
148 
149 struct rte_vhost_inflight_info_split {
150  uint64_t features;
151  uint16_t version;
152  uint16_t desc_num;
153  uint16_t last_inflight_io;
154  uint16_t used_idx;
155  struct rte_vhost_inflight_desc_split desc[0];
156 };
157 
158 struct rte_vhost_inflight_desc_packed {
159  uint8_t inflight;
160  uint8_t padding;
161  uint16_t next;
162  uint16_t last;
163  uint16_t num;
164  uint64_t counter;
165  uint16_t id;
166  uint16_t flags;
167  uint32_t len;
168  uint64_t addr;
169 };
170 
171 struct rte_vhost_inflight_info_packed {
172  uint64_t features;
173  uint16_t version;
174  uint16_t desc_num;
175  uint16_t free_head;
176  uint16_t old_free_head;
177  uint16_t used_idx;
178  uint16_t old_used_idx;
179  uint8_t used_wrap_counter;
180  uint8_t old_used_wrap_counter;
181  uint8_t padding[7];
182  struct rte_vhost_inflight_desc_packed desc[0];
183 };
184 
185 struct rte_vhost_resubmit_desc {
186  uint16_t index;
187  uint64_t counter;
188 };
189 
190 struct rte_vhost_resubmit_info {
191  struct rte_vhost_resubmit_desc *resubmit_list;
192  uint16_t resubmit_num;
193 };
194 
195 struct rte_vhost_ring_inflight {
196  union {
197  struct rte_vhost_inflight_info_split *inflight_split;
198  struct rte_vhost_inflight_info_packed *inflight_packed;
199  };
200 
201  struct rte_vhost_resubmit_info *resubmit_inflight;
202 };
203 
204 struct rte_vhost_vring {
205  union {
206  struct vring_desc *desc;
207  struct vring_packed_desc *desc_packed;
208  };
209  union {
210  struct vring_avail *avail;
211  struct vring_packed_desc_event *driver_event;
212  };
213  union {
214  struct vring_used *used;
215  struct vring_packed_desc_event *device_event;
216  };
217  uint64_t log_guest_addr;
218 
220  int callfd;
221 
222  int kickfd;
223  uint16_t size;
224 };
225 
230  /* Message handling failed */
231  RTE_VHOST_MSG_RESULT_ERR = -1,
232  /* Message handling successful */
233  RTE_VHOST_MSG_RESULT_OK = 0,
234  /* Message handling successful and reply prepared */
235  RTE_VHOST_MSG_RESULT_REPLY = 1,
236  /* Message not handled */
237  RTE_VHOST_MSG_RESULT_NOT_HANDLED,
238 };
239 
254 typedef enum rte_vhost_msg_result (*rte_vhost_msg_handle)(int vid, void *msg);
255 
260  /* Called prior to the master message handling. */
261  rte_vhost_msg_handle pre_msg_handle;
262  /* Called after the master message handling. */
263  rte_vhost_msg_handle post_msg_handle;
264 };
265 
270  int (*new_device)(int vid);
271  void (*destroy_device)(int vid);
273  int (*vring_state_changed)(int vid, uint16_t queue_id, int enable);
281  int (*features_changed)(int vid, uint64_t features);
282 
283  int (*new_connection)(int vid);
284  void (*destroy_connection)(int vid);
285 
292  void (*guest_notified)(int vid);
293 
294  void *reserved[1];
295 };
296 
302  volatile void *addr;
307  uint64_t val;
309  uint64_t mask;
313  uint8_t size;
319  uint8_t match;
320 };
321 
337 __rte_deprecated
338 static __rte_always_inline uint64_t
339 rte_vhost_gpa_to_vva(struct rte_vhost_memory *mem, uint64_t gpa)
340 {
341  struct rte_vhost_mem_region *reg;
342  uint32_t i;
343 
344  for (i = 0; i < mem->nregions; i++) {
345  reg = &mem->regions[i];
346  if (gpa >= reg->guest_phys_addr &&
347  gpa < reg->guest_phys_addr + reg->size) {
348  return gpa - reg->guest_phys_addr +
349  reg->host_user_addr;
350  }
351  }
352 
353  return 0;
354 }
355 
372 static __rte_always_inline uint64_t
374  uint64_t gpa, uint64_t *len)
375 {
376  struct rte_vhost_mem_region *r;
377  uint32_t i;
378 
379  for (i = 0; i < mem->nregions; i++) {
380  r = &mem->regions[i];
381  if (gpa >= r->guest_phys_addr &&
382  gpa < r->guest_phys_addr + r->size) {
383 
384  if (unlikely(*len > r->guest_phys_addr + r->size - gpa))
385  *len = r->guest_phys_addr + r->size - gpa;
386 
387  return gpa - r->guest_phys_addr +
388  r->host_user_addr;
389  }
390  }
391  *len = 0;
392 
393  return 0;
394 }
395 
396 #define RTE_VHOST_NEED_LOG(features) ((features) & (1ULL << VHOST_F_LOG_ALL))
397 
416 void rte_vhost_log_write(int vid, uint64_t addr, uint64_t len);
417 
436 void rte_vhost_log_used_vring(int vid, uint16_t vring_idx,
437  uint64_t offset, uint64_t len);
438 
439 int rte_vhost_enable_guest_notification(int vid, uint16_t queue_id, int enable);
440 
445 int rte_vhost_driver_register(const char *path, uint64_t flags);
446 
447 /* Unregister vhost driver. This is only meaningful to vhost user. */
448 int rte_vhost_driver_unregister(const char *path);
449 
460 int
461 rte_vhost_driver_attach_vdpa_device(const char *path,
462  struct rte_vdpa_device *dev);
463 
472 int
473 rte_vhost_driver_detach_vdpa_device(const char *path);
474 
483 struct rte_vdpa_device *
484 rte_vhost_driver_get_vdpa_device(const char *path);
485 
496 int rte_vhost_driver_set_features(const char *path, uint64_t features);
497 
513 int rte_vhost_driver_enable_features(const char *path, uint64_t features);
514 
527 int rte_vhost_driver_disable_features(const char *path, uint64_t features);
528 
539 int rte_vhost_driver_get_features(const char *path, uint64_t *features);
540 
551 int
553  uint64_t protocol_features);
554 
565 int
567  uint64_t *protocol_features);
568 
579 int
580 rte_vhost_driver_get_queue_num(const char *path, uint32_t *queue_num);
581 
592 int rte_vhost_get_negotiated_features(int vid, uint64_t *features);
593 
604 __rte_experimental
605 int
607  uint64_t *protocol_features);
608 
609 /* Register callbacks. */
610 int rte_vhost_driver_callback_register(const char *path,
611  struct rte_vhost_device_ops const * const ops);
612 
624 int rte_vhost_driver_start(const char *path);
625 
639 int rte_vhost_get_mtu(int vid, uint16_t *mtu);
640 
651 int rte_vhost_get_numa_node(int vid);
652 
667 __rte_deprecated
668 uint32_t rte_vhost_get_queue_num(int vid);
669 
679 uint16_t rte_vhost_get_vring_num(int vid);
680 
695 int rte_vhost_get_ifname(int vid, char *buf, size_t len);
696 
708 uint16_t rte_vhost_avail_entries(int vid, uint16_t queue_id);
709 
710 struct rte_mbuf;
711 struct rte_mempool;
728 uint16_t rte_vhost_enqueue_burst(int vid, uint16_t queue_id,
729  struct rte_mbuf **pkts, uint16_t count);
730 
748 uint16_t rte_vhost_dequeue_burst(int vid, uint16_t queue_id,
749  struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count);
750 
765 int rte_vhost_get_mem_table(int vid, struct rte_vhost_memory **mem);
766 
779 int rte_vhost_get_vhost_vring(int vid, uint16_t vring_idx,
780  struct rte_vhost_vring *vring);
781 
794 int
795 rte_vhost_get_vhost_ring_inflight(int vid, uint16_t vring_idx,
796  struct rte_vhost_ring_inflight *vring);
797 
813 int
814 rte_vhost_set_inflight_desc_split(int vid, uint16_t vring_idx,
815  uint16_t idx);
816 
835 int
836 rte_vhost_set_inflight_desc_packed(int vid, uint16_t vring_idx,
837  uint16_t head, uint16_t last, uint16_t *inflight_entry);
838 
851 int
853  uint16_t vring_idx, uint16_t idx);
854 
870 int
872  uint16_t vring_idx, uint16_t head);
873 
888 int
889 rte_vhost_clr_inflight_desc_split(int vid, uint16_t vring_idx,
890  uint16_t last_used_idx, uint16_t idx);
891 
904 int
905 rte_vhost_clr_inflight_desc_packed(int vid, uint16_t vring_idx,
906  uint16_t head);
907 
919 int rte_vhost_vring_call(int vid, uint16_t vring_idx);
920 
933 __rte_experimental
934 int rte_vhost_vring_call_nonblock(int vid, uint16_t vring_idx);
935 
946 uint32_t rte_vhost_rx_queue_count(int vid, uint16_t qid);
947 
960 __rte_experimental
961 int
962 rte_vhost_get_monitor_addr(int vid, uint16_t queue_id,
963  struct rte_vhost_power_monitor_cond *pmc);
964 
977 int
978 rte_vhost_get_log_base(int vid, uint64_t *log_base, uint64_t *log_size);
979 
994 int
995 rte_vhost_get_vring_base(int vid, uint16_t queue_id,
996  uint16_t *last_avail_idx, uint16_t *last_used_idx);
997 
1016 int
1018  uint16_t queue_id, uint16_t *last_avail_idx, uint16_t *last_used_idx);
1019 
1034 int
1035 rte_vhost_set_vring_base(int vid, uint16_t queue_id,
1036  uint16_t last_avail_idx, uint16_t last_used_idx);
1037 
1050 int
1052  struct rte_vhost_user_extern_ops const * const ops, void *ctx);
1053 
1062 struct rte_vdpa_device *
1063 rte_vhost_get_vdpa_device(int vid);
1064 
1075 __rte_experimental
1076 int
1077 rte_vhost_slave_config_change(int vid, bool need_reply);
1078 
1079 #ifdef __cplusplus
1080 }
1081 #endif
1082 
1083 #endif /* _RTE_VHOST_H_ */
static __rte_deprecated __rte_always_inline uint64_t rte_vhost_gpa_to_vva(struct rte_vhost_memory *mem, uint64_t gpa)
Definition: rte_vhost.h:339
int rte_vhost_driver_start(const char *path)
#define __rte_always_inline
Definition: rte_common.h:233
__rte_experimental int rte_vhost_get_negotiated_protocol_features(int vid, uint64_t *protocol_features)
int rte_vhost_driver_register(const char *path, uint64_t flags)
uint16_t rte_vhost_avail_entries(int vid, uint16_t queue_id)
int rte_vhost_driver_disable_features(const char *path, uint64_t features)
struct rte_vdpa_device * rte_vhost_get_vdpa_device(int vid)
void rte_vhost_log_used_vring(int vid, uint16_t vring_idx, uint64_t offset, uint64_t len)
int rte_vhost_get_vhost_vring(int vid, uint16_t vring_idx, struct rte_vhost_vring *vring)
int rte_vhost_set_inflight_desc_packed(int vid, uint16_t vring_idx, uint16_t head, uint16_t last, uint16_t *inflight_entry)
int rte_vhost_clr_inflight_desc_packed(int vid, uint16_t vring_idx, uint16_t head)
uint16_t rte_vhost_enqueue_burst(int vid, uint16_t queue_id, struct rte_mbuf **pkts, uint16_t count)
__rte_deprecated uint32_t rte_vhost_get_queue_num(int vid)
int rte_vhost_get_vhost_ring_inflight(int vid, uint16_t vring_idx, struct rte_vhost_ring_inflight *vring)
int rte_vhost_driver_get_protocol_features(const char *path, uint64_t *protocol_features)
int rte_vhost_set_last_inflight_io_packed(int vid, uint16_t vring_idx, uint16_t head)
int rte_vhost_get_mtu(int vid, uint16_t *mtu)
int rte_vhost_driver_detach_vdpa_device(const char *path)
int rte_vhost_driver_set_protocol_features(const char *path, uint64_t protocol_features)
__rte_experimental int rte_vhost_slave_config_change(int vid, bool need_reply)
static __rte_always_inline uint64_t rte_vhost_va_from_guest_pa(struct rte_vhost_memory *mem, uint64_t gpa, uint64_t *len)
Definition: rte_vhost.h:373
#define unlikely(x)
uint16_t rte_vhost_get_vring_num(int vid)
__rte_experimental int rte_vhost_vring_call_nonblock(int vid, uint16_t vring_idx)
int rte_vhost_extern_callback_register(int vid, struct rte_vhost_user_extern_ops const *const ops, void *ctx)
__rte_experimental int rte_vhost_get_monitor_addr(int vid, uint16_t queue_id, struct rte_vhost_power_monitor_cond *pmc)
int rte_vhost_get_numa_node(int vid)
int rte_vhost_set_inflight_desc_split(int vid, uint16_t vring_idx, uint16_t idx)
int rte_vhost_get_mem_table(int vid, struct rte_vhost_memory **mem)
int rte_vhost_driver_attach_vdpa_device(const char *path, struct rte_vdpa_device *dev)
int rte_vhost_set_last_inflight_io_split(int vid, uint16_t vring_idx, uint16_t idx)
int rte_vhost_vring_call(int vid, uint16_t vring_idx)
int rte_vhost_get_negotiated_features(int vid, uint64_t *features)
struct rte_vdpa_device * rte_vhost_driver_get_vdpa_device(const char *path)
rte_vhost_msg_result
Definition: rte_vhost.h:229
int rte_vhost_set_vring_base(int vid, uint16_t queue_id, uint16_t last_avail_idx, uint16_t last_used_idx)
int rte_vhost_clr_inflight_desc_split(int vid, uint16_t vring_idx, uint16_t last_used_idx, uint16_t idx)
int rte_vhost_get_log_base(int vid, uint64_t *log_base, uint64_t *log_size)
uint32_t rte_vhost_rx_queue_count(int vid, uint16_t qid)
uint16_t rte_vhost_dequeue_burst(int vid, uint16_t queue_id, struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count)
int rte_vhost_get_vring_base(int vid, uint16_t queue_id, uint16_t *last_avail_idx, uint16_t *last_used_idx)
int rte_vhost_driver_get_features(const char *path, uint64_t *features)
int rte_vhost_driver_get_queue_num(const char *path, uint32_t *queue_num)
int rte_vhost_driver_set_features(const char *path, uint64_t features)
int rte_vhost_get_ifname(int vid, char *buf, size_t len)
int rte_vhost_get_vring_base_from_inflight(int vid, uint16_t queue_id, uint16_t *last_avail_idx, uint16_t *last_used_idx)
enum rte_vhost_msg_result(* rte_vhost_msg_handle)(int vid, void *msg)
Definition: rte_vhost.h:254
int rte_vhost_driver_enable_features(const char *path, uint64_t features)
void rte_vhost_log_write(int vid, uint64_t addr, uint64_t len)