2017-12-19 15:49:03 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2010-2017 Intel Corporation
|
2014-02-10 13:57:48 +00:00
|
|
|
*/
|
|
|
|
|
2017-04-01 07:22:57 +00:00
|
|
|
#ifndef _RTE_VHOST_H_
|
|
|
|
#define _RTE_VHOST_H_
|
2014-02-10 13:57:48 +00:00
|
|
|
|
2014-10-13 17:22:45 +00:00
|
|
|
/**
|
|
|
|
* @file
|
2017-04-01 07:22:57 +00:00
|
|
|
* Interface to vhost-user
|
2014-10-13 17:22:45 +00:00
|
|
|
*/
|
|
|
|
|
2019-12-20 08:22:55 +00:00
|
|
|
#include <stdbool.h>
|
2014-10-08 18:54:54 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/eventfd.h>
|
|
|
|
|
|
|
|
#include <rte_memory.h>
|
|
|
|
#include <rte_mempool.h>
|
2015-04-23 13:03:57 +00:00
|
|
|
|
2017-04-26 12:07:13 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* These are not C++-aware. */
|
|
|
|
#include <linux/vhost.h>
|
|
|
|
#include <linux/virtio_ring.h>
|
2019-06-20 05:44:41 +00:00
|
|
|
#include <linux/virtio_net.h>
|
2017-04-26 12:07:13 +00:00
|
|
|
|
2016-05-06 21:26:03 +00:00
|
|
|
#define RTE_VHOST_USER_CLIENT (1ULL << 0)
|
2016-05-12 23:14:19 +00:00
|
|
|
#define RTE_VHOST_USER_NO_RECONNECT (1ULL << 1)
|
2016-10-09 07:27:58 +00:00
|
|
|
#define RTE_VHOST_USER_DEQUEUE_ZERO_COPY (1ULL << 2)
|
2017-11-06 20:38:11 +00:00
|
|
|
#define RTE_VHOST_USER_IOMMU_SUPPORT (1ULL << 3)
|
2018-10-12 12:40:45 +00:00
|
|
|
#define RTE_VHOST_USER_POSTCOPY_SUPPORT (1ULL << 4)
|
2019-10-15 18:59:51 +00:00
|
|
|
/* support mbuf with external buffer attached */
|
|
|
|
#define RTE_VHOST_USER_EXTBUF_SUPPORT (1ULL << 5)
|
|
|
|
/* support only linear buffers (no chained mbufs) */
|
|
|
|
#define RTE_VHOST_USER_LINEARBUF_SUPPORT (1ULL << 6)
|
2020-07-07 05:07:08 +00:00
|
|
|
#define RTE_VHOST_USER_ASYNC_COPY (1ULL << 7)
|
2016-05-06 21:26:03 +00:00
|
|
|
|
2020-06-18 19:08:20 +00:00
|
|
|
/* Features. */
|
|
|
|
#ifndef VIRTIO_NET_F_GUEST_ANNOUNCE
|
|
|
|
#define VIRTIO_NET_F_GUEST_ANNOUNCE 21
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VIRTIO_NET_F_MQ
|
|
|
|
#define VIRTIO_NET_F_MQ 22
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VIRTIO_NET_F_MTU
|
|
|
|
#define VIRTIO_NET_F_MTU 3
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VIRTIO_F_ANY_LAYOUT
|
|
|
|
#define VIRTIO_F_ANY_LAYOUT 27
|
|
|
|
#endif
|
|
|
|
|
2018-04-02 11:46:52 +00:00
|
|
|
/** Protocol features. */
|
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_MQ
|
|
|
|
#define VHOST_USER_PROTOCOL_F_MQ 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_LOG_SHMFD
|
|
|
|
#define VHOST_USER_PROTOCOL_F_LOG_SHMFD 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_RARP
|
|
|
|
#define VHOST_USER_PROTOCOL_F_RARP 2
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_REPLY_ACK
|
|
|
|
#define VHOST_USER_PROTOCOL_F_REPLY_ACK 3
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_NET_MTU
|
|
|
|
#define VHOST_USER_PROTOCOL_F_NET_MTU 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_SLAVE_REQ
|
|
|
|
#define VHOST_USER_PROTOCOL_F_SLAVE_REQ 5
|
|
|
|
#endif
|
|
|
|
|
2018-04-05 16:01:31 +00:00
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_CRYPTO_SESSION
|
|
|
|
#define VHOST_USER_PROTOCOL_F_CRYPTO_SESSION 7
|
|
|
|
#endif
|
|
|
|
|
2018-10-12 12:40:34 +00:00
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_PAGEFAULT
|
|
|
|
#define VHOST_USER_PROTOCOL_F_PAGEFAULT 8
|
|
|
|
#endif
|
|
|
|
|
2020-01-29 10:19:37 +00:00
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_CONFIG
|
|
|
|
#define VHOST_USER_PROTOCOL_F_CONFIG 9
|
|
|
|
#endif
|
|
|
|
|
2018-06-08 03:22:23 +00:00
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_SLAVE_SEND_FD
|
|
|
|
#define VHOST_USER_PROTOCOL_F_SLAVE_SEND_FD 10
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_HOST_NOTIFIER
|
|
|
|
#define VHOST_USER_PROTOCOL_F_HOST_NOTIFIER 11
|
|
|
|
#endif
|
|
|
|
|
2019-10-09 20:48:29 +00:00
|
|
|
#ifndef VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD
|
|
|
|
#define VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD 12
|
|
|
|
#endif
|
|
|
|
|
2018-04-02 11:46:52 +00:00
|
|
|
/** Indicate whether protocol features negotiation is supported. */
|
|
|
|
#ifndef VHOST_USER_F_PROTOCOL_FEATURES
|
|
|
|
#define VHOST_USER_F_PROTOCOL_FEATURES 30
|
|
|
|
#endif
|
|
|
|
|
2020-06-26 14:04:33 +00:00
|
|
|
struct rte_vdpa_device;
|
2020-01-29 10:19:37 +00:00
|
|
|
|
2017-04-01 07:22:43 +00:00
|
|
|
/**
|
|
|
|
* Information relating to memory regions including offsets to
|
|
|
|
* addresses in QEMUs memory file.
|
|
|
|
*/
|
|
|
|
struct rte_vhost_mem_region {
|
|
|
|
uint64_t guest_phys_addr;
|
|
|
|
uint64_t guest_user_addr;
|
|
|
|
uint64_t host_user_addr;
|
|
|
|
uint64_t size;
|
|
|
|
void *mmap_addr;
|
|
|
|
uint64_t mmap_size;
|
|
|
|
int fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Memory structure includes region and mapping information.
|
|
|
|
*/
|
|
|
|
struct rte_vhost_memory {
|
|
|
|
uint32_t nregions;
|
2017-04-26 12:07:13 +00:00
|
|
|
struct rte_vhost_mem_region regions[];
|
2017-04-01 07:22:43 +00:00
|
|
|
};
|
|
|
|
|
2019-10-09 20:48:31 +00:00
|
|
|
struct rte_vhost_inflight_desc_split {
|
|
|
|
uint8_t inflight;
|
|
|
|
uint8_t padding[5];
|
|
|
|
uint16_t next;
|
|
|
|
uint64_t counter;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rte_vhost_inflight_info_split {
|
|
|
|
uint64_t features;
|
|
|
|
uint16_t version;
|
|
|
|
uint16_t desc_num;
|
|
|
|
uint16_t last_inflight_io;
|
|
|
|
uint16_t used_idx;
|
|
|
|
struct rte_vhost_inflight_desc_split desc[0];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rte_vhost_inflight_desc_packed {
|
|
|
|
uint8_t inflight;
|
|
|
|
uint8_t padding;
|
|
|
|
uint16_t next;
|
|
|
|
uint16_t last;
|
|
|
|
uint16_t num;
|
|
|
|
uint64_t counter;
|
|
|
|
uint16_t id;
|
|
|
|
uint16_t flags;
|
|
|
|
uint32_t len;
|
|
|
|
uint64_t addr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rte_vhost_inflight_info_packed {
|
|
|
|
uint64_t features;
|
|
|
|
uint16_t version;
|
|
|
|
uint16_t desc_num;
|
|
|
|
uint16_t free_head;
|
|
|
|
uint16_t old_free_head;
|
|
|
|
uint16_t used_idx;
|
|
|
|
uint16_t old_used_idx;
|
|
|
|
uint8_t used_wrap_counter;
|
|
|
|
uint8_t old_used_wrap_counter;
|
|
|
|
uint8_t padding[7];
|
|
|
|
struct rte_vhost_inflight_desc_packed desc[0];
|
|
|
|
};
|
|
|
|
|
2019-10-09 20:48:33 +00:00
|
|
|
struct rte_vhost_resubmit_desc {
|
|
|
|
uint16_t index;
|
|
|
|
uint64_t counter;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rte_vhost_resubmit_info {
|
|
|
|
struct rte_vhost_resubmit_desc *resubmit_list;
|
|
|
|
uint16_t resubmit_num;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rte_vhost_ring_inflight {
|
|
|
|
union {
|
|
|
|
struct rte_vhost_inflight_info_split *inflight_split;
|
|
|
|
struct rte_vhost_inflight_info_packed *inflight_packed;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rte_vhost_resubmit_info *resubmit_inflight;
|
|
|
|
};
|
|
|
|
|
2017-04-01 07:22:45 +00:00
|
|
|
struct rte_vhost_vring {
|
2019-10-09 20:48:30 +00:00
|
|
|
union {
|
|
|
|
struct vring_desc *desc;
|
|
|
|
struct vring_packed_desc *desc_packed;
|
|
|
|
};
|
|
|
|
union {
|
|
|
|
struct vring_avail *avail;
|
|
|
|
struct vring_packed_desc_event *driver_event;
|
|
|
|
};
|
|
|
|
union {
|
|
|
|
struct vring_used *used;
|
|
|
|
struct vring_packed_desc_event *device_event;
|
|
|
|
};
|
2017-04-01 07:22:45 +00:00
|
|
|
uint64_t log_guest_addr;
|
|
|
|
|
2018-01-02 09:31:36 +00:00
|
|
|
/** Deprecated, use rte_vhost_vring_call() instead. */
|
2017-04-01 07:22:45 +00:00
|
|
|
int callfd;
|
2018-01-02 09:31:36 +00:00
|
|
|
|
2017-04-01 07:22:45 +00:00
|
|
|
int kickfd;
|
|
|
|
uint16_t size;
|
|
|
|
};
|
|
|
|
|
2019-01-17 15:32:26 +00:00
|
|
|
/**
|
|
|
|
* Possible results of the vhost user message handling callbacks
|
|
|
|
*/
|
|
|
|
enum rte_vhost_msg_result {
|
|
|
|
/* Message handling failed */
|
|
|
|
RTE_VHOST_MSG_RESULT_ERR = -1,
|
|
|
|
/* Message handling successful */
|
|
|
|
RTE_VHOST_MSG_RESULT_OK = 0,
|
|
|
|
/* Message handling successful and reply prepared */
|
|
|
|
RTE_VHOST_MSG_RESULT_REPLY = 1,
|
2019-03-19 10:54:17 +00:00
|
|
|
/* Message not handled */
|
|
|
|
RTE_VHOST_MSG_RESULT_NOT_HANDLED,
|
2019-01-17 15:32:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2019-03-19 10:54:17 +00:00
|
|
|
* Function prototype for the vhost backend to handle specific vhost user
|
|
|
|
* messages.
|
2019-01-17 15:32:26 +00:00
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device id
|
|
|
|
* @param msg
|
|
|
|
* Message pointer.
|
|
|
|
* @return
|
2019-03-19 10:54:17 +00:00
|
|
|
* RTE_VHOST_MSG_RESULT_OK on success,
|
|
|
|
* RTE_VHOST_MSG_RESULT_REPLY on success with reply,
|
|
|
|
* RTE_VHOST_MSG_RESULT_ERR on failure,
|
|
|
|
* RTE_VHOST_MSG_RESULT_NOT_HANDLED if message was not handled.
|
2019-01-17 15:32:26 +00:00
|
|
|
*/
|
2019-03-19 10:54:17 +00:00
|
|
|
typedef enum rte_vhost_msg_result (*rte_vhost_msg_handle)(int vid, void *msg);
|
2019-01-17 15:32:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Optional vhost user message handlers.
|
|
|
|
*/
|
|
|
|
struct rte_vhost_user_extern_ops {
|
2019-03-19 10:54:17 +00:00
|
|
|
/* Called prior to the master message handling. */
|
|
|
|
rte_vhost_msg_handle pre_msg_handle;
|
|
|
|
/* Called after the master message handling. */
|
|
|
|
rte_vhost_msg_handle post_msg_handle;
|
2019-01-17 15:32:26 +00:00
|
|
|
};
|
|
|
|
|
2014-10-08 18:54:57 +00:00
|
|
|
/**
|
2015-10-22 12:35:54 +00:00
|
|
|
* Device and vring operations.
|
2014-02-10 13:57:48 +00:00
|
|
|
*/
|
2017-04-01 07:22:52 +00:00
|
|
|
struct vhost_device_ops {
|
2016-06-13 09:55:49 +00:00
|
|
|
int (*new_device)(int vid); /**< Add device. */
|
|
|
|
void (*destroy_device)(int vid); /**< Remove device. */
|
2015-10-22 12:35:54 +00:00
|
|
|
|
2016-06-13 09:55:49 +00:00
|
|
|
int (*vring_state_changed)(int vid, uint16_t queue_id, int enable); /**< triggered when a vring is enabled or disabled */
|
2016-04-30 05:28:21 +00:00
|
|
|
|
2017-04-01 07:22:54 +00:00
|
|
|
/**
|
|
|
|
* Features could be changed after the feature negotiation.
|
|
|
|
* For example, VHOST_F_LOG_ALL will be set/cleared at the
|
|
|
|
* start/end of live migration, respectively. This callback
|
|
|
|
* is used to inform the application on such change.
|
|
|
|
*/
|
|
|
|
int (*features_changed)(int vid, uint64_t features);
|
|
|
|
|
2017-08-30 10:50:58 +00:00
|
|
|
int (*new_connection)(int vid);
|
|
|
|
void (*destroy_connection)(int vid);
|
|
|
|
|
2019-08-28 14:49:39 +00:00
|
|
|
/**
|
|
|
|
* This callback gets called each time a guest gets notified
|
2020-05-15 16:50:54 +00:00
|
|
|
* about waiting packets. This is the interrupt handling through
|
2019-08-28 14:49:39 +00:00
|
|
|
* the eventfd_write(callfd), which can be used for counting these
|
|
|
|
* "slow" syscalls.
|
|
|
|
*/
|
|
|
|
void (*guest_notified)(int vid);
|
|
|
|
|
|
|
|
void *reserved[1]; /**< Reserved for future extension */
|
2014-02-10 13:57:48 +00:00
|
|
|
};
|
|
|
|
|
2017-04-01 07:22:46 +00:00
|
|
|
/**
|
|
|
|
* Convert guest physical address to host virtual address
|
|
|
|
*
|
2018-03-14 16:31:25 +00:00
|
|
|
* This function is deprecated because unsafe.
|
|
|
|
* New rte_vhost_va_from_guest_pa() should be used instead to ensure
|
|
|
|
* guest physical ranges are fully and contiguously mapped into
|
|
|
|
* process virtual address space.
|
|
|
|
*
|
2017-04-01 07:22:46 +00:00
|
|
|
* @param mem
|
|
|
|
* the guest memory regions
|
|
|
|
* @param gpa
|
|
|
|
* the guest physical address for querying
|
|
|
|
* @return
|
|
|
|
* the host virtual address on success, 0 on failure
|
|
|
|
*/
|
2018-03-14 16:31:25 +00:00
|
|
|
__rte_deprecated
|
2017-05-13 09:27:25 +00:00
|
|
|
static __rte_always_inline uint64_t
|
2017-04-01 07:22:46 +00:00
|
|
|
rte_vhost_gpa_to_vva(struct rte_vhost_memory *mem, uint64_t gpa)
|
|
|
|
{
|
|
|
|
struct rte_vhost_mem_region *reg;
|
|
|
|
uint32_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < mem->nregions; i++) {
|
|
|
|
reg = &mem->regions[i];
|
|
|
|
if (gpa >= reg->guest_phys_addr &&
|
|
|
|
gpa < reg->guest_phys_addr + reg->size) {
|
|
|
|
return gpa - reg->guest_phys_addr +
|
|
|
|
reg->host_user_addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-23 13:37:50 +00:00
|
|
|
/**
|
|
|
|
* Convert guest physical address to host virtual address safely
|
|
|
|
*
|
|
|
|
* This variant of rte_vhost_gpa_to_vva() takes care all the
|
|
|
|
* requested length is mapped and contiguous in process address
|
|
|
|
* space.
|
|
|
|
*
|
|
|
|
* @param mem
|
|
|
|
* the guest memory regions
|
|
|
|
* @param gpa
|
|
|
|
* the guest physical address for querying
|
|
|
|
* @param len
|
|
|
|
* the size of the requested area to map, updated with actual size mapped
|
|
|
|
* @return
|
|
|
|
* the host virtual address on success, 0 on failure
|
|
|
|
*/
|
2019-09-24 09:23:34 +00:00
|
|
|
__rte_experimental
|
2018-01-23 13:37:50 +00:00
|
|
|
static __rte_always_inline uint64_t
|
|
|
|
rte_vhost_va_from_guest_pa(struct rte_vhost_memory *mem,
|
|
|
|
uint64_t gpa, uint64_t *len)
|
|
|
|
{
|
|
|
|
struct rte_vhost_mem_region *r;
|
|
|
|
uint32_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < mem->nregions; i++) {
|
|
|
|
r = &mem->regions[i];
|
|
|
|
if (gpa >= r->guest_phys_addr &&
|
|
|
|
gpa < r->guest_phys_addr + r->size) {
|
|
|
|
|
|
|
|
if (unlikely(*len > r->guest_phys_addr + r->size - gpa))
|
|
|
|
*len = r->guest_phys_addr + r->size - gpa;
|
|
|
|
|
|
|
|
return gpa - r->guest_phys_addr +
|
|
|
|
r->host_user_addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*len = 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-01 07:22:55 +00:00
|
|
|
#define RTE_VHOST_NEED_LOG(features) ((features) & (1ULL << VHOST_F_LOG_ALL))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Log the memory write start with given address.
|
|
|
|
*
|
|
|
|
* This function only need be invoked when the live migration starts.
|
|
|
|
* Therefore, we won't need call it at all in the most of time. For
|
|
|
|
* making the performance impact be minimum, it's suggested to do a
|
|
|
|
* check before calling it:
|
|
|
|
*
|
|
|
|
* if (unlikely(RTE_VHOST_NEED_LOG(features)))
|
|
|
|
* rte_vhost_log_write(vid, addr, len);
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param addr
|
2019-10-09 11:54:31 +00:00
|
|
|
* the starting address for write (in guest physical address space)
|
2017-04-01 07:22:55 +00:00
|
|
|
* @param len
|
|
|
|
* the length to write
|
|
|
|
*/
|
|
|
|
void rte_vhost_log_write(int vid, uint64_t addr, uint64_t len);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Log the used ring update start at given offset.
|
|
|
|
*
|
|
|
|
* Same as rte_vhost_log_write, it's suggested to do a check before
|
|
|
|
* calling it:
|
|
|
|
*
|
|
|
|
* if (unlikely(RTE_VHOST_NEED_LOG(features)))
|
|
|
|
* rte_vhost_log_used_vring(vid, vring_idx, offset, len);
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param vring_idx
|
|
|
|
* the vring index
|
|
|
|
* @param offset
|
|
|
|
* the offset inside the used ring
|
|
|
|
* @param len
|
|
|
|
* the length to write
|
|
|
|
*/
|
|
|
|
void rte_vhost_log_used_vring(int vid, uint16_t vring_idx,
|
|
|
|
uint64_t offset, uint64_t len);
|
|
|
|
|
2016-06-13 09:55:49 +00:00
|
|
|
int rte_vhost_enable_guest_notification(int vid, uint16_t queue_id, int enable);
|
2014-10-08 18:54:51 +00:00
|
|
|
|
2016-05-06 21:26:03 +00:00
|
|
|
/**
|
|
|
|
* Register vhost driver. path could be different for multiple
|
|
|
|
* instance support.
|
|
|
|
*/
|
|
|
|
int rte_vhost_driver_register(const char *path, uint64_t flags);
|
2014-10-08 18:54:45 +00:00
|
|
|
|
2015-06-30 09:20:48 +00:00
|
|
|
/* Unregister vhost driver. This is only meaningful to vhost user. */
|
2016-05-06 21:26:03 +00:00
|
|
|
int rte_vhost_driver_unregister(const char *path);
|
2015-06-30 09:20:48 +00:00
|
|
|
|
2018-04-02 11:46:54 +00:00
|
|
|
/**
|
|
|
|
* Set the vdpa device id, enforce single connection per socket
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
2020-06-26 14:04:33 +00:00
|
|
|
* @param dev
|
|
|
|
* vDPA device pointer
|
2018-04-02 11:46:54 +00:00
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
|
|
|
int
|
2020-06-26 14:04:33 +00:00
|
|
|
rte_vhost_driver_attach_vdpa_device(const char *path,
|
|
|
|
struct rte_vdpa_device *dev);
|
2018-04-02 11:46:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Unset the vdpa device id
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
|
|
|
int
|
2018-04-02 11:46:54 +00:00
|
|
|
rte_vhost_driver_detach_vdpa_device(const char *path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the device id
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
|
|
|
* @return
|
2020-06-26 14:04:33 +00:00
|
|
|
* vDPA device pointer, NULL on failure
|
2018-04-02 11:46:54 +00:00
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
2020-06-26 14:04:33 +00:00
|
|
|
struct rte_vdpa_device *
|
|
|
|
rte_vhost_driver_get_vdpa_device(const char *path);
|
2018-04-02 11:46:54 +00:00
|
|
|
|
2017-04-01 07:22:39 +00:00
|
|
|
/**
|
|
|
|
* Set the feature bits the vhost-user driver supports.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
|
|
|
* @param features
|
|
|
|
* Supported features
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_driver_set_features(const char *path, uint64_t features);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enable vhost-user driver features.
|
|
|
|
*
|
|
|
|
* Note that
|
|
|
|
* - the param features should be a subset of the feature bits provided
|
|
|
|
* by rte_vhost_driver_set_features().
|
|
|
|
* - it must be invoked before vhost-user negotiation starts.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
|
|
|
* @param features
|
|
|
|
* Features to enable
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_driver_enable_features(const char *path, uint64_t features);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable vhost-user driver features.
|
|
|
|
*
|
|
|
|
* The two notes at rte_vhost_driver_enable_features() also apply here.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
|
|
|
* @param features
|
|
|
|
* Features to disable
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_driver_disable_features(const char *path, uint64_t features);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the feature bits before feature negotiation.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
|
|
|
* @param features
|
|
|
|
* A pointer to store the queried feature bits
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_driver_get_features(const char *path, uint64_t *features);
|
|
|
|
|
2019-03-19 10:54:16 +00:00
|
|
|
/**
|
|
|
|
* Set the protocol feature bits before feature negotiation.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
|
|
|
* @param protocol_features
|
|
|
|
* Supported protocol features
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
|
|
|
int
|
2019-03-19 10:54:16 +00:00
|
|
|
rte_vhost_driver_set_protocol_features(const char *path,
|
|
|
|
uint64_t protocol_features);
|
|
|
|
|
2018-04-02 11:46:55 +00:00
|
|
|
/**
|
|
|
|
* Get the protocol feature bits before feature negotiation.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
|
|
|
* @param protocol_features
|
|
|
|
* A pointer to store the queried protocol feature bits
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
|
|
|
int
|
2018-04-02 11:46:55 +00:00
|
|
|
rte_vhost_driver_get_protocol_features(const char *path,
|
|
|
|
uint64_t *protocol_features);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the queue number bits before feature negotiation.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
|
|
|
* @param queue_num
|
|
|
|
* A pointer to store the queried queue number bits
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
|
|
|
int
|
2018-04-02 11:46:55 +00:00
|
|
|
rte_vhost_driver_get_queue_num(const char *path, uint32_t *queue_num);
|
|
|
|
|
2017-04-01 07:22:44 +00:00
|
|
|
/**
|
|
|
|
* Get the feature bits after negotiation
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* Vhost device ID
|
|
|
|
* @param features
|
|
|
|
* A pointer to store the queried feature bits
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_get_negotiated_features(int vid, uint64_t *features);
|
|
|
|
|
2014-10-08 18:54:50 +00:00
|
|
|
/* Register callbacks. */
|
2017-04-01 07:22:42 +00:00
|
|
|
int rte_vhost_driver_callback_register(const char *path,
|
2017-04-01 07:22:52 +00:00
|
|
|
struct vhost_device_ops const * const ops);
|
vhost: introduce API to start a specific driver
We used to use rte_vhost_driver_session_start() to trigger the vhost-user
session. It takes no argument, thus it's a global trigger. And it could
be problematic.
The issue is, currently, rte_vhost_driver_register(path, flags) actually
tries to put it into the session loop (by fdset_add). However, it needs
a set of APIs to set a vhost-user driver properly:
* rte_vhost_driver_register(path, flags);
* rte_vhost_driver_set_features(path, features);
* rte_vhost_driver_callback_register(path, vhost_device_ops);
If a new vhost-user driver is registered after the trigger (think OVS-DPDK
that could add a port dynamically from cmdline), the current code will
effectively starts the session for the new driver just after the first
API rte_vhost_driver_register() is invoked, leaving later calls taking
no effect at all.
To handle the case properly, this patch introduce a new API,
rte_vhost_driver_start(path), to trigger a specific vhost-user driver.
To do that, the rte_vhost_driver_register(path, flags) is simplified
to create the socket only and let rte_vhost_driver_start(path) to
actually put it into the session loop.
Meanwhile, the rte_vhost_driver_session_start is removed: we could hide
the session thread internally (create the thread if it has not been
created). This would also simplify the application.
NOTE: the API order in prog guide is slightly adjusted for showing the
correct invoke order.
Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
2017-04-01 07:22:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Start the vhost-user driver.
|
|
|
|
*
|
|
|
|
* This function triggers the vhost-user negotiation.
|
|
|
|
*
|
|
|
|
* @param path
|
|
|
|
* The vhost-user socket file path
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_driver_start(const char *path);
|
2014-10-08 18:54:45 +00:00
|
|
|
|
2017-03-12 16:34:01 +00:00
|
|
|
/**
|
|
|
|
* Get the MTU value of the device if set in QEMU.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* virtio-net device ID
|
|
|
|
* @param mtu
|
|
|
|
* The variable to store the MTU value
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* 0: success
|
|
|
|
* -EAGAIN: device not yet started
|
|
|
|
* -ENOTSUP: device does not support MTU feature
|
|
|
|
*/
|
|
|
|
int rte_vhost_get_mtu(int vid, uint16_t *mtu);
|
|
|
|
|
2016-05-10 22:12:57 +00:00
|
|
|
/**
|
|
|
|
* Get the numa node from which the virtio net device's memory
|
|
|
|
* is allocated.
|
|
|
|
*
|
|
|
|
* @param vid
|
2017-04-01 07:22:53 +00:00
|
|
|
* vhost device ID
|
2016-05-10 22:12:57 +00:00
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* The numa node, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_get_numa_node(int vid);
|
|
|
|
|
2016-05-10 22:23:32 +00:00
|
|
|
/**
|
2017-04-01 07:22:48 +00:00
|
|
|
* @deprecated
|
2016-05-10 22:23:32 +00:00
|
|
|
* Get the number of queues the device supports.
|
|
|
|
*
|
2017-04-01 07:22:48 +00:00
|
|
|
* Note this function is deprecated, as it returns a queue pair number,
|
2017-04-01 07:22:53 +00:00
|
|
|
* which is vhost specific. Instead, rte_vhost_get_vring_num should
|
2017-04-01 07:22:48 +00:00
|
|
|
* be used.
|
|
|
|
*
|
2016-05-10 22:23:32 +00:00
|
|
|
* @param vid
|
2017-04-01 07:22:53 +00:00
|
|
|
* vhost device ID
|
2016-05-10 22:23:32 +00:00
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* The number of queues, 0 on failure
|
|
|
|
*/
|
2017-04-01 07:22:48 +00:00
|
|
|
__rte_deprecated
|
2016-05-10 22:23:32 +00:00
|
|
|
uint32_t rte_vhost_get_queue_num(int vid);
|
|
|
|
|
2017-04-01 07:22:48 +00:00
|
|
|
/**
|
|
|
|
* Get the number of vrings the device supports.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* The number of vrings, 0 on failure
|
|
|
|
*/
|
|
|
|
uint16_t rte_vhost_get_vring_num(int vid);
|
|
|
|
|
2016-05-10 22:38:44 +00:00
|
|
|
/**
|
2016-11-02 03:15:01 +00:00
|
|
|
* Get the virtio net device's ifname, which is the vhost-user socket
|
|
|
|
* file path.
|
2016-05-10 22:38:44 +00:00
|
|
|
*
|
|
|
|
* @param vid
|
2017-04-01 07:22:53 +00:00
|
|
|
* vhost device ID
|
2016-05-10 22:38:44 +00:00
|
|
|
* @param buf
|
|
|
|
* The buffer to stored the queried ifname
|
|
|
|
* @param len
|
|
|
|
* The length of buf
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_get_ifname(int vid, char *buf, size_t len);
|
|
|
|
|
2016-05-10 22:46:24 +00:00
|
|
|
/**
|
|
|
|
* Get how many avail entries are left in the queue
|
|
|
|
*
|
|
|
|
* @param vid
|
2017-04-01 07:22:53 +00:00
|
|
|
* vhost device ID
|
2016-05-10 22:46:24 +00:00
|
|
|
* @param queue_id
|
|
|
|
* virtio queue index
|
|
|
|
*
|
|
|
|
* @return
|
2019-04-26 15:14:22 +00:00
|
|
|
* num of avail entries left
|
2016-05-10 22:46:24 +00:00
|
|
|
*/
|
|
|
|
uint16_t rte_vhost_avail_entries(int vid, uint16_t queue_id);
|
|
|
|
|
2017-04-01 07:22:58 +00:00
|
|
|
struct rte_mbuf;
|
|
|
|
struct rte_mempool;
|
2014-10-08 18:54:45 +00:00
|
|
|
/**
|
|
|
|
* This function adds buffers to the virtio devices RX virtqueue. Buffers can
|
|
|
|
* be received from the physical port or from another virtual device. A packet
|
2017-06-07 05:05:06 +00:00
|
|
|
* count is returned to indicate the number of packets that were successfully
|
2014-10-08 18:54:45 +00:00
|
|
|
* added to the RX queue.
|
2016-06-13 09:55:49 +00:00
|
|
|
* @param vid
|
2017-04-01 07:22:53 +00:00
|
|
|
* vhost device ID
|
2014-10-08 18:54:45 +00:00
|
|
|
* @param queue_id
|
|
|
|
* virtio queue index in mq case
|
2015-06-19 02:20:42 +00:00
|
|
|
* @param pkts
|
|
|
|
* array to contain packets to be enqueued
|
|
|
|
* @param count
|
|
|
|
* packets num to be enqueued
|
2014-10-08 18:54:45 +00:00
|
|
|
* @return
|
|
|
|
* num of packets enqueued
|
|
|
|
*/
|
2016-06-13 09:55:49 +00:00
|
|
|
uint16_t rte_vhost_enqueue_burst(int vid, uint16_t queue_id,
|
2014-10-08 18:54:45 +00:00
|
|
|
struct rte_mbuf **pkts, uint16_t count);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function gets guest buffers from the virtio device TX virtqueue,
|
|
|
|
* construct host mbufs, copies guest buffer content to host mbufs and
|
|
|
|
* store them in pkts to be processed.
|
2016-06-13 09:55:49 +00:00
|
|
|
* @param vid
|
2017-04-01 07:22:53 +00:00
|
|
|
* vhost device ID
|
2015-06-19 02:20:42 +00:00
|
|
|
* @param queue_id
|
|
|
|
* virtio queue index in mq case
|
2014-10-08 18:54:45 +00:00
|
|
|
* @param mbuf_pool
|
|
|
|
* mbuf_pool where host mbuf is allocated.
|
2015-06-19 02:20:42 +00:00
|
|
|
* @param pkts
|
|
|
|
* array to contain packets to be dequeued
|
|
|
|
* @param count
|
|
|
|
* packets num to be dequeued
|
2014-10-08 18:54:45 +00:00
|
|
|
* @return
|
|
|
|
* num of packets dequeued
|
|
|
|
*/
|
2016-06-13 09:55:49 +00:00
|
|
|
uint16_t rte_vhost_dequeue_burst(int vid, uint16_t queue_id,
|
2014-10-08 18:54:45 +00:00
|
|
|
struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count);
|
|
|
|
|
2017-04-01 07:22:43 +00:00
|
|
|
/**
|
|
|
|
* Get guest mem table: a list of memory regions.
|
|
|
|
*
|
2019-04-26 15:14:22 +00:00
|
|
|
* An rte_vhost_vhost_memory object will be allocated internally, to hold the
|
2017-04-01 07:22:43 +00:00
|
|
|
* guest memory regions. Application should free it at destroy_device()
|
|
|
|
* callback.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param mem
|
|
|
|
* To store the returned mem regions
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_get_mem_table(int vid, struct rte_vhost_memory **mem);
|
|
|
|
|
2017-04-01 07:22:45 +00:00
|
|
|
/**
|
|
|
|
* Get guest vring info, including the vring address, vring size, etc.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param vring_idx
|
|
|
|
* vring index
|
|
|
|
* @param vring
|
|
|
|
* the structure to hold the requested vring info
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_get_vhost_vring(int vid, uint16_t vring_idx,
|
|
|
|
struct rte_vhost_vring *vring);
|
|
|
|
|
2019-10-09 20:48:35 +00:00
|
|
|
/**
|
|
|
|
* Get guest inflight vring info, including inflight ring and resubmit list.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param vring_idx
|
|
|
|
* vring index
|
|
|
|
* @param vring
|
|
|
|
* the structure to hold the requested inflight vring info
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
__rte_experimental
|
|
|
|
int
|
|
|
|
rte_vhost_get_vhost_ring_inflight(int vid, uint16_t vring_idx,
|
|
|
|
struct rte_vhost_ring_inflight *vring);
|
|
|
|
|
2019-10-09 20:48:34 +00:00
|
|
|
/**
|
|
|
|
* Set split inflight descriptor.
|
|
|
|
*
|
|
|
|
* This function save descriptors that has been comsumed in available
|
|
|
|
* ring
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param vring_idx
|
|
|
|
* vring index
|
|
|
|
* @param idx
|
|
|
|
* inflight entry index
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
__rte_experimental
|
|
|
|
int
|
|
|
|
rte_vhost_set_inflight_desc_split(int vid, uint16_t vring_idx,
|
|
|
|
uint16_t idx);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set packed inflight descriptor and get corresponding inflight entry
|
|
|
|
*
|
|
|
|
* This function save descriptors that has been comsumed
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param vring_idx
|
|
|
|
* vring index
|
|
|
|
* @param head
|
|
|
|
* head of descriptors
|
|
|
|
* @param last
|
|
|
|
* last of descriptors
|
|
|
|
* @param inflight_entry
|
|
|
|
* corresponding inflight entry
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
__rte_experimental
|
|
|
|
int
|
|
|
|
rte_vhost_set_inflight_desc_packed(int vid, uint16_t vring_idx,
|
|
|
|
uint16_t head, uint16_t last, uint16_t *inflight_entry);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save the head of list that the last batch of used descriptors.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param vring_idx
|
|
|
|
* vring index
|
|
|
|
* @param idx
|
|
|
|
* descriptor entry index
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
__rte_experimental
|
|
|
|
int
|
|
|
|
rte_vhost_set_last_inflight_io_split(int vid,
|
|
|
|
uint16_t vring_idx, uint16_t idx);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the inflight free_head, used_idx and used_wrap_counter.
|
|
|
|
*
|
|
|
|
* This function will update status first before updating descriptors
|
|
|
|
* to used
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param vring_idx
|
|
|
|
* vring index
|
|
|
|
* @param head
|
|
|
|
* head of descriptors
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
__rte_experimental
|
|
|
|
int
|
|
|
|
rte_vhost_set_last_inflight_io_packed(int vid,
|
|
|
|
uint16_t vring_idx, uint16_t head);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear the split inflight status.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param vring_idx
|
|
|
|
* vring index
|
|
|
|
* @param last_used_idx
|
|
|
|
* last used idx of used ring
|
|
|
|
* @param idx
|
|
|
|
* inflight entry index
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
__rte_experimental
|
|
|
|
int
|
|
|
|
rte_vhost_clr_inflight_desc_split(int vid, uint16_t vring_idx,
|
|
|
|
uint16_t last_used_idx, uint16_t idx);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear the packed inflight status.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param vring_idx
|
|
|
|
* vring index
|
|
|
|
* @param head
|
|
|
|
* inflight entry index
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
__rte_experimental
|
|
|
|
int
|
|
|
|
rte_vhost_clr_inflight_desc_packed(int vid, uint16_t vring_idx,
|
|
|
|
uint16_t head);
|
|
|
|
|
2018-01-02 09:31:36 +00:00
|
|
|
/**
|
|
|
|
* Notify the guest that used descriptors have been added to the vring. This
|
|
|
|
* function acts as a memory barrier.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param vring_idx
|
|
|
|
* vring index
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
int rte_vhost_vring_call(int vid, uint16_t vring_idx);
|
|
|
|
|
2017-05-26 17:18:02 +00:00
|
|
|
/**
|
|
|
|
* Get vhost RX queue avail count.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param qid
|
|
|
|
* virtio queue index in mq case
|
|
|
|
* @return
|
|
|
|
* num of desc available
|
|
|
|
*/
|
|
|
|
uint32_t rte_vhost_rx_queue_count(int vid, uint16_t qid);
|
|
|
|
|
2018-04-02 11:46:56 +00:00
|
|
|
/**
|
|
|
|
* Get log base and log size of the vhost device
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param log_base
|
|
|
|
* vhost log base
|
|
|
|
* @param log_size
|
|
|
|
* vhost log size
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
|
|
|
int
|
2018-04-02 11:46:56 +00:00
|
|
|
rte_vhost_get_log_base(int vid, uint64_t *log_base, uint64_t *log_size);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get last_avail/used_idx of the vhost virtqueue
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param queue_id
|
|
|
|
* vhost queue index
|
|
|
|
* @param last_avail_idx
|
|
|
|
* vhost last_avail_idx to get
|
|
|
|
* @param last_used_idx
|
|
|
|
* vhost last_used_idx to get
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
|
|
|
int
|
2018-04-02 11:46:56 +00:00
|
|
|
rte_vhost_get_vring_base(int vid, uint16_t queue_id,
|
|
|
|
uint16_t *last_avail_idx, uint16_t *last_used_idx);
|
|
|
|
|
2019-10-09 20:48:35 +00:00
|
|
|
/**
|
|
|
|
* Get last_avail/last_used of the vhost virtqueue
|
|
|
|
*
|
|
|
|
* This function is designed for the reconnection and it's specific for
|
|
|
|
* the packed ring as we can get the two parameters from the inflight
|
|
|
|
* queueregion
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param queue_id
|
|
|
|
* vhost queue index
|
|
|
|
* @param last_avail_idx
|
|
|
|
* vhost last_avail_idx to get
|
|
|
|
* @param last_used_idx
|
|
|
|
* vhost last_used_idx to get
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
|
|
|
__rte_experimental
|
|
|
|
int
|
|
|
|
rte_vhost_get_vring_base_from_inflight(int vid,
|
|
|
|
uint16_t queue_id, uint16_t *last_avail_idx, uint16_t *last_used_idx);
|
|
|
|
|
2018-04-02 11:46:56 +00:00
|
|
|
/**
|
|
|
|
* Set last_avail/used_idx of the vhost virtqueue
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param queue_id
|
|
|
|
* vhost queue index
|
|
|
|
* @param last_avail_idx
|
|
|
|
* last_avail_idx to set
|
|
|
|
* @param last_used_idx
|
|
|
|
* last_used_idx to set
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
|
|
|
int
|
2018-04-02 11:46:56 +00:00
|
|
|
rte_vhost_set_vring_base(int vid, uint16_t queue_id,
|
|
|
|
uint16_t last_avail_idx, uint16_t last_used_idx);
|
|
|
|
|
2019-01-17 15:32:26 +00:00
|
|
|
/**
|
|
|
|
* Register external message handling callbacks
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param ops
|
|
|
|
* virtio external callbacks to register
|
|
|
|
* @param ctx
|
|
|
|
* additional context passed to the callbacks
|
|
|
|
* @return
|
|
|
|
* 0 on success, -1 on failure
|
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
|
|
|
int
|
2019-01-17 15:32:26 +00:00
|
|
|
rte_vhost_extern_callback_register(int vid,
|
|
|
|
struct rte_vhost_user_extern_ops const * const ops, void *ctx);
|
|
|
|
|
2018-04-02 11:46:54 +00:00
|
|
|
/**
|
|
|
|
* Get vdpa device id for vhost device.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device id
|
|
|
|
* @return
|
2020-06-26 14:04:33 +00:00
|
|
|
* vDPA device pointer on success, NULL on failure
|
2018-04-02 11:46:54 +00:00
|
|
|
*/
|
2019-06-29 11:58:53 +00:00
|
|
|
__rte_experimental
|
2020-06-26 14:04:33 +00:00
|
|
|
struct rte_vdpa_device *
|
|
|
|
rte_vhost_get_vdpa_device(int vid);
|
2018-04-02 11:46:54 +00:00
|
|
|
|
2019-12-20 08:22:55 +00:00
|
|
|
/**
|
|
|
|
* Notify the guest that should get virtio configuration space from backend.
|
|
|
|
*
|
|
|
|
* @param vid
|
|
|
|
* vhost device ID
|
|
|
|
* @param need_reply
|
|
|
|
* wait for the master response the status of this operation
|
|
|
|
* @return
|
|
|
|
* 0 on success, < 0 on failure
|
|
|
|
*/
|
|
|
|
__rte_experimental
|
|
|
|
int
|
|
|
|
rte_vhost_slave_config_change(int vid, bool need_reply);
|
|
|
|
|
2017-04-26 12:07:13 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-04-01 07:22:57 +00:00
|
|
|
#endif /* _RTE_VHOST_H_ */
|