* [RFC 1/2] vhost: add ingress API for port mirroring datapath
2022-08-14 12:49 [RFC 0/2] vhost: add port mirroring function in the vhost lib Cheng Jiang
@ 2022-08-14 12:49 ` Cheng Jiang
2022-08-14 14:58 ` Stephen Hemminger
2022-08-14 12:49 ` [RFC 2/2] vhost: add egress " Cheng Jiang
1 sibling, 1 reply; 7+ messages in thread
From: Cheng Jiang @ 2022-08-14 12:49 UTC (permalink / raw)
To: maxime.coquelin, chenbo.xia
Cc: dev, jiayu.hu, xuan.ding, wenwux.ma, yuanx.wang, yvonnex.yang,
Cheng Jiang
From: Wenwu Ma <wenwux.ma@intel.com>
Similar to the port mirroring function on the switch or router, this
patch also implements an ingress function on the Vhost lib. When
data is sent to a front-end, it will also send the data to its mirror
front-end.
Signed-off-by: Cheng Jiang <cheng1.jiang@intel.com>
Signed-off-by: Wenwu Ma <wenwux.ma@intel.com>
---
lib/vhost/rte_vhost_async.h | 14 +-
lib/vhost/version.map | 2 +
lib/vhost/vhost.h | 3 +-
lib/vhost/virtio_net.c | 666 +++++++++++++++++++++++++++++++++++-
4 files changed, 679 insertions(+), 6 deletions(-)
diff --git a/lib/vhost/rte_vhost_async.h b/lib/vhost/rte_vhost_async.h
index ad71555a7f..b199af078c 100644
--- a/lib/vhost/rte_vhost_async.h
+++ b/lib/vhost/rte_vhost_async.h
@@ -29,6 +29,7 @@ struct rte_vhost_async_desc {
struct rte_vhost_iov_iter *src;
/** destination memory iov_iter */
struct rte_vhost_iov_iter *dst;
+ struct rte_vhost_iov_iter *mirror_dst;
};
/**
@@ -64,7 +65,7 @@ struct rte_vhost_async_channel_ops {
int32_t (*transfer_data)(int vid, uint16_t queue_id,
struct rte_vhost_async_desc *descs,
struct rte_vhost_async_status *opaque_data,
- uint16_t count);
+ uint16_t count, bool mirr_flag);
/**
* check copy-completed packets from the async engine
* @param vid
@@ -200,6 +201,12 @@ __rte_experimental
uint16_t rte_vhost_submit_enqueue_burst(int vid, uint16_t queue_id,
struct rte_mbuf **pkts, uint16_t count);
+__rte_experimental
+uint16_t
+rte_vhost_submit_ingress_mirroring_burst(int vid, uint16_t queue_id,
+ int mirror_vid, uint16_t mirror_queue_id, struct rte_mbuf **pkts, uint16_t count);
+
+
/**
* This function checks async completion status for a specific vhost
* device queue. Packets which finish copying (enqueue) operation
@@ -220,6 +227,11 @@ __rte_experimental
uint16_t rte_vhost_poll_enqueue_completed(int vid, uint16_t queue_id,
struct rte_mbuf **pkts, uint16_t count);
+__rte_experimental
+uint16_t rte_vhost_poll_ingress_completed(int vid, uint16_t queue_id,
+ int mirror_vid, uint16_t mirror_queue_id,
+ struct rte_mbuf **pkts, uint16_t count);
+
/**
* This function returns the amount of in-flight packets for the vhost
* queue which uses async channel acceleration.
diff --git a/lib/vhost/version.map b/lib/vhost/version.map
index c92a9d4962..4c35fa4555 100644
--- a/lib/vhost/version.map
+++ b/lib/vhost/version.map
@@ -76,6 +76,8 @@ EXPERIMENTAL {
rte_vhost_async_channel_unregister;
rte_vhost_submit_enqueue_burst;
rte_vhost_poll_enqueue_completed;
+ rte_vhost_submit_ingress_mirroring_burst;
+ rte_vhost_poll_ingress_completed;
# added in 21.05
rte_vhost_get_negotiated_protocol_features;
diff --git a/lib/vhost/vhost.h b/lib/vhost/vhost.h
index 1e56311725..89a31e4ca8 100644
--- a/lib/vhost/vhost.h
+++ b/lib/vhost/vhost.h
@@ -49,7 +49,8 @@
#define MAX_PKT_BURST 32
#define VHOST_MAX_ASYNC_IT (MAX_PKT_BURST * 2)
-#define VHOST_MAX_ASYNC_VEC (BUF_VECTOR_MAX * 4)
+#define MAX_ASYNC_COPY_VECTOR 1024
+#define VHOST_MAX_ASYNC_VEC (MAX_ASYNC_COPY_VECTOR * 2)
#define PACKED_DESC_ENQUEUE_USED_FLAG(w) \
((w) ? (VRING_DESC_F_AVAIL | VRING_DESC_F_USED | VRING_DESC_F_WRITE) : \
diff --git a/lib/vhost/virtio_net.c b/lib/vhost/virtio_net.c
index f6127c7d52..c9f0bb22e5 100644
--- a/lib/vhost/virtio_net.c
+++ b/lib/vhost/virtio_net.c
@@ -1575,7 +1575,7 @@ virtio_dev_rx_async_submit_split(struct virtio_net *dev,
((VHOST_MAX_ASYNC_VEC >> 1) - segs_await <
BUF_VECTOR_MAX))) {
n_xfer = vq->async_ops.transfer_data(dev->vid,
- queue_id, tdes, 0, pkt_burst_idx);
+ queue_id, tdes, 0, pkt_burst_idx, false);
if (likely(n_xfer >= 0)) {
n_pkts = n_xfer;
} else {
@@ -1606,7 +1606,7 @@ virtio_dev_rx_async_submit_split(struct virtio_net *dev,
}
if (pkt_burst_idx) {
- n_xfer = vq->async_ops.transfer_data(dev->vid, queue_id, tdes, 0, pkt_burst_idx);
+ n_xfer = vq->async_ops.transfer_data(dev->vid, queue_id, tdes, 0, pkt_burst_idx, false);
if (likely(n_xfer >= 0)) {
n_pkts = n_xfer;
} else {
@@ -1873,7 +1873,7 @@ virtio_dev_rx_async_submit_packed(struct virtio_net *dev,
if (unlikely(pkt_burst_idx >= VHOST_ASYNC_BATCH_THRESHOLD ||
((VHOST_MAX_ASYNC_VEC >> 1) - segs_await < BUF_VECTOR_MAX))) {
n_xfer = vq->async_ops.transfer_data(dev->vid,
- queue_id, tdes, 0, pkt_burst_idx);
+ queue_id, tdes, 0, pkt_burst_idx, false);
if (likely(n_xfer >= 0)) {
n_pkts = n_xfer;
} else {
@@ -1903,7 +1903,7 @@ virtio_dev_rx_async_submit_packed(struct virtio_net *dev,
} while (pkt_idx < count);
if (pkt_burst_idx) {
- n_xfer = vq->async_ops.transfer_data(dev->vid, queue_id, tdes, 0, pkt_burst_idx);
+ n_xfer = vq->async_ops.transfer_data(dev->vid, queue_id, tdes, 0, pkt_burst_idx, false);
if (likely(n_xfer >= 0)) {
n_pkts = n_xfer;
} else {
@@ -2206,6 +2206,664 @@ rte_vhost_submit_enqueue_burst(int vid, uint16_t queue_id,
return virtio_dev_rx_async_submit(dev, queue_id, pkts, count);
}
+static __rte_always_inline uint16_t
+vhost_poll_ingress_completed(struct virtio_net *dev, uint16_t queue_id,
+ struct virtio_net *mirror_dev, uint16_t mirror_queue_id,
+ struct rte_mbuf **pkts, uint16_t count)
+{
+ struct vhost_virtqueue *vq;
+ struct vhost_virtqueue *mirror_vq;
+ struct async_inflight_info *pkts_info;
+ int32_t n_cpl;
+ uint16_t n_pkts_cpl = 0, n_pkts_put = 0, n_descs = 0;
+ uint16_t start_idx, pkts_idx, vq_size;
+ uint16_t from, i;
+
+ vq = dev->virtqueue[queue_id];
+ mirror_vq = mirror_dev->virtqueue[mirror_queue_id];
+ pkts_idx = vq->async_pkts_idx % vq->size;
+ pkts_info = vq->async_pkts_info;
+ vq_size = vq->size;
+ start_idx = virtio_dev_rx_async_get_info_idx(pkts_idx,
+ vq_size, vq->async_pkts_inflight_n);
+
+ if (count > vq->async_last_pkts_n) {
+ n_cpl = vq->async_ops.check_completed_copies(dev->vid,
+ queue_id, 0, count - vq->async_last_pkts_n);
+ if (likely(n_cpl >= 0)) {
+ n_pkts_cpl = n_cpl;
+ } else {
+ VHOST_LOG_DATA(ERR,
+ "(%d) %s: failed to check completed copies for queue id %d.\n",
+ dev->vid, __func__, queue_id);
+ n_pkts_cpl = 0;
+ }
+ }
+
+ n_pkts_cpl += vq->async_last_pkts_n;
+ n_pkts_put = RTE_MIN(n_pkts_cpl, count);
+ if (unlikely(n_pkts_put == 0)) {
+ vq->async_last_pkts_n = n_pkts_cpl;
+ mirror_vq->async_last_pkts_n = n_pkts_cpl;
+ return 0;
+ }
+
+ for (i = 0; i < n_pkts_put; i++) {
+ from = (start_idx + i) & (vq_size - 1);
+ n_descs += pkts_info[from].descs;
+ pkts[i] = pkts_info[from].mbuf;
+ }
+
+ vq->async_last_pkts_n = n_pkts_cpl - n_pkts_put;
+ vq->async_pkts_inflight_n -= n_pkts_put;
+
+ if (likely(vq->enabled && vq->access_ok)) {
+ write_back_completed_descs_split(vq, n_descs);
+
+ __atomic_add_fetch(&vq->used->idx, n_descs,
+ __ATOMIC_RELEASE);
+ vhost_vring_call_split(dev, vq);
+ } else {
+ vq->last_async_desc_idx_split += n_descs;
+ }
+
+ mirror_vq->async_last_pkts_n = n_pkts_cpl - n_pkts_put;
+ mirror_vq->async_pkts_inflight_n -= n_pkts_put;
+
+ if (likely(mirror_vq->enabled && mirror_vq->access_ok)) {
+ write_back_completed_descs_split(mirror_vq, n_descs);
+
+ __atomic_add_fetch(&mirror_vq->used->idx, n_descs,
+ __ATOMIC_RELEASE);
+ vhost_vring_call_split(mirror_dev, mirror_vq);
+ } else {
+ mirror_vq->last_async_desc_idx_split += n_descs;
+ }
+
+ return n_pkts_put;
+}
+
+
+uint16_t
+rte_vhost_poll_ingress_completed(int vid, uint16_t queue_id,
+ int mirror_vid, uint16_t mirror_queue_id,
+ struct rte_mbuf **pkts, uint16_t count)
+{
+ struct virtio_net *dev = get_device(vid);
+ struct vhost_virtqueue *vq;
+ struct virtio_net *mirror_dev = get_device(mirror_vid);
+
+ uint16_t n_pkts_cpl = 0;
+
+ if (unlikely(!dev))
+ return 0;
+
+ VHOST_LOG_DATA(DEBUG, "(%d) %s\n", dev->vid, __func__);
+ if (unlikely(!is_valid_virt_queue_idx(queue_id, 0, dev->nr_vring))) {
+ VHOST_LOG_DATA(ERR, "(%d) %s: invalid virtqueue idx %d.\n",
+ dev->vid, __func__, queue_id);
+ return 0;
+ }
+
+ vq = dev->virtqueue[queue_id];
+
+ if (unlikely(!vq->async_registered)) {
+ VHOST_LOG_DATA(ERR, "(%d) %s: async not registered for queue id %d.\n",
+ dev->vid, __func__, queue_id);
+ return 0;
+ }
+
+ rte_spinlock_lock(&vq->access_lock);
+
+ n_pkts_cpl = vhost_poll_ingress_completed(dev, queue_id,
+ mirror_dev, mirror_queue_id, pkts, count);
+
+ rte_spinlock_unlock(&vq->access_lock);
+
+ return n_pkts_cpl;
+}
+
+static __rte_always_inline void
+ingress_async_fill_desc(struct rte_vhost_async_desc *desc,
+ struct rte_vhost_iov_iter *src, struct rte_vhost_iov_iter *dst,
+ struct rte_vhost_iov_iter *mirror_dst)
+{
+ desc->src = src;
+ desc->dst = dst;
+ desc->mirror_dst = mirror_dst;
+}
+
+static __rte_always_inline int
+ingress_async_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
+ struct virtio_net *mirror_dev, struct vhost_virtqueue *mirror_vq,
+ struct rte_mbuf *m, struct buf_vector *buf_vec,
+ uint16_t nr_vec, uint16_t num_buffers,
+ struct buf_vector *mirror_buf_vec,
+ uint16_t mirror_nr_vec, uint16_t mirror_num_buffers,
+ struct iovec *src_iovec, struct iovec *dst_iovec,
+ struct iovec *mirror_dst_iovec,
+ struct rte_vhost_iov_iter *src_it,
+ struct rte_vhost_iov_iter *dst_it,
+ struct rte_vhost_iov_iter *mirror_dst_it,
+ int nr_iovec)
+{
+ struct rte_mbuf *hdr_mbuf;
+ struct virtio_net_hdr_mrg_rxbuf tmp_hdr1, *hdr1 = NULL;
+ struct virtio_net_hdr_mrg_rxbuf tmp_hdr2, *hdr2 = NULL;
+ uint64_t buf_addr1, buf_iova1;
+ uint64_t hdr_addr1;
+ uint64_t buf_addr2, buf_iova2;
+ uint64_t hdr_addr2;
+
+ uint64_t mapped_len;
+ uint64_t mapped_len1;
+ uint64_t mapped_len2;
+ uint32_t vec_idx1 = 0;
+ uint32_t vec_idx2 = 0;
+ uint32_t mbuf_offset, mbuf_avail;
+ uint32_t buf_offset1, buf_avail1;
+ uint32_t buf_offset2, buf_avail2;
+
+ uint32_t cpy_len, buf_len1, buf_len2;
+ int error = 0;
+
+ uint32_t tlen = 0;
+ int tvec_idx = 0;
+ void *hpa1, *hpa2;
+
+ if (unlikely(m == NULL)) {
+ error = -1;
+ goto out;
+ }
+
+ buf_addr1 = buf_vec[vec_idx1].buf_addr;
+ buf_iova1 = buf_vec[vec_idx1].buf_iova;
+ buf_len1 = buf_vec[vec_idx1].buf_len;
+
+ if (unlikely(buf_len1 < dev->vhost_hlen && nr_vec <= 1)) {
+ error = -1;
+ goto out;
+ }
+
+ buf_addr2 = mirror_buf_vec[vec_idx2].buf_addr;
+ buf_iova2 = mirror_buf_vec[vec_idx2].buf_iova;
+ buf_len2 = mirror_buf_vec[vec_idx2].buf_len;
+
+ if (unlikely(buf_len2 < mirror_dev->vhost_hlen && mirror_nr_vec <= 1)) {
+ error = -1;
+ goto out;
+ }
+
+ hdr_mbuf = m;
+ hdr_addr1 = buf_addr1;
+ if (unlikely(buf_len1 < dev->vhost_hlen)) {
+ memset(&tmp_hdr1, 0, sizeof(struct virtio_net_hdr_mrg_rxbuf));
+ hdr1 = &tmp_hdr1;
+ } else
+ hdr1 = (struct virtio_net_hdr_mrg_rxbuf *)(uintptr_t)hdr_addr1;
+
+ hdr_addr2 = buf_addr2;
+ if (unlikely(buf_len2 < mirror_dev->vhost_hlen)) {
+ memset(&tmp_hdr2, 0, sizeof(struct virtio_net_hdr_mrg_rxbuf));
+ hdr2 = &tmp_hdr2;
+ } else
+ hdr2 = (struct virtio_net_hdr_mrg_rxbuf *)(uintptr_t)hdr_addr2;
+
+ if (unlikely(buf_len1 < dev->vhost_hlen)) {
+ buf_offset1 = dev->vhost_hlen - buf_len1;
+ vec_idx1++;
+ buf_addr1 = buf_vec[vec_idx1].buf_addr;
+ buf_iova1 = buf_vec[vec_idx1].buf_iova;
+ buf_len1 = buf_vec[vec_idx1].buf_len;
+ buf_avail1 = buf_len1 - buf_offset1;
+ } else {
+ buf_offset1 = dev->vhost_hlen;
+ buf_avail1 = buf_len1 - dev->vhost_hlen;
+ }
+
+ if (unlikely(buf_len2 < mirror_dev->vhost_hlen)) {
+ buf_offset2 = mirror_dev->vhost_hlen - buf_len2;
+ vec_idx2++;
+ buf_addr2 = mirror_buf_vec[vec_idx2].buf_addr;
+ buf_iova2 = mirror_buf_vec[vec_idx2].buf_iova;
+ buf_len2 = mirror_buf_vec[vec_idx2].buf_len;
+ buf_avail2 = buf_len2 - buf_offset2;
+ } else {
+ buf_offset2 = mirror_dev->vhost_hlen;
+ buf_avail2 = buf_len2 - mirror_dev->vhost_hlen;
+ }
+
+ mbuf_avail = rte_pktmbuf_data_len(m);
+ mbuf_offset = 0;
+
+ int flag = 0;
+ static uint64_t total = 0;
+ while (mbuf_avail != 0 || m->next != NULL) {
+ /* done with current buf, get the next one */
+ if (buf_avail1 == 0) {
+ vec_idx1++;
+ if (unlikely(vec_idx1 >= nr_vec)) {
+ error = -1;
+ goto out;
+ }
+
+ buf_addr1 = buf_vec[vec_idx1].buf_addr;
+ buf_iova1 = buf_vec[vec_idx1].buf_iova;
+ buf_len1 = buf_vec[vec_idx1].buf_len;
+
+ buf_offset1 = 0;
+ buf_avail1 = buf_len1;
+ }
+
+ if (buf_avail2 == 0) {
+ vec_idx2++;
+ if (unlikely(vec_idx2 >= mirror_nr_vec)) {
+ error = -1;
+ goto out;
+ }
+
+ buf_addr2 = mirror_buf_vec[vec_idx2].buf_addr;
+ buf_iova2 = mirror_buf_vec[vec_idx2].buf_iova;
+ buf_len2 = mirror_buf_vec[vec_idx2].buf_len;
+
+ buf_offset2 = 0;
+ buf_avail2 = buf_len2;
+ }
+
+ /* done with current mbuf, get the next one */
+ if (mbuf_avail == 0) {
+ m = m->next;
+
+ mbuf_offset = 0;
+ mbuf_avail = rte_pktmbuf_data_len(m);
+ }
+
+ if (hdr_addr1) {
+ virtio_enqueue_offload(hdr_mbuf, &hdr1->hdr);
+ if (rxvq_is_mergeable(dev))
+ ASSIGN_UNLESS_EQUAL(hdr1->num_buffers,
+ num_buffers);
+
+ if (unlikely(hdr1 == &tmp_hdr1)) {
+ copy_vnet_hdr_to_desc(dev, vq, buf_vec, hdr1);
+ } else {
+ PRINT_PACKET(dev, (uintptr_t)hdr_addr1,
+ dev->vhost_hlen, 0);
+ vhost_log_cache_write_iova(dev, vq,
+ buf_vec[0].buf_iova,
+ dev->vhost_hlen);
+ }
+
+ hdr_addr1 = 0;
+ }
+
+ if (hdr_addr2) {
+ virtio_enqueue_offload(hdr_mbuf, &hdr2->hdr);
+ if (rxvq_is_mergeable(mirror_dev))
+ ASSIGN_UNLESS_EQUAL(hdr2->num_buffers,
+ mirror_num_buffers);
+
+ if (unlikely(hdr2 == &tmp_hdr2)) {
+ copy_vnet_hdr_to_desc(mirror_dev, mirror_vq, mirror_buf_vec, hdr2);
+ } else {
+ PRINT_PACKET(mirror_dev, (uintptr_t)hdr_addr2,
+ mirror_dev->vhost_hlen, 0);
+ vhost_log_cache_write_iova(mirror_dev, mirror_vq,
+ mirror_buf_vec[0].buf_iova,
+ mirror_dev->vhost_hlen);
+ }
+
+ hdr_addr2 = 0;
+ }
+
+ cpy_len = RTE_MIN(buf_avail1, mbuf_avail);
+ cpy_len = RTE_MIN(buf_avail2, cpy_len);
+
+ while (unlikely(cpy_len)) {
+ hpa1 = (void *)(uintptr_t)gpa_to_first_hpa(dev,
+ buf_iova1 + buf_offset1,
+ cpy_len, &mapped_len1);
+ if (unlikely(!hpa1)) {
+ VHOST_LOG_DATA(ERR, "(%d) %s: failed to get hpa1.\n",
+ dev->vid, __func__);
+ error = -1;
+ goto out;
+ }
+
+ hpa2 = (void *)(uintptr_t)gpa_to_first_hpa(mirror_dev,
+ buf_iova2 + buf_offset2,
+ cpy_len, &mapped_len2);
+ if (unlikely(!hpa2)) {
+ VHOST_LOG_DATA(ERR, "(%d) %s: failed to get hpa2.\n",
+ mirror_dev->vid, __func__);
+ error = -1;
+ goto out;
+ }
+
+ if ((((uint64_t)hpa1 & 0xFFF) ^ ((uint64_t)hpa2 & 0xFFF)) != 0 && flag == 0)
+ {
+ total++;
+ VHOST_LOG_DATA(ERR, "%lu....................... hpa1=%p hpa2=%p.\n", total, hpa1, hpa2);
+ }
+
+ if (unlikely(tvec_idx >= nr_iovec)) {
+ VHOST_LOG_DATA(ERR, "iovec is not enough for offloading\n");
+ return -1;
+ }
+
+ mapped_len = RTE_MIN(mapped_len1, mapped_len2);
+
+ async_fill_vec(src_iovec + tvec_idx,
+ (void *)(uintptr_t)rte_pktmbuf_iova_offset(m,
+ mbuf_offset), (size_t)mapped_len);
+ async_fill_vec(dst_iovec + tvec_idx,
+ hpa1, (size_t)mapped_len);
+ async_fill_vec(mirror_dst_iovec + tvec_idx,
+ hpa2, (size_t)mapped_len);
+
+ tlen += (uint32_t)mapped_len;
+ cpy_len -= (uint32_t)mapped_len;
+ mbuf_avail -= (uint32_t)mapped_len;
+ mbuf_offset += (uint32_t)mapped_len;
+ buf_avail1 -= (uint32_t)mapped_len;
+ buf_offset1 += (uint32_t)mapped_len;
+ buf_avail2 -= (uint32_t)mapped_len;
+ buf_offset2 += (uint32_t)mapped_len;
+ tvec_idx++;
+ }
+ flag++;
+ }
+
+ async_fill_iter(src_it, tlen, src_iovec, tvec_idx);
+ async_fill_iter(dst_it, tlen, dst_iovec, tvec_idx);
+ async_fill_iter(mirror_dst_it, tlen, mirror_dst_iovec, tvec_idx);
+out:
+ return error;
+}
+
+static __rte_noinline uint32_t
+virtio_dev_ingress_async_submit_split(struct virtio_net *dev,
+ struct vhost_virtqueue *vq, uint16_t queue_id,
+ struct virtio_net *mirror_dev,
+ struct vhost_virtqueue *mirror_vq, uint16_t mirror_queue_id,
+ struct rte_mbuf **pkts, uint32_t count)
+{
+ struct buf_vector buf_vec[BUF_VECTOR_MAX];
+ struct buf_vector mirror_buf_vec[BUF_VECTOR_MAX];
+ uint32_t pkt_idx = 0, pkt_burst_idx = 0;
+ uint16_t num_buffers;
+ uint16_t mirror_num_buffers;
+ uint16_t avail_head1;
+ uint16_t avail_head2;
+
+ struct rte_vhost_iov_iter *it_pool1 = vq->it_pool;
+ struct rte_vhost_iov_iter *it_pool2 = mirror_vq->it_pool;
+ struct iovec *vec_pool1 = vq->vec_pool;
+ struct iovec *vec_pool2 = mirror_vq->vec_pool;
+ struct rte_vhost_async_desc tdes[MAX_PKT_BURST];
+ struct iovec *src_iovec = vec_pool1;
+ struct iovec *dst_iovec = vec_pool1 + (VHOST_MAX_ASYNC_VEC >> 1);
+ struct iovec *mirror_dst_iovec = vec_pool2;
+ struct async_inflight_info *pkts_info1 = vq->async_pkts_info;
+
+ uint32_t n_pkts = 0, pkt_err = 0;
+ int32_t n_xfer;
+ uint16_t slot_idx1 = 0;
+ uint16_t iovec_idx1 = 0, iovec_idx2 = 0, it_idx1 = 0, it_idx2 = 0;
+
+ /*
+ * The ordering between avail index and desc reads need to be enforced.
+ */
+ avail_head1 = __atomic_load_n(&vq->avail->idx, __ATOMIC_ACQUIRE);
+ avail_head2 = __atomic_load_n(&mirror_vq->avail->idx, __ATOMIC_ACQUIRE);
+
+ rte_prefetch0(&vq->avail->ring[vq->last_avail_idx & (vq->size - 1)]);
+ rte_prefetch0(&mirror_vq->avail->ring[mirror_vq->last_avail_idx & (mirror_vq->size - 1)]);
+
+ for (pkt_idx = 0; pkt_idx < count; pkt_idx++) {
+ uint16_t vhost_hlen = dev->vhost_hlen > mirror_dev->vhost_hlen ?
+ dev->vhost_hlen : mirror_dev->vhost_hlen;
+ uint32_t pkt_len = pkts[pkt_idx]->pkt_len + vhost_hlen;
+ uint16_t nr_vec = 0;
+ uint16_t mirror_nr_vec = 0;
+
+ if (unlikely(reserve_avail_buf_split(dev, vq,
+ pkt_len, buf_vec, &num_buffers,
+ avail_head1, &nr_vec) < 0)) {
+ VHOST_LOG_DATA(DEBUG,
+ "(%d) failed to get enough desc from vring1\n",
+ dev->vid);
+ vq->shadow_used_idx -= num_buffers;
+ break;
+ }
+
+ if (unlikely(reserve_avail_buf_split(mirror_dev, mirror_vq,
+ pkt_len, mirror_buf_vec, &mirror_num_buffers,
+ avail_head2, &mirror_nr_vec) < 0)) {
+ VHOST_LOG_DATA(DEBUG,
+ "(%d) failed to get enough desc from vring2\n",
+ mirror_dev->vid);
+ mirror_vq->shadow_used_idx -= mirror_num_buffers;
+ break;
+ }
+
+ if (ingress_async_mbuf_to_desc(dev, vq, mirror_dev, mirror_vq, pkts[pkt_idx],
+ buf_vec, nr_vec, num_buffers,
+ mirror_buf_vec, mirror_nr_vec, mirror_num_buffers,
+ &src_iovec[iovec_idx1], &dst_iovec[iovec_idx1],
+ &mirror_dst_iovec[iovec_idx2],
+ &it_pool1[it_idx1], &it_pool1[it_idx1 + 1],
+ &it_pool2[it_idx2],
+ (VHOST_MAX_ASYNC_VEC >> 1) - iovec_idx1) < 0) {
+ vq->shadow_used_idx -= num_buffers;
+ mirror_vq->shadow_used_idx -= mirror_num_buffers;
+ break;
+ }
+
+ ingress_async_fill_desc(&tdes[pkt_burst_idx++], &it_pool1[it_idx1],
+ &it_pool1[it_idx1 + 1], &it_pool2[it_idx2]);
+
+ slot_idx1 = (vq->async_pkts_idx + pkt_idx) & (vq->size - 1);
+ pkts_info1[slot_idx1].descs = num_buffers;
+ pkts_info1[slot_idx1].mbuf = pkts[pkt_idx];
+
+ iovec_idx1 += it_pool1[it_idx1].nr_segs;
+ it_idx1 += 2;
+
+ iovec_idx2 += it_pool2[it_idx2].nr_segs;
+ it_idx2 += 1;
+
+ vq->last_avail_idx += num_buffers;
+ mirror_vq->last_avail_idx += mirror_num_buffers;
+
+ /*
+ * conditions to trigger async device transfer:
+ * - buffered packet number reaches transfer threshold
+ * - unused async iov number is less than max vhost vector
+ */
+ if (unlikely(pkt_burst_idx >= VHOST_ASYNC_BATCH_THRESHOLD ||
+ ((VHOST_MAX_ASYNC_VEC >> 1) - iovec_idx1 <
+ BUF_VECTOR_MAX) ||
+ ((VHOST_MAX_ASYNC_VEC >> 1) - iovec_idx2 <
+ BUF_VECTOR_MAX))) {
+
+ n_xfer = vq->async_ops.transfer_data(dev->vid,
+ queue_id, tdes, 0, pkt_burst_idx, true);
+ if (likely(n_xfer >= 0)) {
+ n_pkts = n_xfer;
+ } else {
+ VHOST_LOG_DATA(ERR,
+ "(%d) %s: failed to transfer data for queue id %d.\n",
+ mirror_dev->vid, __func__, mirror_queue_id);
+ n_pkts = 0;
+ }
+
+ iovec_idx1 = 0;
+ iovec_idx2 = 0;
+ it_idx1 = 0;
+ it_idx2 = 0;
+
+ if (unlikely(n_pkts < pkt_burst_idx)) {
+ /*
+ * log error packets number here and do actual
+ * error processing when applications poll
+ * completion
+ */
+ pkt_err = pkt_burst_idx - n_pkts;
+ pkt_idx++;
+ pkt_burst_idx = 0;
+ break;
+ }
+
+ pkt_burst_idx = 0;
+ }
+ }
+
+ if (pkt_burst_idx) {
+ n_xfer = vq->async_ops.transfer_data(dev->vid, queue_id, tdes, 0, pkt_burst_idx, true);
+ if (likely(n_xfer >= 0)) {
+ n_pkts = n_xfer;
+ } else {
+ VHOST_LOG_DATA(ERR, "(%d) %s: failed to transfer data for queue id %d.\n",
+ dev->vid, __func__, queue_id);
+ n_pkts = 0;
+ }
+
+ if (unlikely(n_pkts < pkt_burst_idx))
+ pkt_err = pkt_burst_idx - n_pkts;
+ }
+
+ if (unlikely(pkt_err)) {
+ uint16_t num_descs1 = 0;
+ uint16_t num_descs2 = 0;
+ /* update number of completed packets */
+ pkt_idx -= pkt_err;
+
+ /* calculate the sum of descriptors to revert */
+ while (pkt_err-- > 0) {
+ num_descs1 += pkts_info1[slot_idx1 & (vq->size - 1)].descs;
+ slot_idx1--;
+ }
+
+ /* recover shadow used ring and available ring */
+ vq->shadow_used_idx -= num_descs1;
+ vq->last_avail_idx -= num_descs1;
+
+ mirror_vq->shadow_used_idx -= num_descs2;
+ mirror_vq->last_avail_idx -= num_descs2;
+ }
+
+ /* keep used descriptors */
+ if (likely(vq->shadow_used_idx)) {
+ uint16_t to = vq->async_desc_idx_split & (vq->size - 1);
+
+ store_dma_desc_info_split(vq->shadow_used_split,
+ vq->async_descs_split, vq->size, 0, to, vq->shadow_used_idx);
+
+ vq->async_desc_idx_split += vq->shadow_used_idx;
+ vq->async_pkts_idx += pkt_idx;
+ vq->async_pkts_inflight_n += pkt_idx;
+ vq->shadow_used_idx = 0;
+ }
+
+ if (likely(mirror_vq->shadow_used_idx)) {
+ uint16_t to = mirror_vq->async_desc_idx_split & (mirror_vq->size - 1);
+
+ store_dma_desc_info_split(mirror_vq->shadow_used_split,
+ mirror_vq->async_descs_split, mirror_vq->size, 0, to, mirror_vq->shadow_used_idx);
+
+ mirror_vq->async_desc_idx_split += mirror_vq->shadow_used_idx;
+ mirror_vq->async_pkts_idx += pkt_idx;
+ mirror_vq->async_pkts_inflight_n += pkt_idx;
+ mirror_vq->shadow_used_idx = 0;
+ }
+
+ return pkt_idx;
+}
+
+
+static __rte_always_inline uint32_t
+virtio_dev_ingress_async_submit(struct virtio_net *dev, uint16_t queue_id,
+ struct virtio_net *mirror_dev, uint16_t mirror_queue_id, struct rte_mbuf **pkts, uint32_t count)
+{
+ VHOST_LOG_DATA(DEBUG, "(%d) (%d) %s\n", dev->vid, mirror_dev->vid, __func__);
+ if (unlikely(!is_valid_virt_queue_idx(queue_id, 0, dev->nr_vring))) {
+ VHOST_LOG_DATA(ERR, "(%d) %s: invalid virtqueue idx %d.\n",
+ dev->vid, __func__, queue_id);
+ return 0;
+ }
+
+ if (unlikely(!is_valid_virt_queue_idx(mirror_queue_id, 0, mirror_dev->nr_vring))) {
+ VHOST_LOG_DATA(ERR, "(%d) %s: invalid virtqueue idx %d.\n",
+ mirror_dev->vid, __func__, mirror_queue_id);
+ return 0;
+ }
+
+ struct vhost_virtqueue *vq;
+ struct vhost_virtqueue *mirror_vq;
+ uint32_t nb_tx = 0;
+
+ vq = dev->virtqueue[queue_id];
+ mirror_vq = mirror_dev->virtqueue[mirror_queue_id];
+
+ rte_spinlock_lock(&vq->access_lock);
+
+ if (unlikely(!vq->enabled || !vq->async_registered))
+ goto out_access_unlock;
+
+ if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
+ vhost_user_iotlb_rd_lock(vq);
+
+ if (unlikely(!vq->access_ok))
+ if (unlikely(vring_translate(dev, vq) < 0))
+ goto out;
+
+ count = RTE_MIN((uint32_t)MAX_PKT_BURST, count);
+ if (count == 0)
+ goto out;
+
+ nb_tx = virtio_dev_ingress_async_submit_split(dev, vq, queue_id,
+ mirror_dev, mirror_vq, mirror_queue_id, pkts, count);
+
+out:
+ if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
+ vhost_user_iotlb_rd_unlock(vq);
+
+out_access_unlock:
+ rte_spinlock_unlock(&vq->access_lock);
+
+ return nb_tx;
+}
+
+
+uint16_t
+rte_vhost_submit_ingress_mirroring_burst(int vid, uint16_t queue_id,
+ int mirror_vid, uint16_t mirror_queue_id, struct rte_mbuf **pkts, uint16_t count)
+{
+ struct virtio_net *dev = get_device(vid);
+ struct virtio_net *mirror_dev = get_device(mirror_vid);
+
+ if (!dev || !mirror_dev)
+ return 0;
+
+ if (unlikely(!(dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
+ VHOST_LOG_DATA(ERR,
+ "(%d) %s: built-in vhost net backend is disabled.\n",
+ dev->vid, __func__);
+ return 0;
+ }
+
+ if (unlikely(!(mirror_dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
+ VHOST_LOG_DATA(ERR,
+ "(%d) %s: built-in vhost net backend is disabled.\n",
+ mirror_dev->vid, __func__);
+ return 0;
+ }
+
+ return virtio_dev_ingress_async_submit(dev, queue_id,
+ mirror_dev, mirror_queue_id, pkts, count);
+}
+
static inline bool
virtio_net_with_host_offload(struct virtio_net *dev)
{
--
2.35.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [RFC 2/2] vhost: add egress API for port mirroring datapath
2022-08-14 12:49 [RFC 0/2] vhost: add port mirroring function in the vhost lib Cheng Jiang
2022-08-14 12:49 ` [RFC 1/2] vhost: add ingress API for port mirroring datapath Cheng Jiang
@ 2022-08-14 12:49 ` Cheng Jiang
1 sibling, 0 replies; 7+ messages in thread
From: Cheng Jiang @ 2022-08-14 12:49 UTC (permalink / raw)
To: maxime.coquelin, chenbo.xia
Cc: dev, jiayu.hu, xuan.ding, wenwux.ma, yuanx.wang, yvonnex.yang,
Cheng Jiang
This patch implements such an egress function on the Vhost lib. When
data is received from a front-end, it will also send the data to its
mirrorfront-end.
Signed-off-by: Cheng Jiang <cheng1.jiang@intel.com>
Signed-off-by: Wenwu Ma <wenwux.ma@intel.com>
---
lib/vhost/rte_vhost_async.h | 12 +-
lib/vhost/version.map | 3 +
lib/vhost/virtio_net.c | 729 ++++++++++++++++++++++++++++++++++++
3 files changed, 742 insertions(+), 2 deletions(-)
diff --git a/lib/vhost/rte_vhost_async.h b/lib/vhost/rte_vhost_async.h
index b199af078c..b0772c2db7 100644
--- a/lib/vhost/rte_vhost_async.h
+++ b/lib/vhost/rte_vhost_async.h
@@ -85,11 +85,12 @@ struct rte_vhost_async_channel_ops {
};
/**
- * inflight async packet information
+ * in-flight async packet information
*/
struct async_inflight_info {
struct rte_mbuf *mbuf;
- uint16_t descs; /* num of descs inflight */
+ struct virtio_net_hdr nethdr;
+ uint16_t descs; /* num of descs in-flight */
uint16_t nr_buffers; /* num of buffers inflight for packed ring */
};
@@ -268,4 +269,11 @@ __rte_experimental
uint16_t rte_vhost_clear_queue_thread_unsafe(int vid, uint16_t queue_id,
struct rte_mbuf **pkts, uint16_t count);
+__rte_experimental
+uint16_t
+rte_vhost_async_try_egress_burst(int vid, uint16_t queue_id,
+ int mirr_vid, uint16_t mirr_queue_id,
+ struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count,
+ int *nr_inflight);
+
#endif /* _RTE_VHOST_ASYNC_H_ */
diff --git a/lib/vhost/version.map b/lib/vhost/version.map
index 4c35fa4555..2529943a91 100644
--- a/lib/vhost/version.map
+++ b/lib/vhost/version.map
@@ -87,4 +87,7 @@ EXPERIMENTAL {
rte_vhost_async_channel_register_thread_unsafe;
rte_vhost_async_channel_unregister_thread_unsafe;
rte_vhost_clear_queue_thread_unsafe;
+
+ # added in 21.11
+ rte_vhost_async_try_egress_burst;
};
diff --git a/lib/vhost/virtio_net.c b/lib/vhost/virtio_net.c
index c9f0bb22e5..92074377b2 100644
--- a/lib/vhost/virtio_net.c
+++ b/lib/vhost/virtio_net.c
@@ -3827,3 +3827,732 @@ rte_vhost_dequeue_burst(int vid, uint16_t queue_id,
return count;
}
+
+static __rte_always_inline uint16_t
+async_poll_egress_completed_split(struct virtio_net *dev,
+ struct vhost_virtqueue *vq, uint16_t queue_id,
+ struct virtio_net *mirr_dev, struct vhost_virtqueue *mirr_vq,
+ struct rte_mbuf **pkts, uint16_t count, bool legacy_ol_flags)
+{
+ uint16_t n_pkts_cpl = 0, n_pkts_put = 0;
+ uint16_t start_idx, pkt_idx, from;
+ struct async_inflight_info *pkts_info;
+ uint16_t mirror_n_pkts_cpl = 0, n_descs = 0;
+
+ pkt_idx = vq->async_pkts_idx & (vq->size - 1);
+ pkts_info = vq->async_pkts_info;
+ start_idx = virtio_dev_rx_async_get_info_idx(pkt_idx, vq->size,
+ vq->async_pkts_inflight_n);
+
+ if (count > vq->async_last_pkts_n) {
+ int ret;
+
+ ret = vq->async_ops.check_completed_copies(dev->vid, queue_id,
+ 0, count - vq->async_last_pkts_n);
+ if (unlikely(ret < 0)) {
+ VHOST_LOG_DATA(ERR, "(%d) async channel poll error\n", dev->vid);
+ ret = 0;
+ }
+ n_pkts_cpl = ret;
+ }
+
+ n_pkts_cpl += vq->async_last_pkts_n;
+ mirror_n_pkts_cpl += mirr_vq->async_last_pkts_n;
+ if (unlikely(n_pkts_cpl == 0)) {
+ mirr_vq->async_last_pkts_n = mirror_n_pkts_cpl;
+ return 0;
+ }
+
+ n_pkts_put = RTE_MIN(count, n_pkts_cpl);
+
+ for (pkt_idx = 0; pkt_idx < n_pkts_put; pkt_idx++) {
+ from = (start_idx + pkt_idx) & (vq->size - 1);
+ pkts[pkt_idx] = pkts_info[from].mbuf;
+ n_descs += pkts_info[from].descs;
+
+ if (virtio_net_with_host_offload(dev))
+ vhost_dequeue_offload(&pkts_info[from].nethdr,
+ pkts[pkt_idx], legacy_ol_flags);
+ }
+
+ /* write back completed descs to used ring and update used idx */
+ write_back_completed_descs_split(vq, n_pkts_put);
+ __atomic_add_fetch(&vq->used->idx, n_pkts_put, __ATOMIC_RELEASE);
+ vhost_vring_call_split(dev, vq);
+
+ vq->async_last_pkts_n = n_pkts_cpl - n_pkts_put;
+ vq->async_pkts_inflight_n -= n_pkts_put;
+
+ if (likely(mirr_vq->enabled && mirr_vq->access_ok)) {
+ write_back_completed_descs_split(mirr_vq, n_descs);
+
+ __atomic_add_fetch(&mirr_vq->used->idx, n_descs,
+ __ATOMIC_RELEASE);
+ vhost_vring_call_split(mirr_dev, mirr_vq);
+ } else {
+ mirr_vq->last_async_desc_idx_split += n_descs;
+ }
+
+ return n_pkts_put;
+}
+
+static __rte_always_inline void
+egress_async_fill_desc(struct rte_vhost_async_desc *desc,
+ struct rte_vhost_iov_iter *src, struct rte_vhost_iov_iter *dst,
+ struct rte_vhost_iov_iter *mirror_dst)
+{
+ desc->src = src;
+ desc->dst = dst;
+ desc->mirror_dst = mirror_dst;
+}
+
+static __rte_always_inline int
+egress_async_desc_to_mbuf(struct virtio_net *dev,
+ struct buf_vector *buf_vec, uint16_t nr_vec,
+ struct rte_mbuf *m, struct rte_mempool *mbuf_pool,
+ struct iovec *src_iovec, struct iovec *dst_iovec,
+ struct rte_vhost_iov_iter *src_it,
+ struct rte_vhost_iov_iter *dst_it,
+ struct virtio_net *mirr_dev, struct vhost_virtqueue *mirr_vq __rte_unused,
+ struct buf_vector *mirr_buf_vec, uint16_t mirr_nr_vec, uint16_t mirr_num_buffers,
+ struct iovec *mirr_dst_iovec, struct rte_vhost_iov_iter *mirr_dst_it,
+ struct virtio_net_hdr *nethdr,
+ int nr_iovec)
+{
+ uint64_t buf_addr, buf_iova;
+ uint64_t mapped_len;
+ uint32_t tlen = 0;
+ uint32_t buf_avail, buf_offset, buf_len;
+ uint32_t mbuf_avail, mbuf_offset;
+ uint32_t cpy_len;
+ /* A counter to avoid desc dead loop chain */
+ uint16_t vec_idx = 0;
+ int tvec_idx = 0;
+ struct rte_mbuf *cur = m, *prev = m;
+ struct virtio_net_hdr tmp_hdr;
+ struct virtio_net_hdr *hdr = NULL;
+
+ int error = 0;
+ uint64_t mirror_mapped_len;
+ uint64_t mirror_buf_addr, mirror_buf_iova;
+ uint32_t mirror_buf_avail, mirror_buf_offset, mirror_buf_len;
+ uint32_t mirror_vec_idx = 0;
+
+ mirror_buf_addr = mirr_buf_vec[mirror_vec_idx].buf_addr;
+ mirror_buf_iova = mirr_buf_vec[mirror_vec_idx].buf_iova;
+ mirror_buf_len = mirr_buf_vec[mirror_vec_idx].buf_len;
+
+ if (unlikely(mirror_buf_len < mirr_dev->vhost_hlen && mirr_nr_vec <= 1)) {
+ error = -1;
+ goto out;
+ }
+
+ struct virtio_net_hdr_mrg_rxbuf *mirror_hdr = NULL;
+ mirror_hdr = (struct virtio_net_hdr_mrg_rxbuf *)(uintptr_t)mirror_buf_addr;
+ if (mirror_hdr && rxvq_is_mergeable(mirr_dev))
+ ASSIGN_UNLESS_EQUAL(mirror_hdr->num_buffers, mirr_num_buffers);
+
+ if (unlikely(mirror_buf_len < mirr_dev->vhost_hlen)) {
+ mirror_buf_offset = mirr_dev->vhost_hlen - mirror_buf_len;
+ mirror_vec_idx++;
+ mirror_buf_addr = mirr_buf_vec[mirror_vec_idx].buf_addr;
+ mirror_buf_iova = mirr_buf_vec[mirror_vec_idx].buf_iova;
+ mirror_buf_len = mirr_buf_vec[mirror_vec_idx].buf_len;
+ mirror_buf_avail = mirror_buf_len - mirror_buf_offset;
+ } else {
+ mirror_buf_offset = mirr_dev->vhost_hlen;
+ mirror_buf_avail = mirror_buf_len - mirr_dev->vhost_hlen;
+ }
+
+ buf_addr = buf_vec[vec_idx].buf_addr;
+ buf_len = buf_vec[vec_idx].buf_len;
+ buf_iova = buf_vec[vec_idx].buf_iova;
+
+ if (unlikely(buf_len < dev->vhost_hlen && nr_vec <= 1))
+ return -1;
+
+ if (virtio_net_with_host_offload(dev)) {
+ if (unlikely(buf_len < sizeof(struct virtio_net_hdr))) {
+ /*
+ * No luck, the virtio-net header doesn't fit
+ * in a contiguous virtual area.
+ */
+ copy_vnet_hdr_from_desc(&tmp_hdr, buf_vec);
+ hdr = &tmp_hdr;
+ } else {
+ hdr = (struct virtio_net_hdr *)((uintptr_t)buf_addr);
+ }
+ }
+
+ /*
+ * A virtio driver normally uses at least 2 desc buffers
+ * for Tx: the first for storing the header, and others
+ * for storing the data.
+ */
+ if (unlikely(buf_len < dev->vhost_hlen)) {
+ buf_offset = dev->vhost_hlen - buf_len;
+ vec_idx++;
+ buf_addr = buf_vec[vec_idx].buf_addr;
+ buf_iova = buf_vec[vec_idx].buf_iova;
+ buf_len = buf_vec[vec_idx].buf_len;
+ buf_avail = buf_len - buf_offset;
+ } else if (buf_len == dev->vhost_hlen) {
+ if (unlikely(++vec_idx >= nr_vec))
+ return -1;
+ buf_addr = buf_vec[vec_idx].buf_addr;
+ buf_iova = buf_vec[vec_idx].buf_iova;
+ buf_len = buf_vec[vec_idx].buf_len;
+
+ buf_offset = 0;
+ buf_avail = buf_len;
+ } else {
+ buf_offset = dev->vhost_hlen;
+ buf_avail = buf_vec[vec_idx].buf_len - dev->vhost_hlen;
+ }
+
+ PRINT_PACKET(dev, (uintptr_t)(buf_addr + buf_offset), (uint32_t)buf_avail, 0);
+
+ mbuf_offset = 0;
+ mbuf_avail = m->buf_len - RTE_PKTMBUF_HEADROOM;
+ int flag = 0;
+ static uint64_t total = 0;
+ while (1) {
+ cpy_len = RTE_MIN(buf_avail, mbuf_avail);
+ cpy_len = RTE_MIN(cpy_len, mirror_buf_avail);
+
+ while (cpy_len) {
+ void *hpa = (void *)(uintptr_t)gpa_to_first_hpa(dev,
+ buf_iova + buf_offset, cpy_len,
+ &mapped_len);
+ if (unlikely(!hpa)) {
+ VHOST_LOG_DATA(ERR, "(%d) %s: failed to get hpa.\n",
+ dev->vid, __func__);
+ return -1;
+ }
+
+ void *mirror_hpa = (void *)(uintptr_t)gpa_to_first_hpa(mirr_dev,
+ mirror_buf_iova + mirror_buf_offset, cpy_len,
+ &mirror_mapped_len);
+ if (unlikely(!mirror_hpa)) {
+ VHOST_LOG_DATA(ERR, "(%d) %s: failed to get mirror hpa.\n",
+ mirr_dev->vid, __func__);
+ error = -1;
+ goto out;
+ }
+
+ if (unlikely(tvec_idx >= nr_iovec)) {
+ VHOST_LOG_DATA(ERR, "iovec is not enough for offloading\n");
+ return -1;
+ }
+
+ if (unlikely(mirror_mapped_len != mapped_len)) {
+ VHOST_LOG_DATA(ERR, "original mapped len is not equal to mirror len\n");
+ return -1;
+ }
+
+ async_fill_vec(src_iovec + tvec_idx, hpa, (size_t)mapped_len);
+ async_fill_vec(dst_iovec + tvec_idx,
+ (void *)(uintptr_t)rte_pktmbuf_iova_offset(cur, mbuf_offset),
+ (size_t)mapped_len);
+ async_fill_vec(mirr_dst_iovec + tvec_idx,
+ mirror_hpa, (size_t)mirror_mapped_len);
+
+ if ((((uintptr_t)rte_pktmbuf_iova_offset(cur, mbuf_offset) & 0xFFF) ^ ((uint64_t)mirror_hpa & 0xFFF)) != 0 && flag == 0)
+ {
+ total++;
+ VHOST_LOG_DATA(ERR, "%lu.........mbuf=%p mirror_hpa=%p.\n", total, (void *)(uintptr_t)rte_pktmbuf_iova_offset(cur, mbuf_offset), mirror_hpa);
+ }
+
+ tvec_idx++;
+ tlen += (uint32_t)mapped_len;
+ cpy_len -= (uint32_t)mapped_len;
+ mbuf_avail -= (uint32_t)mapped_len;
+ mbuf_offset += (uint32_t)mapped_len;
+ buf_avail -= (uint32_t)mapped_len;
+ buf_offset += (uint32_t)mapped_len;
+ mirror_buf_avail -= (uint32_t)mapped_len;
+ mirror_buf_offset += (uint32_t)mapped_len;
+ }
+
+ /* This buf reaches to its end, get the next one */
+ if (buf_avail == 0) {
+ if (++vec_idx >= nr_vec)
+ break;
+
+ buf_addr = buf_vec[vec_idx].buf_addr;
+ buf_iova = buf_vec[vec_idx].buf_iova;
+ buf_len = buf_vec[vec_idx].buf_len;
+
+ buf_offset = 0;
+ buf_avail = buf_len;
+
+ PRINT_PACKET(dev, (uintptr_t)buf_addr, (uint32_t)buf_avail, 0);
+ }
+
+ if (mirror_buf_avail == 0) {
+ mirror_vec_idx++;
+ if (unlikely(mirror_vec_idx >= mirr_nr_vec)) {
+ error = -1;
+ goto out;
+ }
+
+ mirror_buf_addr = mirr_buf_vec[mirror_vec_idx].buf_addr;
+ mirror_buf_iova = mirr_buf_vec[mirror_vec_idx].buf_iova;
+ mirror_buf_len = mirr_buf_vec[mirror_vec_idx].buf_len;
+
+ mirror_buf_offset = 0;
+ mirror_buf_avail = mirror_buf_len;
+ }
+
+ /*
+ * This mbuf reaches to its end, get a new one
+ * to hold more data.
+ */
+ if (mbuf_avail == 0) {
+ cur = rte_pktmbuf_alloc(mbuf_pool);
+ if (unlikely(cur == NULL)) {
+ VHOST_LOG_DATA(ERR, "Failed to allocate memory for mbuf.\n");
+ return -1;
+ }
+
+ prev->next = cur;
+ prev->data_len = mbuf_offset;
+ m->nb_segs += 1;
+ m->pkt_len += mbuf_offset;
+ prev = cur;
+
+ mbuf_offset = 0;
+ mbuf_avail = cur->buf_len - RTE_PKTMBUF_HEADROOM;
+ }
+ flag++;
+ }
+
+ prev->data_len = mbuf_offset;
+ m->pkt_len += mbuf_offset;
+
+ if (tlen) {
+ async_fill_iter(src_it, tlen, src_iovec, tvec_idx);
+ async_fill_iter(dst_it, tlen, dst_iovec, tvec_idx);
+ async_fill_iter(mirr_dst_it, tlen, mirr_dst_iovec, tvec_idx);
+ if (hdr)
+ *nethdr = *hdr;
+ }
+out:
+ return error;
+}
+
+static __rte_always_inline uint16_t
+virtio_mirror_dev_tx_async_split(struct virtio_net *dev,
+ struct vhost_virtqueue *vq, uint16_t queue_id,
+ struct virtio_net *mirr_dev,
+ struct vhost_virtqueue *mirr_vq, uint16_t mirr_queue_id __rte_unused,
+ struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts,
+ uint16_t count, bool legacy_ol_flags)
+{
+ static bool allocerr_warned;
+ bool dropped = false;
+ uint16_t free_entries;
+ uint16_t pkt_idx, slot_idx = 0;
+ uint16_t nr_done_pkts = 0;
+ uint16_t nr_async_burst = 0;
+ uint16_t pkt_err = 0;
+ uint16_t iovec_idx = 0, it_idx = 0;
+ struct rte_vhost_iov_iter *it_pool = vq->it_pool;
+ struct iovec *vec_pool = vq->vec_pool;
+ struct iovec *src_iovec = vec_pool;
+ struct iovec *dst_iovec = vec_pool + (VHOST_MAX_ASYNC_VEC >> 1);
+ struct rte_vhost_async_desc tdes[MAX_PKT_BURST];
+ struct async_inflight_info *pkts_info = vq->async_pkts_info;
+ struct rte_mbuf *pkts_prealloc[MAX_PKT_BURST];
+
+
+ struct buf_vector mirror_buf_vec[BUF_VECTOR_MAX];
+ uint16_t mirror_num_buffers;
+ uint16_t mirror_avail_head;
+ mirror_avail_head = __atomic_load_n(&mirr_vq->avail->idx, __ATOMIC_ACQUIRE);
+ rte_prefetch0(&mirr_vq->avail->ring[mirr_vq->last_avail_idx & (mirr_vq->size - 1)]);
+
+ struct rte_vhost_iov_iter *mirror_it_pool = mirr_vq->it_pool;
+ struct iovec *mirror_dst_iovec = mirr_vq->vec_pool;
+ uint16_t mirror_iovec_idx = 0, mirror_it_idx = 0;
+
+ /**
+ * The ordering between avail index and
+ * desc reads needs to be enforced.
+ */
+ free_entries = __atomic_load_n(&vq->avail->idx, __ATOMIC_ACQUIRE) - vq->last_avail_idx;
+ if (free_entries == 0)
+ goto out;
+
+ rte_prefetch0(&vq->avail->ring[vq->last_avail_idx & (vq->size - 1)]);
+
+ count = RTE_MIN(count, MAX_PKT_BURST);
+ count = RTE_MIN(count, free_entries);
+ VHOST_LOG_DATA(DEBUG, "(%d) about to dequeue %u buffers\n", dev->vid, count);
+
+ if (rte_pktmbuf_alloc_bulk(mbuf_pool, pkts_prealloc, count))
+ goto out;
+
+ for (pkt_idx = 0; pkt_idx < count; pkt_idx++) {
+ uint16_t head_idx = 0;
+ uint16_t nr_vec = 0;
+ uint16_t to;
+ uint32_t buf_len;
+ int err;
+ struct buf_vector buf_vec[BUF_VECTOR_MAX];
+ struct rte_mbuf *pkt = pkts_prealloc[pkt_idx];
+ uint16_t mirror_nr_vec = 0;
+
+ if (unlikely(fill_vec_buf_split(dev, vq, vq->last_avail_idx,
+ &nr_vec, buf_vec,
+ &head_idx, &buf_len,
+ VHOST_ACCESS_RO) < 0)) {
+ dropped = true;
+ break;
+ }
+
+ if (unlikely(reserve_avail_buf_split(mirr_dev, mirr_vq,
+ buf_len, mirror_buf_vec, &mirror_num_buffers,
+ mirror_avail_head, &mirror_nr_vec) < 0)) {
+ VHOST_LOG_DATA(DEBUG,
+ "(%d) failed to get enough desc from mirror vring\n",
+ mirr_dev->vid);
+ mirr_vq->shadow_used_idx -= mirror_num_buffers;
+ dropped = true;
+ break;
+ }
+
+ err = virtio_dev_pktmbuf_prep(dev, pkt, buf_len);
+ if (unlikely(err)) {
+ /**
+ * mbuf allocation fails for jumbo packets when external
+ * buffer allocation is not allowed and linear buffer
+ * is required. Drop this packet.
+ */
+ if (!allocerr_warned) {
+ VHOST_LOG_DATA(ERR,
+ "Failed mbuf alloc of size %d from %s on %s.\n",
+ buf_len, mbuf_pool->name, dev->ifname);
+ allocerr_warned = true;
+ }
+ dropped = true;
+ break;
+ }
+
+ slot_idx = (vq->async_pkts_idx + pkt_idx) & (vq->size - 1);
+ err = egress_async_desc_to_mbuf(dev, buf_vec, nr_vec, pkt,
+ mbuf_pool, &src_iovec[iovec_idx],
+ &dst_iovec[iovec_idx], &it_pool[it_idx],
+ &it_pool[it_idx + 1],
+ mirr_dev, mirr_vq,
+ mirror_buf_vec, mirror_nr_vec, mirror_num_buffers,
+ &mirror_dst_iovec[mirror_iovec_idx],
+ &mirror_it_pool[mirror_it_idx],
+ &pkts_info[slot_idx].nethdr,
+ (VHOST_MAX_ASYNC_VEC >> 1) - iovec_idx);
+ if (unlikely(err)) {
+ if (!allocerr_warned) {
+ VHOST_LOG_DATA(ERR,
+ "Failed to offload copies to async channel %s.\n",
+ dev->ifname);
+ allocerr_warned = true;
+ }
+ dropped = true;
+ break;
+ }
+
+ egress_async_fill_desc(&tdes[nr_async_burst],
+ &it_pool[it_idx], &it_pool[it_idx + 1], &mirror_it_pool[mirror_it_idx]);
+ pkts_info[slot_idx].mbuf = pkt;
+ nr_async_burst++;
+
+ iovec_idx += it_pool[it_idx].nr_segs;
+ it_idx += 2;
+
+ mirror_iovec_idx += mirror_it_pool[mirror_it_idx].nr_segs;
+ mirror_it_idx += 1;
+ mirr_vq->last_avail_idx += mirror_num_buffers;
+ pkts_info[slot_idx].descs = mirror_num_buffers;
+
+ /* store used descs */
+ to = vq->async_desc_idx_split & (vq->size - 1);
+ vq->async_descs_split[to].id = head_idx;
+ vq->async_descs_split[to].len = 0;
+ vq->async_desc_idx_split++;
+
+ vq->last_avail_idx++;
+
+ if (unlikely(nr_async_burst >= VHOST_ASYNC_BATCH_THRESHOLD)) {
+ uint16_t nr_pkts;
+ int32_t ret;
+
+ ret = vq->async_ops.transfer_data(dev->vid, queue_id,
+ tdes, 0, nr_async_burst, true);
+ if (unlikely(ret < 0)) {
+ VHOST_LOG_DATA(ERR, "(%d) async channel submit error\n", dev->vid);
+ ret = 0;
+ }
+ nr_pkts = ret;
+
+ vq->async_pkts_inflight_n += nr_pkts;
+ it_idx = 0;
+ iovec_idx = 0;
+
+ mirror_iovec_idx = 0;
+ mirror_it_idx = 0;
+
+ if (unlikely(nr_pkts < nr_async_burst)) {
+ pkt_err = nr_async_burst - nr_pkts;
+ nr_async_burst = 0;
+ pkt_idx++;
+ break;
+ }
+ nr_async_burst = 0;
+ }
+ }
+
+ if (unlikely(dropped))
+ rte_pktmbuf_free_bulk(&pkts_prealloc[pkt_idx], count - pkt_idx);
+
+ if (nr_async_burst) {
+ uint16_t nr_pkts;
+ int32_t ret;
+
+ ret = vq->async_ops.transfer_data(dev->vid, queue_id, tdes, 0, nr_async_burst, true);
+ if (unlikely(ret < 0)) {
+ VHOST_LOG_DATA(ERR, "(%d) async channel submit error\n", dev->vid);
+ ret = 0;
+ }
+ nr_pkts = ret;
+
+ vq->async_pkts_inflight_n += nr_pkts;
+
+ if (unlikely(nr_pkts < nr_async_burst))
+ pkt_err = nr_async_burst - nr_pkts;
+ }
+
+ if (unlikely(pkt_err)) {
+ uint16_t nr_err_dma = pkt_err;
+ uint16_t num_descs = 0;
+
+ pkt_idx -= nr_err_dma;
+
+ /**
+ * recover async channel copy related structures and free pktmbufs
+ * for error pkts.
+ */
+ vq->async_desc_idx_split -= nr_err_dma;
+ while (nr_err_dma-- > 0) {
+ rte_pktmbuf_free(pkts_info[slot_idx & (vq->size - 1)].mbuf);
+ num_descs += pkts_info[slot_idx & (vq->size - 1)].descs;
+ slot_idx--;
+ }
+
+ /* recover available ring */
+ vq->last_avail_idx -= pkt_err;
+
+ mirr_vq->shadow_used_idx -= num_descs;
+ mirr_vq->last_avail_idx -= num_descs;
+ }
+
+ vq->async_pkts_idx += pkt_idx;
+
+ if (likely(mirr_vq->shadow_used_idx)) {
+ uint16_t to = mirr_vq->async_desc_idx_split & (mirr_vq->size - 1);
+
+ store_dma_desc_info_split(mirr_vq->shadow_used_split,
+ mirr_vq->async_descs_split, mirr_vq->size, 0, to, mirr_vq->shadow_used_idx);
+
+ mirr_vq->async_desc_idx_split += mirr_vq->shadow_used_idx;
+ mirr_vq->async_pkts_idx += pkt_idx;
+ mirr_vq->async_pkts_inflight_n += pkt_idx;
+ mirr_vq->shadow_used_idx = 0;
+ }
+
+out:
+ if (vq->async_pkts_inflight_n > 0) {
+ nr_done_pkts = async_poll_egress_completed_split(dev, vq,
+ queue_id,
+ mirr_dev, mirr_vq,
+ pkts, count, legacy_ol_flags);
+ }
+
+ return nr_done_pkts;
+}
+
+__rte_noinline
+static uint16_t
+virtio_mirror_dev_tx_async_split_legacy(struct virtio_net *dev,
+ struct vhost_virtqueue *vq, uint16_t queue_id,
+ struct virtio_net *mirr_dev,
+ struct vhost_virtqueue *mirr_vq, uint16_t mirr_queue_id,
+ struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts,
+ uint16_t count)
+{
+ return virtio_mirror_dev_tx_async_split(dev, vq, queue_id,
+ mirr_dev, mirr_vq, mirr_queue_id,
+ mbuf_pool,
+ pkts, count, true);
+}
+
+__rte_noinline
+static uint16_t
+virtio_mirror_dev_tx_async_split_compliant(struct virtio_net *dev,
+ struct vhost_virtqueue *vq, uint16_t queue_id,
+ struct virtio_net *mirr_dev,
+ struct vhost_virtqueue *mirr_vq, uint16_t mirr_queue_id,
+ struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts,
+ uint16_t count)
+{
+ return virtio_mirror_dev_tx_async_split(dev, vq, queue_id,
+ mirr_dev, mirr_vq, mirr_queue_id,
+ mbuf_pool,
+ pkts, count, false);
+}
+
+uint16_t
+rte_vhost_async_try_egress_burst(int vid, uint16_t queue_id,
+ int mirr_vid, uint16_t mirr_queue_id,
+ struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count,
+ int *nr_inflight)
+{
+ struct virtio_net *dev;
+ struct virtio_net *mirror_dev;
+ struct rte_mbuf *rarp_mbuf = NULL;
+ struct vhost_virtqueue *vq;
+ struct vhost_virtqueue *mirror_vq;
+ int16_t success = 1;
+
+ *nr_inflight = -1;
+
+ dev = get_device(vid);
+ mirror_dev = get_device(mirr_vid);
+ if (!dev || !mirror_dev)
+ return 0;
+
+ if (unlikely(!(dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))
+ || unlikely(!(mirror_dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
+ VHOST_LOG_DATA(ERR,
+ "(%d) %s: built-in vhost net backend is disabled.\n",
+ dev->vid, __func__);
+ return 0;
+ }
+
+ if (unlikely(!is_valid_virt_queue_idx(queue_id, 1, dev->nr_vring))
+ || unlikely(!is_valid_virt_queue_idx(mirr_queue_id, 0, mirror_dev->nr_vring))) {
+ VHOST_LOG_DATA(ERR,
+ "(%d) %s: invalid virtqueue idx %d.\n",
+ dev->vid, __func__, queue_id);
+ return 0;
+ }
+
+ vq = dev->virtqueue[queue_id];
+ mirror_vq = mirror_dev->virtqueue[mirr_queue_id];
+
+ if (unlikely(rte_spinlock_trylock(&vq->access_lock) == 0)
+ || unlikely(rte_spinlock_trylock(&mirror_vq->access_lock) == 0))
+ return 0;
+
+ if (unlikely(vq->enabled == 0) || unlikely(mirror_vq->enabled == 0)) {
+ count = 0;
+ goto out_access_unlock;
+ }
+
+ if (unlikely(!vq->async_registered) || unlikely(!mirror_vq->async_registered)) {
+ VHOST_LOG_DATA(ERR, "(%d) %s: async not registered for queue id %d.\n",
+ dev->vid, __func__, queue_id);
+ count = 0;
+ goto out_access_unlock;
+ }
+
+ if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
+ vhost_user_iotlb_rd_lock(vq);
+
+ if (unlikely(vq->access_ok == 0) || unlikely(mirror_vq->access_ok == 0))
+ if (unlikely(vring_translate(dev, vq) < 0)
+ || unlikely(vring_translate(mirror_dev, mirror_vq) < 0)) {
+ count = 0;
+ goto out_access_unlock;
+ }
+
+ /*
+ * Construct a RARP broadcast packet, and inject it to the "pkts"
+ * array, to looks like that guest actually send such packet.
+ *
+ * Check user_send_rarp() for more information.
+ *
+ * broadcast_rarp shares a cacheline in the virtio_net structure
+ * with some fields that are accessed during enqueue and
+ * __atomic_compare_exchange_n causes a write if performed compare
+ * and exchange. This could result in false sharing between enqueue
+ * and dequeue.
+ *
+ * Prevent unnecessary false sharing by reading broadcast_rarp first
+ * and only performing compare and exchange if the read indicates it
+ * is likely to be set.
+ */
+ if (unlikely(__atomic_load_n(&dev->broadcast_rarp, __ATOMIC_ACQUIRE) &&
+ __atomic_compare_exchange_n(&dev->broadcast_rarp,
+ &success, 0, 0, __ATOMIC_RELEASE, __ATOMIC_RELAXED))) {
+
+ rarp_mbuf = rte_net_make_rarp_packet(mbuf_pool, &dev->mac);
+ if (rarp_mbuf == NULL) {
+ VHOST_LOG_DATA(ERR, "Failed to make RARP packet.\n");
+ count = 0;
+ goto out;
+ }
+ count -= 1;
+ }
+
+#if 0
+ if (unlikely(__atomic_load_n(&mirror_dev->broadcast_rarp, __ATOMIC_ACQUIRE) &&
+ __atomic_compare_exchange_n(&mirror_dev->broadcast_rarp,
+ &success, 0, 0, __ATOMIC_RELEASE, __ATOMIC_RELAXED))) {
+
+ rarp_mbuf = rte_net_make_rarp_packet(mbuf_pool, &mirror_dev->mac);
+ if (rarp_mbuf == NULL) {
+ VHOST_LOG_DATA(ERR, "Failed to make RARP packet.\n");
+ count = 0;
+ goto out;
+ }
+ count -= 1;
+ }
+#endif
+ if (unlikely(vq_is_packed(dev)) || unlikely(vq_is_packed(mirror_dev))) {
+ VHOST_LOG_DATA(ERR,
+ "(%d) %s: async dequeue does not support packed ring.\n",
+ dev->vid, __func__);
+ return 0;
+ }
+
+ if (dev->flags & VIRTIO_DEV_LEGACY_OL_FLAGS)
+ count = virtio_mirror_dev_tx_async_split_legacy(dev, vq, queue_id,
+ mirror_dev, mirror_vq, mirr_queue_id,
+ mbuf_pool, pkts, count);
+ else
+ count = virtio_mirror_dev_tx_async_split_compliant(dev, vq, queue_id,
+ mirror_dev, mirror_vq, mirr_queue_id,
+ mbuf_pool, pkts, count);
+
+out:
+ *nr_inflight = vq->async_pkts_inflight_n;
+
+ if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
+ vhost_user_iotlb_rd_unlock(vq);
+
+out_access_unlock:
+ rte_spinlock_unlock(&vq->access_lock);
+ rte_spinlock_unlock(&mirror_vq->access_lock);
+
+ if (unlikely(rarp_mbuf != NULL)) {
+ /*
+ * Inject it to the head of "pkts" array, so that switch's mac
+ * learning table will get updated first.
+ */
+ memmove(&pkts[1], pkts, count * sizeof(struct rte_mbuf *));
+ pkts[0] = rarp_mbuf;
+ count += 1;
+ }
+
+ return count;
+}
--
2.35.1
^ permalink raw reply [flat|nested] 7+ messages in thread