1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation
7 #include <linux/virtio_net.h>
10 #include <rte_memcpy.h>
11 #include <rte_ether.h>
13 #include <rte_vhost.h>
18 #include <rte_spinlock.h>
19 #include <rte_malloc.h>
20 #include <rte_vhost_async.h>
25 #define MAX_BATCH_LEN 256
27 #define VHOST_ASYNC_BATCH_THRESHOLD 32
29 static __rte_always_inline bool
30 rxvq_is_mergeable(struct virtio_net *dev)
32 return dev->features & (1ULL << VIRTIO_NET_F_MRG_RXBUF);
35 static __rte_always_inline bool
36 virtio_net_is_inorder(struct virtio_net *dev)
38 return dev->features & (1ULL << VIRTIO_F_IN_ORDER);
42 is_valid_virt_queue_idx(uint32_t idx, int is_tx, uint32_t nr_vring)
44 return (is_tx ^ (idx & 1)) == 0 && idx < nr_vring;
48 do_data_copy_enqueue(struct virtio_net *dev, struct vhost_virtqueue *vq)
50 struct batch_copy_elem *elem = vq->batch_copy_elems;
51 uint16_t count = vq->batch_copy_nb_elems;
54 for (i = 0; i < count; i++) {
55 rte_memcpy(elem[i].dst, elem[i].src, elem[i].len);
56 vhost_log_cache_write_iova(dev, vq, elem[i].log_addr,
58 PRINT_PACKET(dev, (uintptr_t)elem[i].dst, elem[i].len, 0);
61 vq->batch_copy_nb_elems = 0;
65 do_data_copy_dequeue(struct vhost_virtqueue *vq)
67 struct batch_copy_elem *elem = vq->batch_copy_elems;
68 uint16_t count = vq->batch_copy_nb_elems;
71 for (i = 0; i < count; i++)
72 rte_memcpy(elem[i].dst, elem[i].src, elem[i].len);
74 vq->batch_copy_nb_elems = 0;
77 static __rte_always_inline void
78 do_flush_shadow_used_ring_split(struct virtio_net *dev,
79 struct vhost_virtqueue *vq,
80 uint16_t to, uint16_t from, uint16_t size)
82 rte_memcpy(&vq->used->ring[to],
83 &vq->shadow_used_split[from],
84 size * sizeof(struct vring_used_elem));
85 vhost_log_cache_used_vring(dev, vq,
86 offsetof(struct vring_used, ring[to]),
87 size * sizeof(struct vring_used_elem));
90 static __rte_always_inline void
91 flush_shadow_used_ring_split(struct virtio_net *dev, struct vhost_virtqueue *vq)
93 uint16_t used_idx = vq->last_used_idx & (vq->size - 1);
95 if (used_idx + vq->shadow_used_idx <= vq->size) {
96 do_flush_shadow_used_ring_split(dev, vq, used_idx, 0,
101 /* update used ring interval [used_idx, vq->size] */
102 size = vq->size - used_idx;
103 do_flush_shadow_used_ring_split(dev, vq, used_idx, 0, size);
105 /* update the left half used ring interval [0, left_size] */
106 do_flush_shadow_used_ring_split(dev, vq, 0, size,
107 vq->shadow_used_idx - size);
109 vq->last_used_idx += vq->shadow_used_idx;
111 vhost_log_cache_sync(dev, vq);
113 __atomic_add_fetch(&vq->used->idx, vq->shadow_used_idx,
115 vq->shadow_used_idx = 0;
116 vhost_log_used_vring(dev, vq, offsetof(struct vring_used, idx),
117 sizeof(vq->used->idx));
120 static __rte_always_inline void
121 async_flush_shadow_used_ring_split(struct virtio_net *dev,
122 struct vhost_virtqueue *vq)
124 uint16_t used_idx = vq->last_used_idx & (vq->size - 1);
126 if (used_idx + vq->shadow_used_idx <= vq->size) {
127 do_flush_shadow_used_ring_split(dev, vq, used_idx, 0,
128 vq->shadow_used_idx);
132 /* update used ring interval [used_idx, vq->size] */
133 size = vq->size - used_idx;
134 do_flush_shadow_used_ring_split(dev, vq, used_idx, 0, size);
136 /* update the left half used ring interval [0, left_size] */
137 do_flush_shadow_used_ring_split(dev, vq, 0, size,
138 vq->shadow_used_idx - size);
141 vq->last_used_idx += vq->shadow_used_idx;
142 vq->shadow_used_idx = 0;
145 static __rte_always_inline void
146 update_shadow_used_ring_split(struct vhost_virtqueue *vq,
147 uint16_t desc_idx, uint32_t len)
149 uint16_t i = vq->shadow_used_idx++;
151 vq->shadow_used_split[i].id = desc_idx;
152 vq->shadow_used_split[i].len = len;
155 static __rte_always_inline void
156 vhost_flush_enqueue_shadow_packed(struct virtio_net *dev,
157 struct vhost_virtqueue *vq)
160 uint16_t used_idx = vq->last_used_idx;
161 uint16_t head_idx = vq->last_used_idx;
162 uint16_t head_flags = 0;
164 /* Split loop in two to save memory barriers */
165 for (i = 0; i < vq->shadow_used_idx; i++) {
166 vq->desc_packed[used_idx].id = vq->shadow_used_packed[i].id;
167 vq->desc_packed[used_idx].len = vq->shadow_used_packed[i].len;
169 used_idx += vq->shadow_used_packed[i].count;
170 if (used_idx >= vq->size)
171 used_idx -= vq->size;
176 for (i = 0; i < vq->shadow_used_idx; i++) {
179 if (vq->shadow_used_packed[i].len)
180 flags = VRING_DESC_F_WRITE;
184 if (vq->used_wrap_counter) {
185 flags |= VRING_DESC_F_USED;
186 flags |= VRING_DESC_F_AVAIL;
188 flags &= ~VRING_DESC_F_USED;
189 flags &= ~VRING_DESC_F_AVAIL;
193 vq->desc_packed[vq->last_used_idx].flags = flags;
195 vhost_log_cache_used_vring(dev, vq,
197 sizeof(struct vring_packed_desc),
198 sizeof(struct vring_packed_desc));
200 head_idx = vq->last_used_idx;
204 vq_inc_last_used_packed(vq, vq->shadow_used_packed[i].count);
207 vq->desc_packed[head_idx].flags = head_flags;
209 vhost_log_cache_used_vring(dev, vq,
211 sizeof(struct vring_packed_desc),
212 sizeof(struct vring_packed_desc));
214 vq->shadow_used_idx = 0;
215 vhost_log_cache_sync(dev, vq);
218 static __rte_always_inline void
219 vhost_flush_dequeue_shadow_packed(struct virtio_net *dev,
220 struct vhost_virtqueue *vq)
222 struct vring_used_elem_packed *used_elem = &vq->shadow_used_packed[0];
224 vq->desc_packed[vq->shadow_last_used_idx].id = used_elem->id;
226 vq->desc_packed[vq->shadow_last_used_idx].flags = used_elem->flags;
228 vhost_log_cache_used_vring(dev, vq, vq->shadow_last_used_idx *
229 sizeof(struct vring_packed_desc),
230 sizeof(struct vring_packed_desc));
231 vq->shadow_used_idx = 0;
232 vhost_log_cache_sync(dev, vq);
235 static __rte_always_inline void
236 vhost_flush_enqueue_batch_packed(struct virtio_net *dev,
237 struct vhost_virtqueue *vq,
244 if (vq->shadow_used_idx) {
245 do_data_copy_enqueue(dev, vq);
246 vhost_flush_enqueue_shadow_packed(dev, vq);
249 flags = PACKED_DESC_ENQUEUE_USED_FLAG(vq->used_wrap_counter);
251 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
252 vq->desc_packed[vq->last_used_idx + i].id = ids[i];
253 vq->desc_packed[vq->last_used_idx + i].len = lens[i];
258 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE)
259 vq->desc_packed[vq->last_used_idx + i].flags = flags;
261 vhost_log_cache_used_vring(dev, vq, vq->last_used_idx *
262 sizeof(struct vring_packed_desc),
263 sizeof(struct vring_packed_desc) *
265 vhost_log_cache_sync(dev, vq);
267 vq_inc_last_used_packed(vq, PACKED_BATCH_SIZE);
270 static __rte_always_inline void
271 vhost_shadow_dequeue_batch_packed_inorder(struct vhost_virtqueue *vq,
274 vq->shadow_used_packed[0].id = id;
276 if (!vq->shadow_used_idx) {
277 vq->shadow_last_used_idx = vq->last_used_idx;
278 vq->shadow_used_packed[0].flags =
279 PACKED_DESC_DEQUEUE_USED_FLAG(vq->used_wrap_counter);
280 vq->shadow_used_packed[0].len = 0;
281 vq->shadow_used_packed[0].count = 1;
282 vq->shadow_used_idx++;
285 vq_inc_last_used_packed(vq, PACKED_BATCH_SIZE);
288 static __rte_always_inline void
289 vhost_shadow_dequeue_batch_packed(struct virtio_net *dev,
290 struct vhost_virtqueue *vq,
297 flags = PACKED_DESC_DEQUEUE_USED_FLAG(vq->used_wrap_counter);
299 if (!vq->shadow_used_idx) {
300 vq->shadow_last_used_idx = vq->last_used_idx;
301 vq->shadow_used_packed[0].id = ids[0];
302 vq->shadow_used_packed[0].len = 0;
303 vq->shadow_used_packed[0].count = 1;
304 vq->shadow_used_packed[0].flags = flags;
305 vq->shadow_used_idx++;
310 vhost_for_each_try_unroll(i, begin, PACKED_BATCH_SIZE) {
311 vq->desc_packed[vq->last_used_idx + i].id = ids[i];
312 vq->desc_packed[vq->last_used_idx + i].len = 0;
316 vhost_for_each_try_unroll(i, begin, PACKED_BATCH_SIZE)
317 vq->desc_packed[vq->last_used_idx + i].flags = flags;
319 vhost_log_cache_used_vring(dev, vq, vq->last_used_idx *
320 sizeof(struct vring_packed_desc),
321 sizeof(struct vring_packed_desc) *
323 vhost_log_cache_sync(dev, vq);
325 vq_inc_last_used_packed(vq, PACKED_BATCH_SIZE);
328 static __rte_always_inline void
329 vhost_shadow_dequeue_single_packed(struct vhost_virtqueue *vq,
335 flags = vq->desc_packed[vq->last_used_idx].flags;
336 if (vq->used_wrap_counter) {
337 flags |= VRING_DESC_F_USED;
338 flags |= VRING_DESC_F_AVAIL;
340 flags &= ~VRING_DESC_F_USED;
341 flags &= ~VRING_DESC_F_AVAIL;
344 if (!vq->shadow_used_idx) {
345 vq->shadow_last_used_idx = vq->last_used_idx;
347 vq->shadow_used_packed[0].id = buf_id;
348 vq->shadow_used_packed[0].len = 0;
349 vq->shadow_used_packed[0].flags = flags;
350 vq->shadow_used_idx++;
352 vq->desc_packed[vq->last_used_idx].id = buf_id;
353 vq->desc_packed[vq->last_used_idx].len = 0;
354 vq->desc_packed[vq->last_used_idx].flags = flags;
357 vq_inc_last_used_packed(vq, count);
360 static __rte_always_inline void
361 vhost_shadow_dequeue_single_packed_inorder(struct vhost_virtqueue *vq,
367 vq->shadow_used_packed[0].id = buf_id;
369 flags = vq->desc_packed[vq->last_used_idx].flags;
370 if (vq->used_wrap_counter) {
371 flags |= VRING_DESC_F_USED;
372 flags |= VRING_DESC_F_AVAIL;
374 flags &= ~VRING_DESC_F_USED;
375 flags &= ~VRING_DESC_F_AVAIL;
378 if (!vq->shadow_used_idx) {
379 vq->shadow_last_used_idx = vq->last_used_idx;
380 vq->shadow_used_packed[0].len = 0;
381 vq->shadow_used_packed[0].flags = flags;
382 vq->shadow_used_idx++;
385 vq_inc_last_used_packed(vq, count);
388 static __rte_always_inline void
389 vhost_shadow_enqueue_single_packed(struct virtio_net *dev,
390 struct vhost_virtqueue *vq,
394 uint16_t num_buffers)
397 for (i = 0; i < num_buffers; i++) {
398 /* enqueue shadow flush action aligned with batch num */
399 if (!vq->shadow_used_idx)
400 vq->shadow_aligned_idx = vq->last_used_idx &
402 vq->shadow_used_packed[vq->shadow_used_idx].id = id[i];
403 vq->shadow_used_packed[vq->shadow_used_idx].len = len[i];
404 vq->shadow_used_packed[vq->shadow_used_idx].count = count[i];
405 vq->shadow_aligned_idx += count[i];
406 vq->shadow_used_idx++;
409 if (vq->shadow_aligned_idx >= PACKED_BATCH_SIZE) {
410 do_data_copy_enqueue(dev, vq);
411 vhost_flush_enqueue_shadow_packed(dev, vq);
415 /* avoid write operation when necessary, to lessen cache issues */
416 #define ASSIGN_UNLESS_EQUAL(var, val) do { \
417 if ((var) != (val)) \
421 static __rte_always_inline void
422 virtio_enqueue_offload(struct rte_mbuf *m_buf, struct virtio_net_hdr *net_hdr)
424 uint64_t csum_l4 = m_buf->ol_flags & PKT_TX_L4_MASK;
426 if (m_buf->ol_flags & PKT_TX_TCP_SEG)
427 csum_l4 |= PKT_TX_TCP_CKSUM;
430 net_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
431 net_hdr->csum_start = m_buf->l2_len + m_buf->l3_len;
434 case PKT_TX_TCP_CKSUM:
435 net_hdr->csum_offset = (offsetof(struct rte_tcp_hdr,
438 case PKT_TX_UDP_CKSUM:
439 net_hdr->csum_offset = (offsetof(struct rte_udp_hdr,
442 case PKT_TX_SCTP_CKSUM:
443 net_hdr->csum_offset = (offsetof(struct rte_sctp_hdr,
448 ASSIGN_UNLESS_EQUAL(net_hdr->csum_start, 0);
449 ASSIGN_UNLESS_EQUAL(net_hdr->csum_offset, 0);
450 ASSIGN_UNLESS_EQUAL(net_hdr->flags, 0);
453 /* IP cksum verification cannot be bypassed, then calculate here */
454 if (m_buf->ol_flags & PKT_TX_IP_CKSUM) {
455 struct rte_ipv4_hdr *ipv4_hdr;
457 ipv4_hdr = rte_pktmbuf_mtod_offset(m_buf, struct rte_ipv4_hdr *,
459 ipv4_hdr->hdr_checksum = 0;
460 ipv4_hdr->hdr_checksum = rte_ipv4_cksum(ipv4_hdr);
463 if (m_buf->ol_flags & PKT_TX_TCP_SEG) {
464 if (m_buf->ol_flags & PKT_TX_IPV4)
465 net_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
467 net_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
468 net_hdr->gso_size = m_buf->tso_segsz;
469 net_hdr->hdr_len = m_buf->l2_len + m_buf->l3_len
471 } else if (m_buf->ol_flags & PKT_TX_UDP_SEG) {
472 net_hdr->gso_type = VIRTIO_NET_HDR_GSO_UDP;
473 net_hdr->gso_size = m_buf->tso_segsz;
474 net_hdr->hdr_len = m_buf->l2_len + m_buf->l3_len +
477 ASSIGN_UNLESS_EQUAL(net_hdr->gso_type, 0);
478 ASSIGN_UNLESS_EQUAL(net_hdr->gso_size, 0);
479 ASSIGN_UNLESS_EQUAL(net_hdr->hdr_len, 0);
483 static __rte_always_inline int
484 map_one_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
485 struct buf_vector *buf_vec, uint16_t *vec_idx,
486 uint64_t desc_iova, uint64_t desc_len, uint8_t perm)
488 uint16_t vec_id = *vec_idx;
492 uint64_t desc_chunck_len = desc_len;
494 if (unlikely(vec_id >= BUF_VECTOR_MAX))
497 desc_addr = vhost_iova_to_vva(dev, vq,
501 if (unlikely(!desc_addr))
504 rte_prefetch0((void *)(uintptr_t)desc_addr);
506 buf_vec[vec_id].buf_iova = desc_iova;
507 buf_vec[vec_id].buf_addr = desc_addr;
508 buf_vec[vec_id].buf_len = desc_chunck_len;
510 desc_len -= desc_chunck_len;
511 desc_iova += desc_chunck_len;
519 static __rte_always_inline int
520 fill_vec_buf_split(struct virtio_net *dev, struct vhost_virtqueue *vq,
521 uint32_t avail_idx, uint16_t *vec_idx,
522 struct buf_vector *buf_vec, uint16_t *desc_chain_head,
523 uint32_t *desc_chain_len, uint8_t perm)
525 uint16_t idx = vq->avail->ring[avail_idx & (vq->size - 1)];
526 uint16_t vec_id = *vec_idx;
529 uint32_t nr_descs = vq->size;
531 struct vring_desc *descs = vq->desc;
532 struct vring_desc *idesc = NULL;
534 if (unlikely(idx >= vq->size))
537 *desc_chain_head = idx;
539 if (vq->desc[idx].flags & VRING_DESC_F_INDIRECT) {
540 dlen = vq->desc[idx].len;
541 nr_descs = dlen / sizeof(struct vring_desc);
542 if (unlikely(nr_descs > vq->size))
545 descs = (struct vring_desc *)(uintptr_t)
546 vhost_iova_to_vva(dev, vq, vq->desc[idx].addr,
549 if (unlikely(!descs))
552 if (unlikely(dlen < vq->desc[idx].len)) {
554 * The indirect desc table is not contiguous
555 * in process VA space, we have to copy it.
557 idesc = vhost_alloc_copy_ind_table(dev, vq,
558 vq->desc[idx].addr, vq->desc[idx].len);
559 if (unlikely(!idesc))
569 if (unlikely(idx >= nr_descs || cnt++ >= nr_descs)) {
570 free_ind_table(idesc);
574 len += descs[idx].len;
576 if (unlikely(map_one_desc(dev, vq, buf_vec, &vec_id,
577 descs[idx].addr, descs[idx].len,
579 free_ind_table(idesc);
583 if ((descs[idx].flags & VRING_DESC_F_NEXT) == 0)
586 idx = descs[idx].next;
589 *desc_chain_len = len;
592 if (unlikely(!!idesc))
593 free_ind_table(idesc);
599 * Returns -1 on fail, 0 on success
602 reserve_avail_buf_split(struct virtio_net *dev, struct vhost_virtqueue *vq,
603 uint32_t size, struct buf_vector *buf_vec,
604 uint16_t *num_buffers, uint16_t avail_head,
608 uint16_t vec_idx = 0;
609 uint16_t max_tries, tries = 0;
611 uint16_t head_idx = 0;
615 cur_idx = vq->last_avail_idx;
617 if (rxvq_is_mergeable(dev))
618 max_tries = vq->size - 1;
623 if (unlikely(cur_idx == avail_head))
626 * if we tried all available ring items, and still
627 * can't get enough buf, it means something abnormal
630 if (unlikely(++tries > max_tries))
633 if (unlikely(fill_vec_buf_split(dev, vq, cur_idx,
636 VHOST_ACCESS_RW) < 0))
638 len = RTE_MIN(len, size);
639 update_shadow_used_ring_split(vq, head_idx, len);
651 static __rte_always_inline int
652 fill_vec_buf_packed_indirect(struct virtio_net *dev,
653 struct vhost_virtqueue *vq,
654 struct vring_packed_desc *desc, uint16_t *vec_idx,
655 struct buf_vector *buf_vec, uint32_t *len, uint8_t perm)
659 uint16_t vec_id = *vec_idx;
661 struct vring_packed_desc *descs, *idescs = NULL;
664 descs = (struct vring_packed_desc *)(uintptr_t)
665 vhost_iova_to_vva(dev, vq, desc->addr, &dlen, VHOST_ACCESS_RO);
666 if (unlikely(!descs))
669 if (unlikely(dlen < desc->len)) {
671 * The indirect desc table is not contiguous
672 * in process VA space, we have to copy it.
674 idescs = vhost_alloc_copy_ind_table(dev,
675 vq, desc->addr, desc->len);
676 if (unlikely(!idescs))
682 nr_descs = desc->len / sizeof(struct vring_packed_desc);
683 if (unlikely(nr_descs >= vq->size)) {
684 free_ind_table(idescs);
688 for (i = 0; i < nr_descs; i++) {
689 if (unlikely(vec_id >= BUF_VECTOR_MAX)) {
690 free_ind_table(idescs);
694 *len += descs[i].len;
695 if (unlikely(map_one_desc(dev, vq, buf_vec, &vec_id,
696 descs[i].addr, descs[i].len,
702 if (unlikely(!!idescs))
703 free_ind_table(idescs);
708 static __rte_always_inline int
709 fill_vec_buf_packed(struct virtio_net *dev, struct vhost_virtqueue *vq,
710 uint16_t avail_idx, uint16_t *desc_count,
711 struct buf_vector *buf_vec, uint16_t *vec_idx,
712 uint16_t *buf_id, uint32_t *len, uint8_t perm)
714 bool wrap_counter = vq->avail_wrap_counter;
715 struct vring_packed_desc *descs = vq->desc_packed;
716 uint16_t vec_id = *vec_idx;
718 if (avail_idx < vq->last_avail_idx)
722 * Perform a load-acquire barrier in desc_is_avail to
723 * enforce the ordering between desc flags and desc
726 if (unlikely(!desc_is_avail(&descs[avail_idx], wrap_counter)))
733 if (unlikely(vec_id >= BUF_VECTOR_MAX))
736 if (unlikely(*desc_count >= vq->size))
740 *buf_id = descs[avail_idx].id;
742 if (descs[avail_idx].flags & VRING_DESC_F_INDIRECT) {
743 if (unlikely(fill_vec_buf_packed_indirect(dev, vq,
749 *len += descs[avail_idx].len;
751 if (unlikely(map_one_desc(dev, vq, buf_vec, &vec_id,
752 descs[avail_idx].addr,
753 descs[avail_idx].len,
758 if ((descs[avail_idx].flags & VRING_DESC_F_NEXT) == 0)
761 if (++avail_idx >= vq->size) {
762 avail_idx -= vq->size;
772 static __rte_noinline void
773 copy_vnet_hdr_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
774 struct buf_vector *buf_vec,
775 struct virtio_net_hdr_mrg_rxbuf *hdr)
778 uint64_t remain = dev->vhost_hlen;
779 uint64_t src = (uint64_t)(uintptr_t)hdr, dst;
780 uint64_t iova = buf_vec->buf_iova;
783 len = RTE_MIN(remain,
785 dst = buf_vec->buf_addr;
786 rte_memcpy((void *)(uintptr_t)dst,
787 (void *)(uintptr_t)src,
790 PRINT_PACKET(dev, (uintptr_t)dst,
792 vhost_log_cache_write_iova(dev, vq,
802 static __rte_always_inline int
803 copy_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
804 struct rte_mbuf *m, struct buf_vector *buf_vec,
805 uint16_t nr_vec, uint16_t num_buffers)
807 uint32_t vec_idx = 0;
808 uint32_t mbuf_offset, mbuf_avail;
809 uint32_t buf_offset, buf_avail;
810 uint64_t buf_addr, buf_iova, buf_len;
813 struct rte_mbuf *hdr_mbuf;
814 struct batch_copy_elem *batch_copy = vq->batch_copy_elems;
815 struct virtio_net_hdr_mrg_rxbuf tmp_hdr, *hdr = NULL;
818 if (unlikely(m == NULL)) {
823 buf_addr = buf_vec[vec_idx].buf_addr;
824 buf_iova = buf_vec[vec_idx].buf_iova;
825 buf_len = buf_vec[vec_idx].buf_len;
827 if (unlikely(buf_len < dev->vhost_hlen && nr_vec <= 1)) {
834 if (unlikely(buf_len < dev->vhost_hlen))
837 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(uintptr_t)hdr_addr;
839 VHOST_LOG_DATA(DEBUG, "(%d) RX: num merge buffers %d\n",
840 dev->vid, num_buffers);
842 if (unlikely(buf_len < dev->vhost_hlen)) {
843 buf_offset = dev->vhost_hlen - buf_len;
845 buf_addr = buf_vec[vec_idx].buf_addr;
846 buf_iova = buf_vec[vec_idx].buf_iova;
847 buf_len = buf_vec[vec_idx].buf_len;
848 buf_avail = buf_len - buf_offset;
850 buf_offset = dev->vhost_hlen;
851 buf_avail = buf_len - dev->vhost_hlen;
854 mbuf_avail = rte_pktmbuf_data_len(m);
856 while (mbuf_avail != 0 || m->next != NULL) {
857 /* done with current buf, get the next one */
858 if (buf_avail == 0) {
860 if (unlikely(vec_idx >= nr_vec)) {
865 buf_addr = buf_vec[vec_idx].buf_addr;
866 buf_iova = buf_vec[vec_idx].buf_iova;
867 buf_len = buf_vec[vec_idx].buf_len;
873 /* done with current mbuf, get the next one */
874 if (mbuf_avail == 0) {
878 mbuf_avail = rte_pktmbuf_data_len(m);
882 virtio_enqueue_offload(hdr_mbuf, &hdr->hdr);
883 if (rxvq_is_mergeable(dev))
884 ASSIGN_UNLESS_EQUAL(hdr->num_buffers,
887 if (unlikely(hdr == &tmp_hdr)) {
888 copy_vnet_hdr_to_desc(dev, vq, buf_vec, hdr);
890 PRINT_PACKET(dev, (uintptr_t)hdr_addr,
892 vhost_log_cache_write_iova(dev, vq,
900 cpy_len = RTE_MIN(buf_avail, mbuf_avail);
902 if (likely(cpy_len > MAX_BATCH_LEN ||
903 vq->batch_copy_nb_elems >= vq->size)) {
904 rte_memcpy((void *)((uintptr_t)(buf_addr + buf_offset)),
905 rte_pktmbuf_mtod_offset(m, void *, mbuf_offset),
907 vhost_log_cache_write_iova(dev, vq,
908 buf_iova + buf_offset,
910 PRINT_PACKET(dev, (uintptr_t)(buf_addr + buf_offset),
913 batch_copy[vq->batch_copy_nb_elems].dst =
914 (void *)((uintptr_t)(buf_addr + buf_offset));
915 batch_copy[vq->batch_copy_nb_elems].src =
916 rte_pktmbuf_mtod_offset(m, void *, mbuf_offset);
917 batch_copy[vq->batch_copy_nb_elems].log_addr =
918 buf_iova + buf_offset;
919 batch_copy[vq->batch_copy_nb_elems].len = cpy_len;
920 vq->batch_copy_nb_elems++;
923 mbuf_avail -= cpy_len;
924 mbuf_offset += cpy_len;
925 buf_avail -= cpy_len;
926 buf_offset += cpy_len;
934 static __rte_always_inline void
935 async_fill_vec(struct iovec *v, void *base, size_t len)
941 static __rte_always_inline void
942 async_fill_iter(struct rte_vhost_iov_iter *it, size_t count,
943 struct iovec *vec, unsigned long nr_seg)
950 it->nr_segs = nr_seg;
957 static __rte_always_inline void
958 async_fill_desc(struct rte_vhost_async_desc *desc,
959 struct rte_vhost_iov_iter *src, struct rte_vhost_iov_iter *dst)
965 static __rte_always_inline int
966 async_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
967 struct rte_mbuf *m, struct buf_vector *buf_vec,
968 uint16_t nr_vec, uint16_t num_buffers,
969 struct iovec *src_iovec, struct iovec *dst_iovec,
970 struct rte_vhost_iov_iter *src_it,
971 struct rte_vhost_iov_iter *dst_it)
973 uint32_t vec_idx = 0;
974 uint32_t mbuf_offset, mbuf_avail;
975 uint32_t buf_offset, buf_avail;
976 uint64_t buf_addr, buf_iova, buf_len;
977 uint32_t cpy_len, cpy_threshold;
979 struct rte_mbuf *hdr_mbuf;
980 struct batch_copy_elem *batch_copy = vq->batch_copy_elems;
981 struct virtio_net_hdr_mrg_rxbuf tmp_hdr, *hdr = NULL;
989 if (unlikely(m == NULL)) {
994 cpy_threshold = vq->async_threshold;
996 buf_addr = buf_vec[vec_idx].buf_addr;
997 buf_iova = buf_vec[vec_idx].buf_iova;
998 buf_len = buf_vec[vec_idx].buf_len;
1000 if (unlikely(buf_len < dev->vhost_hlen && nr_vec <= 1)) {
1006 hdr_addr = buf_addr;
1007 if (unlikely(buf_len < dev->vhost_hlen))
1010 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(uintptr_t)hdr_addr;
1012 VHOST_LOG_DATA(DEBUG, "(%d) RX: num merge buffers %d\n",
1013 dev->vid, num_buffers);
1015 if (unlikely(buf_len < dev->vhost_hlen)) {
1016 buf_offset = dev->vhost_hlen - buf_len;
1018 buf_addr = buf_vec[vec_idx].buf_addr;
1019 buf_iova = buf_vec[vec_idx].buf_iova;
1020 buf_len = buf_vec[vec_idx].buf_len;
1021 buf_avail = buf_len - buf_offset;
1023 buf_offset = dev->vhost_hlen;
1024 buf_avail = buf_len - dev->vhost_hlen;
1027 mbuf_avail = rte_pktmbuf_data_len(m);
1030 while (mbuf_avail != 0 || m->next != NULL) {
1031 /* done with current buf, get the next one */
1032 if (buf_avail == 0) {
1034 if (unlikely(vec_idx >= nr_vec)) {
1039 buf_addr = buf_vec[vec_idx].buf_addr;
1040 buf_iova = buf_vec[vec_idx].buf_iova;
1041 buf_len = buf_vec[vec_idx].buf_len;
1044 buf_avail = buf_len;
1047 /* done with current mbuf, get the next one */
1048 if (mbuf_avail == 0) {
1052 mbuf_avail = rte_pktmbuf_data_len(m);
1056 virtio_enqueue_offload(hdr_mbuf, &hdr->hdr);
1057 if (rxvq_is_mergeable(dev))
1058 ASSIGN_UNLESS_EQUAL(hdr->num_buffers,
1061 if (unlikely(hdr == &tmp_hdr)) {
1062 copy_vnet_hdr_to_desc(dev, vq, buf_vec, hdr);
1064 PRINT_PACKET(dev, (uintptr_t)hdr_addr,
1065 dev->vhost_hlen, 0);
1066 vhost_log_cache_write_iova(dev, vq,
1067 buf_vec[0].buf_iova,
1074 cpy_len = RTE_MIN(buf_avail, mbuf_avail);
1076 while (unlikely(cpy_len && cpy_len >= cpy_threshold)) {
1077 hpa = (void *)(uintptr_t)gpa_to_first_hpa(dev,
1078 buf_iova + buf_offset,
1079 cpy_len, &mapped_len);
1081 if (unlikely(!hpa || mapped_len < cpy_threshold))
1084 async_fill_vec(src_iovec + tvec_idx,
1085 (void *)(uintptr_t)rte_pktmbuf_iova_offset(m,
1086 mbuf_offset), (size_t)mapped_len);
1088 async_fill_vec(dst_iovec + tvec_idx,
1089 hpa, (size_t)mapped_len);
1091 tlen += (uint32_t)mapped_len;
1092 cpy_len -= (uint32_t)mapped_len;
1093 mbuf_avail -= (uint32_t)mapped_len;
1094 mbuf_offset += (uint32_t)mapped_len;
1095 buf_avail -= (uint32_t)mapped_len;
1096 buf_offset += (uint32_t)mapped_len;
1100 if (likely(cpy_len)) {
1101 if (unlikely(vq->batch_copy_nb_elems >= vq->size)) {
1103 (void *)((uintptr_t)(buf_addr + buf_offset)),
1104 rte_pktmbuf_mtod_offset(m, void *, mbuf_offset),
1108 (uintptr_t)(buf_addr + buf_offset),
1111 batch_copy[vq->batch_copy_nb_elems].dst =
1112 (void *)((uintptr_t)(buf_addr + buf_offset));
1113 batch_copy[vq->batch_copy_nb_elems].src =
1114 rte_pktmbuf_mtod_offset(m, void *, mbuf_offset);
1115 batch_copy[vq->batch_copy_nb_elems].log_addr =
1116 buf_iova + buf_offset;
1117 batch_copy[vq->batch_copy_nb_elems].len =
1119 vq->batch_copy_nb_elems++;
1122 mbuf_avail -= cpy_len;
1123 mbuf_offset += cpy_len;
1124 buf_avail -= cpy_len;
1125 buf_offset += cpy_len;
1131 async_fill_iter(src_it, tlen, src_iovec, tvec_idx);
1132 async_fill_iter(dst_it, tlen, dst_iovec, tvec_idx);
1137 static __rte_always_inline int
1138 vhost_enqueue_single_packed(struct virtio_net *dev,
1139 struct vhost_virtqueue *vq,
1140 struct rte_mbuf *pkt,
1141 struct buf_vector *buf_vec,
1144 uint16_t nr_vec = 0;
1145 uint16_t avail_idx = vq->last_avail_idx;
1146 uint16_t max_tries, tries = 0;
1147 uint16_t buf_id = 0;
1149 uint16_t desc_count;
1150 uint32_t size = pkt->pkt_len + sizeof(struct virtio_net_hdr_mrg_rxbuf);
1151 uint16_t num_buffers = 0;
1152 uint32_t buffer_len[vq->size];
1153 uint16_t buffer_buf_id[vq->size];
1154 uint16_t buffer_desc_count[vq->size];
1156 if (rxvq_is_mergeable(dev))
1157 max_tries = vq->size - 1;
1163 * if we tried all available ring items, and still
1164 * can't get enough buf, it means something abnormal
1167 if (unlikely(++tries > max_tries))
1170 if (unlikely(fill_vec_buf_packed(dev, vq,
1171 avail_idx, &desc_count,
1174 VHOST_ACCESS_RW) < 0))
1177 len = RTE_MIN(len, size);
1180 buffer_len[num_buffers] = len;
1181 buffer_buf_id[num_buffers] = buf_id;
1182 buffer_desc_count[num_buffers] = desc_count;
1185 *nr_descs += desc_count;
1186 avail_idx += desc_count;
1187 if (avail_idx >= vq->size)
1188 avail_idx -= vq->size;
1191 if (copy_mbuf_to_desc(dev, vq, pkt, buf_vec, nr_vec, num_buffers) < 0)
1194 vhost_shadow_enqueue_single_packed(dev, vq, buffer_len, buffer_buf_id,
1195 buffer_desc_count, num_buffers);
1200 static __rte_noinline uint32_t
1201 virtio_dev_rx_split(struct virtio_net *dev, struct vhost_virtqueue *vq,
1202 struct rte_mbuf **pkts, uint32_t count)
1204 uint32_t pkt_idx = 0;
1205 uint16_t num_buffers;
1206 struct buf_vector buf_vec[BUF_VECTOR_MAX];
1207 uint16_t avail_head;
1210 * The ordering between avail index and
1211 * desc reads needs to be enforced.
1213 avail_head = __atomic_load_n(&vq->avail->idx, __ATOMIC_ACQUIRE);
1215 rte_prefetch0(&vq->avail->ring[vq->last_avail_idx & (vq->size - 1)]);
1217 for (pkt_idx = 0; pkt_idx < count; pkt_idx++) {
1218 uint32_t pkt_len = pkts[pkt_idx]->pkt_len + dev->vhost_hlen;
1219 uint16_t nr_vec = 0;
1221 if (unlikely(reserve_avail_buf_split(dev, vq,
1222 pkt_len, buf_vec, &num_buffers,
1223 avail_head, &nr_vec) < 0)) {
1224 VHOST_LOG_DATA(DEBUG,
1225 "(%d) failed to get enough desc from vring\n",
1227 vq->shadow_used_idx -= num_buffers;
1231 VHOST_LOG_DATA(DEBUG, "(%d) current index %d | end index %d\n",
1232 dev->vid, vq->last_avail_idx,
1233 vq->last_avail_idx + num_buffers);
1235 if (copy_mbuf_to_desc(dev, vq, pkts[pkt_idx],
1238 vq->shadow_used_idx -= num_buffers;
1242 vq->last_avail_idx += num_buffers;
1245 do_data_copy_enqueue(dev, vq);
1247 if (likely(vq->shadow_used_idx)) {
1248 flush_shadow_used_ring_split(dev, vq);
1249 vhost_vring_call_split(dev, vq);
1255 static __rte_always_inline int
1256 virtio_dev_rx_batch_packed(struct virtio_net *dev,
1257 struct vhost_virtqueue *vq,
1258 struct rte_mbuf **pkts)
1260 bool wrap_counter = vq->avail_wrap_counter;
1261 struct vring_packed_desc *descs = vq->desc_packed;
1262 uint16_t avail_idx = vq->last_avail_idx;
1263 uint64_t desc_addrs[PACKED_BATCH_SIZE];
1264 struct virtio_net_hdr_mrg_rxbuf *hdrs[PACKED_BATCH_SIZE];
1265 uint32_t buf_offset = sizeof(struct virtio_net_hdr_mrg_rxbuf);
1266 uint64_t lens[PACKED_BATCH_SIZE];
1267 uint16_t ids[PACKED_BATCH_SIZE];
1270 if (unlikely(avail_idx & PACKED_BATCH_MASK))
1273 if (unlikely((avail_idx + PACKED_BATCH_SIZE) > vq->size))
1276 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
1277 if (unlikely(pkts[i]->next != NULL))
1279 if (unlikely(!desc_is_avail(&descs[avail_idx + i],
1286 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE)
1287 lens[i] = descs[avail_idx + i].len;
1289 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
1290 if (unlikely(pkts[i]->pkt_len > (lens[i] - buf_offset)))
1294 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE)
1295 desc_addrs[i] = vhost_iova_to_vva(dev, vq,
1296 descs[avail_idx + i].addr,
1300 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
1301 if (unlikely(!desc_addrs[i]))
1303 if (unlikely(lens[i] != descs[avail_idx + i].len))
1307 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
1308 rte_prefetch0((void *)(uintptr_t)desc_addrs[i]);
1309 hdrs[i] = (struct virtio_net_hdr_mrg_rxbuf *)
1310 (uintptr_t)desc_addrs[i];
1311 lens[i] = pkts[i]->pkt_len +
1312 sizeof(struct virtio_net_hdr_mrg_rxbuf);
1315 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE)
1316 virtio_enqueue_offload(pkts[i], &hdrs[i]->hdr);
1318 vq_inc_last_avail_packed(vq, PACKED_BATCH_SIZE);
1320 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
1321 rte_memcpy((void *)(uintptr_t)(desc_addrs[i] + buf_offset),
1322 rte_pktmbuf_mtod_offset(pkts[i], void *, 0),
1326 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE)
1327 vhost_log_cache_write_iova(dev, vq, descs[avail_idx + i].addr,
1330 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE)
1331 ids[i] = descs[avail_idx + i].id;
1333 vhost_flush_enqueue_batch_packed(dev, vq, lens, ids);
1338 static __rte_always_inline int16_t
1339 virtio_dev_rx_single_packed(struct virtio_net *dev,
1340 struct vhost_virtqueue *vq,
1341 struct rte_mbuf *pkt)
1343 struct buf_vector buf_vec[BUF_VECTOR_MAX];
1344 uint16_t nr_descs = 0;
1347 if (unlikely(vhost_enqueue_single_packed(dev, vq, pkt, buf_vec,
1349 VHOST_LOG_DATA(DEBUG,
1350 "(%d) failed to get enough desc from vring\n",
1355 VHOST_LOG_DATA(DEBUG, "(%d) current index %d | end index %d\n",
1356 dev->vid, vq->last_avail_idx,
1357 vq->last_avail_idx + nr_descs);
1359 vq_inc_last_avail_packed(vq, nr_descs);
1364 static __rte_noinline uint32_t
1365 virtio_dev_rx_packed(struct virtio_net *dev,
1366 struct vhost_virtqueue *__rte_restrict vq,
1367 struct rte_mbuf **__rte_restrict pkts,
1370 uint32_t pkt_idx = 0;
1371 uint32_t remained = count;
1374 rte_prefetch0(&vq->desc_packed[vq->last_avail_idx]);
1376 if (remained >= PACKED_BATCH_SIZE) {
1377 if (!virtio_dev_rx_batch_packed(dev, vq,
1379 pkt_idx += PACKED_BATCH_SIZE;
1380 remained -= PACKED_BATCH_SIZE;
1385 if (virtio_dev_rx_single_packed(dev, vq, pkts[pkt_idx]))
1390 } while (pkt_idx < count);
1392 if (vq->shadow_used_idx) {
1393 do_data_copy_enqueue(dev, vq);
1394 vhost_flush_enqueue_shadow_packed(dev, vq);
1398 vhost_vring_call_packed(dev, vq);
1403 static __rte_always_inline uint32_t
1404 virtio_dev_rx(struct virtio_net *dev, uint16_t queue_id,
1405 struct rte_mbuf **pkts, uint32_t count)
1407 struct vhost_virtqueue *vq;
1410 VHOST_LOG_DATA(DEBUG, "(%d) %s\n", dev->vid, __func__);
1411 if (unlikely(!is_valid_virt_queue_idx(queue_id, 0, dev->nr_vring))) {
1412 VHOST_LOG_DATA(ERR, "(%d) %s: invalid virtqueue idx %d.\n",
1413 dev->vid, __func__, queue_id);
1417 vq = dev->virtqueue[queue_id];
1419 rte_spinlock_lock(&vq->access_lock);
1421 if (unlikely(vq->enabled == 0))
1422 goto out_access_unlock;
1424 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
1425 vhost_user_iotlb_rd_lock(vq);
1427 if (unlikely(vq->access_ok == 0))
1428 if (unlikely(vring_translate(dev, vq) < 0))
1431 count = RTE_MIN((uint32_t)MAX_PKT_BURST, count);
1435 if (vq_is_packed(dev))
1436 nb_tx = virtio_dev_rx_packed(dev, vq, pkts, count);
1438 nb_tx = virtio_dev_rx_split(dev, vq, pkts, count);
1441 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
1442 vhost_user_iotlb_rd_unlock(vq);
1445 rte_spinlock_unlock(&vq->access_lock);
1451 rte_vhost_enqueue_burst(int vid, uint16_t queue_id,
1452 struct rte_mbuf **__rte_restrict pkts, uint16_t count)
1454 struct virtio_net *dev = get_device(vid);
1459 if (unlikely(!(dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
1461 "(%d) %s: built-in vhost net backend is disabled.\n",
1462 dev->vid, __func__);
1466 return virtio_dev_rx(dev, queue_id, pkts, count);
1469 static __rte_always_inline uint16_t
1470 virtio_dev_rx_async_get_info_idx(uint16_t pkts_idx,
1471 uint16_t vq_size, uint16_t n_inflight)
1473 return pkts_idx > n_inflight ? (pkts_idx - n_inflight) :
1474 (vq_size - n_inflight + pkts_idx) & (vq_size - 1);
1477 static __rte_noinline uint32_t
1478 virtio_dev_rx_async_submit_split(struct virtio_net *dev,
1479 struct vhost_virtqueue *vq, uint16_t queue_id,
1480 struct rte_mbuf **pkts, uint32_t count)
1482 uint32_t pkt_idx = 0, pkt_burst_idx = 0;
1483 uint16_t num_buffers;
1484 struct buf_vector buf_vec[BUF_VECTOR_MAX];
1485 uint16_t avail_head;
1487 struct rte_vhost_iov_iter *it_pool = vq->it_pool;
1488 struct iovec *vec_pool = vq->vec_pool;
1489 struct rte_vhost_async_desc tdes[MAX_PKT_BURST];
1490 struct iovec *src_iovec = vec_pool;
1491 struct iovec *dst_iovec = vec_pool + (VHOST_MAX_ASYNC_VEC >> 1);
1492 struct rte_vhost_iov_iter *src_it = it_pool;
1493 struct rte_vhost_iov_iter *dst_it = it_pool + 1;
1494 uint16_t n_free_slot, slot_idx = 0;
1495 uint16_t pkt_err = 0;
1496 uint16_t segs_await = 0;
1497 struct async_inflight_info *pkts_info = vq->async_pkts_info;
1500 avail_head = __atomic_load_n(&vq->avail->idx, __ATOMIC_ACQUIRE);
1503 * The ordering between avail index and
1504 * desc reads needs to be enforced.
1508 rte_prefetch0(&vq->avail->ring[vq->last_avail_idx & (vq->size - 1)]);
1510 for (pkt_idx = 0; pkt_idx < count; pkt_idx++) {
1511 uint32_t pkt_len = pkts[pkt_idx]->pkt_len + dev->vhost_hlen;
1512 uint16_t nr_vec = 0;
1514 if (unlikely(reserve_avail_buf_split(dev, vq,
1515 pkt_len, buf_vec, &num_buffers,
1516 avail_head, &nr_vec) < 0)) {
1517 VHOST_LOG_DATA(DEBUG,
1518 "(%d) failed to get enough desc from vring\n",
1520 vq->shadow_used_idx -= num_buffers;
1524 VHOST_LOG_DATA(DEBUG, "(%d) current index %d | end index %d\n",
1525 dev->vid, vq->last_avail_idx,
1526 vq->last_avail_idx + num_buffers);
1528 if (async_mbuf_to_desc(dev, vq, pkts[pkt_idx],
1529 buf_vec, nr_vec, num_buffers,
1530 src_iovec, dst_iovec, src_it, dst_it) < 0) {
1531 vq->shadow_used_idx -= num_buffers;
1535 slot_idx = (vq->async_pkts_idx + pkt_idx) & (vq->size - 1);
1536 if (src_it->count) {
1537 async_fill_desc(&tdes[pkt_burst_idx], src_it, dst_it);
1539 pkts_info[slot_idx].descs = num_buffers;
1540 pkts_info[slot_idx].segs = src_it->nr_segs;
1541 src_iovec += src_it->nr_segs;
1542 dst_iovec += dst_it->nr_segs;
1545 segs_await += src_it->nr_segs;
1547 pkts_info[slot_idx].info = num_buffers;
1548 vq->async_pkts_inflight_n++;
1551 vq->last_avail_idx += num_buffers;
1554 * conditions to trigger async device transfer:
1555 * - buffered packet number reaches transfer threshold
1556 * - this is the last packet in the burst enqueue
1557 * - unused async iov number is less than max vhost vector
1559 if (pkt_burst_idx >= VHOST_ASYNC_BATCH_THRESHOLD ||
1560 (pkt_idx == count - 1 && pkt_burst_idx) ||
1561 (VHOST_MAX_ASYNC_VEC / 2 - segs_await <
1563 n_pkts = vq->async_ops.transfer_data(dev->vid,
1564 queue_id, tdes, 0, pkt_burst_idx);
1565 src_iovec = vec_pool;
1566 dst_iovec = vec_pool + (VHOST_MAX_ASYNC_VEC >> 1);
1568 dst_it = it_pool + 1;
1570 vq->async_pkts_inflight_n += pkt_burst_idx;
1572 if (unlikely(n_pkts < (int)pkt_burst_idx)) {
1574 * log error packets number here and do actual
1575 * error processing when applications poll
1578 pkt_err = pkt_burst_idx - n_pkts;
1587 if (pkt_burst_idx) {
1588 n_pkts = vq->async_ops.transfer_data(dev->vid,
1589 queue_id, tdes, 0, pkt_burst_idx);
1590 vq->async_pkts_inflight_n += pkt_burst_idx;
1592 if (unlikely(n_pkts < (int)pkt_burst_idx))
1593 pkt_err = pkt_burst_idx - n_pkts;
1596 do_data_copy_enqueue(dev, vq);
1598 while (unlikely(pkt_err && pkt_idx)) {
1599 if (pkts_info[slot_idx].segs)
1601 vq->last_avail_idx -= pkts_info[slot_idx].descs;
1602 vq->shadow_used_idx -= pkts_info[slot_idx].descs;
1603 vq->async_pkts_inflight_n--;
1604 slot_idx = (slot_idx - 1) & (vq->size - 1);
1608 n_free_slot = vq->size - vq->async_pkts_idx;
1609 if (n_free_slot > pkt_idx) {
1610 rte_memcpy(&vq->async_pkts_pending[vq->async_pkts_idx],
1611 pkts, pkt_idx * sizeof(uintptr_t));
1612 vq->async_pkts_idx += pkt_idx;
1614 rte_memcpy(&vq->async_pkts_pending[vq->async_pkts_idx],
1615 pkts, n_free_slot * sizeof(uintptr_t));
1616 rte_memcpy(&vq->async_pkts_pending[0],
1618 (pkt_idx - n_free_slot) * sizeof(uintptr_t));
1619 vq->async_pkts_idx = pkt_idx - n_free_slot;
1622 if (likely(vq->shadow_used_idx))
1623 async_flush_shadow_used_ring_split(dev, vq);
1628 uint16_t rte_vhost_poll_enqueue_completed(int vid, uint16_t queue_id,
1629 struct rte_mbuf **pkts, uint16_t count)
1631 struct virtio_net *dev = get_device(vid);
1632 struct vhost_virtqueue *vq;
1633 uint16_t n_pkts_cpl = 0, n_pkts_put = 0, n_descs = 0;
1634 uint16_t start_idx, pkts_idx, vq_size;
1635 uint16_t n_inflight;
1636 struct async_inflight_info *pkts_info;
1641 VHOST_LOG_DATA(DEBUG, "(%d) %s\n", dev->vid, __func__);
1642 if (unlikely(!is_valid_virt_queue_idx(queue_id, 0, dev->nr_vring))) {
1643 VHOST_LOG_DATA(ERR, "(%d) %s: invalid virtqueue idx %d.\n",
1644 dev->vid, __func__, queue_id);
1648 vq = dev->virtqueue[queue_id];
1650 if (unlikely(!vq->async_registered)) {
1651 VHOST_LOG_DATA(ERR, "(%d) %s: async not registered for queue id %d.\n",
1652 dev->vid, __func__, queue_id);
1656 rte_spinlock_lock(&vq->access_lock);
1658 n_inflight = vq->async_pkts_inflight_n;
1659 pkts_idx = vq->async_pkts_idx;
1660 pkts_info = vq->async_pkts_info;
1662 start_idx = virtio_dev_rx_async_get_info_idx(pkts_idx,
1663 vq_size, vq->async_pkts_inflight_n);
1665 if (count > vq->async_last_pkts_n)
1666 n_pkts_cpl = vq->async_ops.check_completed_copies(vid,
1667 queue_id, 0, count - vq->async_last_pkts_n);
1668 n_pkts_cpl += vq->async_last_pkts_n;
1672 while (likely((n_pkts_put < count) && n_inflight)) {
1673 uint16_t info_idx = (start_idx + n_pkts_put) & (vq_size - 1);
1674 if (n_pkts_cpl && pkts_info[info_idx].segs)
1676 else if (!n_pkts_cpl && pkts_info[info_idx].segs)
1680 n_descs += pkts_info[info_idx].descs;
1683 vq->async_last_pkts_n = n_pkts_cpl;
1686 vq->async_pkts_inflight_n = n_inflight;
1687 if (likely(vq->enabled && vq->access_ok)) {
1688 __atomic_add_fetch(&vq->used->idx,
1689 n_descs, __ATOMIC_RELEASE);
1690 vhost_vring_call_split(dev, vq);
1693 if (start_idx + n_pkts_put <= vq_size) {
1694 rte_memcpy(pkts, &vq->async_pkts_pending[start_idx],
1695 n_pkts_put * sizeof(uintptr_t));
1697 rte_memcpy(pkts, &vq->async_pkts_pending[start_idx],
1698 (vq_size - start_idx) * sizeof(uintptr_t));
1699 rte_memcpy(&pkts[vq_size - start_idx],
1700 vq->async_pkts_pending,
1701 (n_pkts_put + start_idx - vq_size) *
1706 rte_spinlock_unlock(&vq->access_lock);
1711 static __rte_always_inline uint32_t
1712 virtio_dev_rx_async_submit(struct virtio_net *dev, uint16_t queue_id,
1713 struct rte_mbuf **pkts, uint32_t count)
1715 struct vhost_virtqueue *vq;
1718 VHOST_LOG_DATA(DEBUG, "(%d) %s\n", dev->vid, __func__);
1719 if (unlikely(!is_valid_virt_queue_idx(queue_id, 0, dev->nr_vring))) {
1720 VHOST_LOG_DATA(ERR, "(%d) %s: invalid virtqueue idx %d.\n",
1721 dev->vid, __func__, queue_id);
1725 vq = dev->virtqueue[queue_id];
1727 rte_spinlock_lock(&vq->access_lock);
1729 if (unlikely(vq->enabled == 0 || !vq->async_registered))
1730 goto out_access_unlock;
1732 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
1733 vhost_user_iotlb_rd_lock(vq);
1735 if (unlikely(vq->access_ok == 0))
1736 if (unlikely(vring_translate(dev, vq) < 0))
1739 count = RTE_MIN((uint32_t)MAX_PKT_BURST, count);
1743 /* TODO: packed queue not implemented */
1744 if (vq_is_packed(dev))
1747 nb_tx = virtio_dev_rx_async_submit_split(dev,
1748 vq, queue_id, pkts, count);
1751 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
1752 vhost_user_iotlb_rd_unlock(vq);
1755 rte_spinlock_unlock(&vq->access_lock);
1761 rte_vhost_submit_enqueue_burst(int vid, uint16_t queue_id,
1762 struct rte_mbuf **pkts, uint16_t count)
1764 struct virtio_net *dev = get_device(vid);
1769 if (unlikely(!(dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
1771 "(%d) %s: built-in vhost net backend is disabled.\n",
1772 dev->vid, __func__);
1776 return virtio_dev_rx_async_submit(dev, queue_id, pkts, count);
1780 virtio_net_with_host_offload(struct virtio_net *dev)
1783 ((1ULL << VIRTIO_NET_F_CSUM) |
1784 (1ULL << VIRTIO_NET_F_HOST_ECN) |
1785 (1ULL << VIRTIO_NET_F_HOST_TSO4) |
1786 (1ULL << VIRTIO_NET_F_HOST_TSO6) |
1787 (1ULL << VIRTIO_NET_F_HOST_UFO)))
1794 parse_ethernet(struct rte_mbuf *m, uint16_t *l4_proto, void **l4_hdr)
1796 struct rte_ipv4_hdr *ipv4_hdr;
1797 struct rte_ipv6_hdr *ipv6_hdr;
1798 void *l3_hdr = NULL;
1799 struct rte_ether_hdr *eth_hdr;
1802 eth_hdr = rte_pktmbuf_mtod(m, struct rte_ether_hdr *);
1804 m->l2_len = sizeof(struct rte_ether_hdr);
1805 ethertype = rte_be_to_cpu_16(eth_hdr->ether_type);
1807 if (ethertype == RTE_ETHER_TYPE_VLAN) {
1808 struct rte_vlan_hdr *vlan_hdr =
1809 (struct rte_vlan_hdr *)(eth_hdr + 1);
1811 m->l2_len += sizeof(struct rte_vlan_hdr);
1812 ethertype = rte_be_to_cpu_16(vlan_hdr->eth_proto);
1815 l3_hdr = (char *)eth_hdr + m->l2_len;
1817 switch (ethertype) {
1818 case RTE_ETHER_TYPE_IPV4:
1820 *l4_proto = ipv4_hdr->next_proto_id;
1821 m->l3_len = rte_ipv4_hdr_len(ipv4_hdr);
1822 *l4_hdr = (char *)l3_hdr + m->l3_len;
1823 m->ol_flags |= PKT_TX_IPV4;
1825 case RTE_ETHER_TYPE_IPV6:
1827 *l4_proto = ipv6_hdr->proto;
1828 m->l3_len = sizeof(struct rte_ipv6_hdr);
1829 *l4_hdr = (char *)l3_hdr + m->l3_len;
1830 m->ol_flags |= PKT_TX_IPV6;
1840 static __rte_always_inline void
1841 vhost_dequeue_offload(struct virtio_net_hdr *hdr, struct rte_mbuf *m)
1843 uint16_t l4_proto = 0;
1844 void *l4_hdr = NULL;
1845 struct rte_tcp_hdr *tcp_hdr = NULL;
1847 if (hdr->flags == 0 && hdr->gso_type == VIRTIO_NET_HDR_GSO_NONE)
1850 parse_ethernet(m, &l4_proto, &l4_hdr);
1851 if (hdr->flags == VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1852 if (hdr->csum_start == (m->l2_len + m->l3_len)) {
1853 switch (hdr->csum_offset) {
1854 case (offsetof(struct rte_tcp_hdr, cksum)):
1855 if (l4_proto == IPPROTO_TCP)
1856 m->ol_flags |= PKT_TX_TCP_CKSUM;
1858 case (offsetof(struct rte_udp_hdr, dgram_cksum)):
1859 if (l4_proto == IPPROTO_UDP)
1860 m->ol_flags |= PKT_TX_UDP_CKSUM;
1862 case (offsetof(struct rte_sctp_hdr, cksum)):
1863 if (l4_proto == IPPROTO_SCTP)
1864 m->ol_flags |= PKT_TX_SCTP_CKSUM;
1872 if (l4_hdr && hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1873 switch (hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1874 case VIRTIO_NET_HDR_GSO_TCPV4:
1875 case VIRTIO_NET_HDR_GSO_TCPV6:
1877 m->ol_flags |= PKT_TX_TCP_SEG;
1878 m->tso_segsz = hdr->gso_size;
1879 m->l4_len = (tcp_hdr->data_off & 0xf0) >> 2;
1881 case VIRTIO_NET_HDR_GSO_UDP:
1882 m->ol_flags |= PKT_TX_UDP_SEG;
1883 m->tso_segsz = hdr->gso_size;
1884 m->l4_len = sizeof(struct rte_udp_hdr);
1887 VHOST_LOG_DATA(WARNING,
1888 "unsupported gso type %u.\n", hdr->gso_type);
1894 static __rte_noinline void
1895 copy_vnet_hdr_from_desc(struct virtio_net_hdr *hdr,
1896 struct buf_vector *buf_vec)
1899 uint64_t remain = sizeof(struct virtio_net_hdr);
1901 uint64_t dst = (uint64_t)(uintptr_t)hdr;
1904 len = RTE_MIN(remain, buf_vec->buf_len);
1905 src = buf_vec->buf_addr;
1906 rte_memcpy((void *)(uintptr_t)dst,
1907 (void *)(uintptr_t)src, len);
1915 static __rte_always_inline int
1916 copy_desc_to_mbuf(struct virtio_net *dev, struct vhost_virtqueue *vq,
1917 struct buf_vector *buf_vec, uint16_t nr_vec,
1918 struct rte_mbuf *m, struct rte_mempool *mbuf_pool)
1920 uint32_t buf_avail, buf_offset;
1921 uint64_t buf_addr, buf_len;
1922 uint32_t mbuf_avail, mbuf_offset;
1924 struct rte_mbuf *cur = m, *prev = m;
1925 struct virtio_net_hdr tmp_hdr;
1926 struct virtio_net_hdr *hdr = NULL;
1927 /* A counter to avoid desc dead loop chain */
1928 uint16_t vec_idx = 0;
1929 struct batch_copy_elem *batch_copy = vq->batch_copy_elems;
1932 buf_addr = buf_vec[vec_idx].buf_addr;
1933 buf_len = buf_vec[vec_idx].buf_len;
1935 if (unlikely(buf_len < dev->vhost_hlen && nr_vec <= 1)) {
1940 if (virtio_net_with_host_offload(dev)) {
1941 if (unlikely(buf_len < sizeof(struct virtio_net_hdr))) {
1943 * No luck, the virtio-net header doesn't fit
1944 * in a contiguous virtual area.
1946 copy_vnet_hdr_from_desc(&tmp_hdr, buf_vec);
1949 hdr = (struct virtio_net_hdr *)((uintptr_t)buf_addr);
1954 * A virtio driver normally uses at least 2 desc buffers
1955 * for Tx: the first for storing the header, and others
1956 * for storing the data.
1958 if (unlikely(buf_len < dev->vhost_hlen)) {
1959 buf_offset = dev->vhost_hlen - buf_len;
1961 buf_addr = buf_vec[vec_idx].buf_addr;
1962 buf_len = buf_vec[vec_idx].buf_len;
1963 buf_avail = buf_len - buf_offset;
1964 } else if (buf_len == dev->vhost_hlen) {
1965 if (unlikely(++vec_idx >= nr_vec))
1967 buf_addr = buf_vec[vec_idx].buf_addr;
1968 buf_len = buf_vec[vec_idx].buf_len;
1971 buf_avail = buf_len;
1973 buf_offset = dev->vhost_hlen;
1974 buf_avail = buf_vec[vec_idx].buf_len - dev->vhost_hlen;
1978 (uintptr_t)(buf_addr + buf_offset),
1979 (uint32_t)buf_avail, 0);
1982 mbuf_avail = m->buf_len - RTE_PKTMBUF_HEADROOM;
1984 cpy_len = RTE_MIN(buf_avail, mbuf_avail);
1986 if (likely(cpy_len > MAX_BATCH_LEN ||
1987 vq->batch_copy_nb_elems >= vq->size ||
1988 (hdr && cur == m))) {
1989 rte_memcpy(rte_pktmbuf_mtod_offset(cur, void *,
1991 (void *)((uintptr_t)(buf_addr +
1992 buf_offset)), cpy_len);
1994 batch_copy[vq->batch_copy_nb_elems].dst =
1995 rte_pktmbuf_mtod_offset(cur, void *,
1997 batch_copy[vq->batch_copy_nb_elems].src =
1998 (void *)((uintptr_t)(buf_addr + buf_offset));
1999 batch_copy[vq->batch_copy_nb_elems].len = cpy_len;
2000 vq->batch_copy_nb_elems++;
2003 mbuf_avail -= cpy_len;
2004 mbuf_offset += cpy_len;
2005 buf_avail -= cpy_len;
2006 buf_offset += cpy_len;
2008 /* This buf reaches to its end, get the next one */
2009 if (buf_avail == 0) {
2010 if (++vec_idx >= nr_vec)
2013 buf_addr = buf_vec[vec_idx].buf_addr;
2014 buf_len = buf_vec[vec_idx].buf_len;
2017 buf_avail = buf_len;
2019 PRINT_PACKET(dev, (uintptr_t)buf_addr,
2020 (uint32_t)buf_avail, 0);
2024 * This mbuf reaches to its end, get a new one
2025 * to hold more data.
2027 if (mbuf_avail == 0) {
2028 cur = rte_pktmbuf_alloc(mbuf_pool);
2029 if (unlikely(cur == NULL)) {
2030 VHOST_LOG_DATA(ERR, "Failed to "
2031 "allocate memory for mbuf.\n");
2037 prev->data_len = mbuf_offset;
2039 m->pkt_len += mbuf_offset;
2043 mbuf_avail = cur->buf_len - RTE_PKTMBUF_HEADROOM;
2047 prev->data_len = mbuf_offset;
2048 m->pkt_len += mbuf_offset;
2051 vhost_dequeue_offload(hdr, m);
2059 virtio_dev_extbuf_free(void *addr __rte_unused, void *opaque)
2065 virtio_dev_extbuf_alloc(struct rte_mbuf *pkt, uint32_t size)
2067 struct rte_mbuf_ext_shared_info *shinfo = NULL;
2068 uint32_t total_len = RTE_PKTMBUF_HEADROOM + size;
2073 total_len += sizeof(*shinfo) + sizeof(uintptr_t);
2074 total_len = RTE_ALIGN_CEIL(total_len, sizeof(uintptr_t));
2076 if (unlikely(total_len > UINT16_MAX))
2079 buf_len = total_len;
2080 buf = rte_malloc(NULL, buf_len, RTE_CACHE_LINE_SIZE);
2081 if (unlikely(buf == NULL))
2084 /* Initialize shinfo */
2085 shinfo = rte_pktmbuf_ext_shinfo_init_helper(buf, &buf_len,
2086 virtio_dev_extbuf_free, buf);
2087 if (unlikely(shinfo == NULL)) {
2089 VHOST_LOG_DATA(ERR, "Failed to init shinfo\n");
2093 iova = rte_malloc_virt2iova(buf);
2094 rte_pktmbuf_attach_extbuf(pkt, buf, iova, buf_len, shinfo);
2095 rte_pktmbuf_reset_headroom(pkt);
2101 * Allocate a host supported pktmbuf.
2103 static __rte_always_inline struct rte_mbuf *
2104 virtio_dev_pktmbuf_alloc(struct virtio_net *dev, struct rte_mempool *mp,
2107 struct rte_mbuf *pkt = rte_pktmbuf_alloc(mp);
2109 if (unlikely(pkt == NULL)) {
2111 "Failed to allocate memory for mbuf.\n");
2115 if (rte_pktmbuf_tailroom(pkt) >= data_len)
2118 /* attach an external buffer if supported */
2119 if (dev->extbuf && !virtio_dev_extbuf_alloc(pkt, data_len))
2122 /* check if chained buffers are allowed */
2123 if (!dev->linearbuf)
2126 /* Data doesn't fit into the buffer and the host supports
2127 * only linear buffers
2129 rte_pktmbuf_free(pkt);
2134 static __rte_noinline uint16_t
2135 virtio_dev_tx_split(struct virtio_net *dev, struct vhost_virtqueue *vq,
2136 struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count)
2139 uint16_t free_entries;
2140 uint16_t dropped = 0;
2141 static bool allocerr_warned;
2144 * The ordering between avail index and
2145 * desc reads needs to be enforced.
2147 free_entries = __atomic_load_n(&vq->avail->idx, __ATOMIC_ACQUIRE) -
2149 if (free_entries == 0)
2152 rte_prefetch0(&vq->avail->ring[vq->last_avail_idx & (vq->size - 1)]);
2154 VHOST_LOG_DATA(DEBUG, "(%d) %s\n", dev->vid, __func__);
2156 count = RTE_MIN(count, MAX_PKT_BURST);
2157 count = RTE_MIN(count, free_entries);
2158 VHOST_LOG_DATA(DEBUG, "(%d) about to dequeue %u buffers\n",
2161 for (i = 0; i < count; i++) {
2162 struct buf_vector buf_vec[BUF_VECTOR_MAX];
2165 uint16_t nr_vec = 0;
2168 if (unlikely(fill_vec_buf_split(dev, vq,
2169 vq->last_avail_idx + i,
2171 &head_idx, &buf_len,
2172 VHOST_ACCESS_RO) < 0))
2175 update_shadow_used_ring_split(vq, head_idx, 0);
2177 pkts[i] = virtio_dev_pktmbuf_alloc(dev, mbuf_pool, buf_len);
2178 if (unlikely(pkts[i] == NULL)) {
2180 * mbuf allocation fails for jumbo packets when external
2181 * buffer allocation is not allowed and linear buffer
2182 * is required. Drop this packet.
2184 if (!allocerr_warned) {
2186 "Failed mbuf alloc of size %d from %s on %s.\n",
2187 buf_len, mbuf_pool->name, dev->ifname);
2188 allocerr_warned = true;
2195 err = copy_desc_to_mbuf(dev, vq, buf_vec, nr_vec, pkts[i],
2197 if (unlikely(err)) {
2198 rte_pktmbuf_free(pkts[i]);
2199 if (!allocerr_warned) {
2201 "Failed to copy desc to mbuf on %s.\n",
2203 allocerr_warned = true;
2211 vq->last_avail_idx += i;
2213 do_data_copy_dequeue(vq);
2214 if (unlikely(i < count))
2215 vq->shadow_used_idx = i;
2216 if (likely(vq->shadow_used_idx)) {
2217 flush_shadow_used_ring_split(dev, vq);
2218 vhost_vring_call_split(dev, vq);
2221 return (i - dropped);
2224 static __rte_always_inline int
2225 vhost_reserve_avail_batch_packed(struct virtio_net *dev,
2226 struct vhost_virtqueue *vq,
2227 struct rte_mempool *mbuf_pool,
2228 struct rte_mbuf **pkts,
2230 uintptr_t *desc_addrs,
2233 bool wrap = vq->avail_wrap_counter;
2234 struct vring_packed_desc *descs = vq->desc_packed;
2235 struct virtio_net_hdr *hdr;
2236 uint64_t lens[PACKED_BATCH_SIZE];
2237 uint64_t buf_lens[PACKED_BATCH_SIZE];
2238 uint32_t buf_offset = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2241 if (unlikely(avail_idx & PACKED_BATCH_MASK))
2243 if (unlikely((avail_idx + PACKED_BATCH_SIZE) > vq->size))
2246 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
2247 flags = descs[avail_idx + i].flags;
2248 if (unlikely((wrap != !!(flags & VRING_DESC_F_AVAIL)) ||
2249 (wrap == !!(flags & VRING_DESC_F_USED)) ||
2250 (flags & PACKED_DESC_SINGLE_DEQUEUE_FLAG)))
2256 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE)
2257 lens[i] = descs[avail_idx + i].len;
2259 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
2260 desc_addrs[i] = vhost_iova_to_vva(dev, vq,
2261 descs[avail_idx + i].addr,
2262 &lens[i], VHOST_ACCESS_RW);
2265 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
2266 if (unlikely(!desc_addrs[i]))
2268 if (unlikely((lens[i] != descs[avail_idx + i].len)))
2272 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
2273 pkts[i] = virtio_dev_pktmbuf_alloc(dev, mbuf_pool, lens[i]);
2278 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE)
2279 buf_lens[i] = pkts[i]->buf_len - pkts[i]->data_off;
2281 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
2282 if (unlikely(buf_lens[i] < (lens[i] - buf_offset)))
2286 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
2287 pkts[i]->pkt_len = descs[avail_idx + i].len - buf_offset;
2288 pkts[i]->data_len = pkts[i]->pkt_len;
2289 ids[i] = descs[avail_idx + i].id;
2292 if (virtio_net_with_host_offload(dev)) {
2293 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE) {
2294 hdr = (struct virtio_net_hdr *)(desc_addrs[i]);
2295 vhost_dequeue_offload(hdr, pkts[i]);
2302 for (i = 0; i < PACKED_BATCH_SIZE; i++)
2303 rte_pktmbuf_free(pkts[i]);
2308 static __rte_always_inline int
2309 virtio_dev_tx_batch_packed(struct virtio_net *dev,
2310 struct vhost_virtqueue *vq,
2311 struct rte_mempool *mbuf_pool,
2312 struct rte_mbuf **pkts)
2314 uint16_t avail_idx = vq->last_avail_idx;
2315 uint32_t buf_offset = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2316 uintptr_t desc_addrs[PACKED_BATCH_SIZE];
2317 uint16_t ids[PACKED_BATCH_SIZE];
2320 if (vhost_reserve_avail_batch_packed(dev, vq, mbuf_pool, pkts,
2321 avail_idx, desc_addrs, ids))
2324 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE)
2325 rte_prefetch0((void *)(uintptr_t)desc_addrs[i]);
2327 vhost_for_each_try_unroll(i, 0, PACKED_BATCH_SIZE)
2328 rte_memcpy(rte_pktmbuf_mtod_offset(pkts[i], void *, 0),
2329 (void *)(uintptr_t)(desc_addrs[i] + buf_offset),
2332 if (virtio_net_is_inorder(dev))
2333 vhost_shadow_dequeue_batch_packed_inorder(vq,
2334 ids[PACKED_BATCH_SIZE - 1]);
2336 vhost_shadow_dequeue_batch_packed(dev, vq, ids);
2338 vq_inc_last_avail_packed(vq, PACKED_BATCH_SIZE);
2343 static __rte_always_inline int
2344 vhost_dequeue_single_packed(struct virtio_net *dev,
2345 struct vhost_virtqueue *vq,
2346 struct rte_mempool *mbuf_pool,
2347 struct rte_mbuf **pkts,
2349 uint16_t *desc_count)
2351 struct buf_vector buf_vec[BUF_VECTOR_MAX];
2353 uint16_t nr_vec = 0;
2355 static bool allocerr_warned;
2357 if (unlikely(fill_vec_buf_packed(dev, vq,
2358 vq->last_avail_idx, desc_count,
2361 VHOST_ACCESS_RO) < 0))
2364 *pkts = virtio_dev_pktmbuf_alloc(dev, mbuf_pool, buf_len);
2365 if (unlikely(*pkts == NULL)) {
2366 if (!allocerr_warned) {
2368 "Failed mbuf alloc of size %d from %s on %s.\n",
2369 buf_len, mbuf_pool->name, dev->ifname);
2370 allocerr_warned = true;
2375 err = copy_desc_to_mbuf(dev, vq, buf_vec, nr_vec, *pkts,
2377 if (unlikely(err)) {
2378 if (!allocerr_warned) {
2380 "Failed to copy desc to mbuf on %s.\n",
2382 allocerr_warned = true;
2384 rte_pktmbuf_free(*pkts);
2391 static __rte_always_inline int
2392 virtio_dev_tx_single_packed(struct virtio_net *dev,
2393 struct vhost_virtqueue *vq,
2394 struct rte_mempool *mbuf_pool,
2395 struct rte_mbuf **pkts)
2398 uint16_t buf_id, desc_count = 0;
2401 ret = vhost_dequeue_single_packed(dev, vq, mbuf_pool, pkts, &buf_id,
2404 if (likely(desc_count > 0)) {
2405 if (virtio_net_is_inorder(dev))
2406 vhost_shadow_dequeue_single_packed_inorder(vq, buf_id,
2409 vhost_shadow_dequeue_single_packed(vq, buf_id,
2412 vq_inc_last_avail_packed(vq, desc_count);
2418 static __rte_noinline uint16_t
2419 virtio_dev_tx_packed(struct virtio_net *dev,
2420 struct vhost_virtqueue *__rte_restrict vq,
2421 struct rte_mempool *mbuf_pool,
2422 struct rte_mbuf **__rte_restrict pkts,
2425 uint32_t pkt_idx = 0;
2426 uint32_t remained = count;
2429 rte_prefetch0(&vq->desc_packed[vq->last_avail_idx]);
2431 if (remained >= PACKED_BATCH_SIZE) {
2432 if (!virtio_dev_tx_batch_packed(dev, vq, mbuf_pool,
2434 pkt_idx += PACKED_BATCH_SIZE;
2435 remained -= PACKED_BATCH_SIZE;
2440 if (virtio_dev_tx_single_packed(dev, vq, mbuf_pool,
2448 if (vq->shadow_used_idx) {
2449 do_data_copy_dequeue(vq);
2451 vhost_flush_dequeue_shadow_packed(dev, vq);
2452 vhost_vring_call_packed(dev, vq);
2459 rte_vhost_dequeue_burst(int vid, uint16_t queue_id,
2460 struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count)
2462 struct virtio_net *dev;
2463 struct rte_mbuf *rarp_mbuf = NULL;
2464 struct vhost_virtqueue *vq;
2465 int16_t success = 1;
2467 dev = get_device(vid);
2471 if (unlikely(!(dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
2473 "(%d) %s: built-in vhost net backend is disabled.\n",
2474 dev->vid, __func__);
2478 if (unlikely(!is_valid_virt_queue_idx(queue_id, 1, dev->nr_vring))) {
2480 "(%d) %s: invalid virtqueue idx %d.\n",
2481 dev->vid, __func__, queue_id);
2485 vq = dev->virtqueue[queue_id];
2487 if (unlikely(rte_spinlock_trylock(&vq->access_lock) == 0))
2490 if (unlikely(vq->enabled == 0)) {
2492 goto out_access_unlock;
2495 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
2496 vhost_user_iotlb_rd_lock(vq);
2498 if (unlikely(vq->access_ok == 0))
2499 if (unlikely(vring_translate(dev, vq) < 0)) {
2505 * Construct a RARP broadcast packet, and inject it to the "pkts"
2506 * array, to looks like that guest actually send such packet.
2508 * Check user_send_rarp() for more information.
2510 * broadcast_rarp shares a cacheline in the virtio_net structure
2511 * with some fields that are accessed during enqueue and
2512 * __atomic_compare_exchange_n causes a write if performed compare
2513 * and exchange. This could result in false sharing between enqueue
2516 * Prevent unnecessary false sharing by reading broadcast_rarp first
2517 * and only performing compare and exchange if the read indicates it
2518 * is likely to be set.
2520 if (unlikely(__atomic_load_n(&dev->broadcast_rarp, __ATOMIC_ACQUIRE) &&
2521 __atomic_compare_exchange_n(&dev->broadcast_rarp,
2522 &success, 0, 0, __ATOMIC_RELEASE, __ATOMIC_RELAXED))) {
2524 rarp_mbuf = rte_net_make_rarp_packet(mbuf_pool, &dev->mac);
2525 if (rarp_mbuf == NULL) {
2526 VHOST_LOG_DATA(ERR, "Failed to make RARP packet.\n");
2533 if (vq_is_packed(dev))
2534 count = virtio_dev_tx_packed(dev, vq, mbuf_pool, pkts, count);
2536 count = virtio_dev_tx_split(dev, vq, mbuf_pool, pkts, count);
2539 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
2540 vhost_user_iotlb_rd_unlock(vq);
2543 rte_spinlock_unlock(&vq->access_lock);
2545 if (unlikely(rarp_mbuf != NULL)) {
2547 * Inject it to the head of "pkts" array, so that switch's mac
2548 * learning table will get updated first.
2550 memmove(&pkts[1], pkts, count * sizeof(struct rte_mbuf *));
2551 pkts[0] = rarp_mbuf;