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>
24 #define MAX_PKT_BURST 32
26 #define MAX_BATCH_LEN 256
28 static __rte_always_inline bool
29 rxvq_is_mergeable(struct virtio_net *dev)
31 return dev->features & (1ULL << VIRTIO_NET_F_MRG_RXBUF);
35 is_valid_virt_queue_idx(uint32_t idx, int is_tx, uint32_t nr_vring)
37 return (is_tx ^ (idx & 1)) == 0 && idx < nr_vring;
40 static __rte_always_inline void *
41 alloc_copy_ind_table(struct virtio_net *dev, struct vhost_virtqueue *vq,
42 uint64_t desc_addr, uint64_t desc_len)
46 uint64_t len, remain = desc_len;
48 idesc = rte_malloc(__func__, desc_len, 0);
52 dst = (uint64_t)(uintptr_t)idesc;
56 src = vhost_iova_to_vva(dev, vq, desc_addr, &len,
58 if (unlikely(!src || !len)) {
63 rte_memcpy((void *)(uintptr_t)dst, (void *)(uintptr_t)src, len);
73 static __rte_always_inline void
74 free_ind_table(void *idesc)
79 static __rte_always_inline void
80 do_flush_shadow_used_ring_split(struct virtio_net *dev,
81 struct vhost_virtqueue *vq,
82 uint16_t to, uint16_t from, uint16_t size)
84 rte_memcpy(&vq->used->ring[to],
85 &vq->shadow_used_split[from],
86 size * sizeof(struct vring_used_elem));
87 vhost_log_cache_used_vring(dev, vq,
88 offsetof(struct vring_used, ring[to]),
89 size * sizeof(struct vring_used_elem));
92 static __rte_always_inline void
93 flush_shadow_used_ring_split(struct virtio_net *dev, struct vhost_virtqueue *vq)
95 uint16_t used_idx = vq->last_used_idx & (vq->size - 1);
97 if (used_idx + vq->shadow_used_idx <= vq->size) {
98 do_flush_shadow_used_ring_split(dev, vq, used_idx, 0,
103 /* update used ring interval [used_idx, vq->size] */
104 size = vq->size - used_idx;
105 do_flush_shadow_used_ring_split(dev, vq, used_idx, 0, size);
107 /* update the left half used ring interval [0, left_size] */
108 do_flush_shadow_used_ring_split(dev, vq, 0, size,
109 vq->shadow_used_idx - size);
111 vq->last_used_idx += vq->shadow_used_idx;
115 vhost_log_cache_sync(dev, vq);
117 *(volatile uint16_t *)&vq->used->idx += vq->shadow_used_idx;
118 vq->shadow_used_idx = 0;
119 vhost_log_used_vring(dev, vq, offsetof(struct vring_used, idx),
120 sizeof(vq->used->idx));
123 static __rte_always_inline void
124 update_shadow_used_ring_split(struct vhost_virtqueue *vq,
125 uint16_t desc_idx, uint16_t len)
127 uint16_t i = vq->shadow_used_idx++;
129 vq->shadow_used_split[i].id = desc_idx;
130 vq->shadow_used_split[i].len = len;
133 static __rte_always_inline void
134 flush_shadow_used_ring_packed(struct virtio_net *dev,
135 struct vhost_virtqueue *vq)
138 uint16_t used_idx = vq->last_used_idx;
140 /* Split loop in two to save memory barriers */
141 for (i = 0; i < vq->shadow_used_idx; i++) {
142 vq->desc_packed[used_idx].id = vq->shadow_used_packed[i].id;
143 vq->desc_packed[used_idx].len = vq->shadow_used_packed[i].len;
145 used_idx += vq->shadow_used_packed[i].count;
146 if (used_idx >= vq->size)
147 used_idx -= vq->size;
152 for (i = 0; i < vq->shadow_used_idx; i++) {
155 if (vq->shadow_used_packed[i].len)
156 flags = VRING_DESC_F_WRITE;
160 if (vq->used_wrap_counter) {
161 flags |= VRING_DESC_F_USED;
162 flags |= VRING_DESC_F_AVAIL;
164 flags &= ~VRING_DESC_F_USED;
165 flags &= ~VRING_DESC_F_AVAIL;
168 vq->desc_packed[vq->last_used_idx].flags = flags;
170 vhost_log_cache_used_vring(dev, vq,
172 sizeof(struct vring_packed_desc),
173 sizeof(struct vring_packed_desc));
175 vq->last_used_idx += vq->shadow_used_packed[i].count;
176 if (vq->last_used_idx >= vq->size) {
177 vq->used_wrap_counter ^= 1;
178 vq->last_used_idx -= vq->size;
183 vq->shadow_used_idx = 0;
184 vhost_log_cache_sync(dev, vq);
187 static __rte_always_inline void
188 update_shadow_used_ring_packed(struct vhost_virtqueue *vq,
189 uint16_t desc_idx, uint16_t len, uint16_t count)
191 uint16_t i = vq->shadow_used_idx++;
193 vq->shadow_used_packed[i].id = desc_idx;
194 vq->shadow_used_packed[i].len = len;
195 vq->shadow_used_packed[i].count = count;
199 do_data_copy_enqueue(struct virtio_net *dev, struct vhost_virtqueue *vq)
201 struct batch_copy_elem *elem = vq->batch_copy_elems;
202 uint16_t count = vq->batch_copy_nb_elems;
205 for (i = 0; i < count; i++) {
206 rte_memcpy(elem[i].dst, elem[i].src, elem[i].len);
207 vhost_log_cache_write(dev, vq, elem[i].log_addr, elem[i].len);
208 PRINT_PACKET(dev, (uintptr_t)elem[i].dst, elem[i].len, 0);
211 vq->batch_copy_nb_elems = 0;
215 do_data_copy_dequeue(struct vhost_virtqueue *vq)
217 struct batch_copy_elem *elem = vq->batch_copy_elems;
218 uint16_t count = vq->batch_copy_nb_elems;
221 for (i = 0; i < count; i++)
222 rte_memcpy(elem[i].dst, elem[i].src, elem[i].len);
224 vq->batch_copy_nb_elems = 0;
227 /* avoid write operation when necessary, to lessen cache issues */
228 #define ASSIGN_UNLESS_EQUAL(var, val) do { \
229 if ((var) != (val)) \
233 static __rte_always_inline void
234 virtio_enqueue_offload(struct rte_mbuf *m_buf, struct virtio_net_hdr *net_hdr)
236 uint64_t csum_l4 = m_buf->ol_flags & PKT_TX_L4_MASK;
238 if (m_buf->ol_flags & PKT_TX_TCP_SEG)
239 csum_l4 |= PKT_TX_TCP_CKSUM;
242 net_hdr->flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
243 net_hdr->csum_start = m_buf->l2_len + m_buf->l3_len;
246 case PKT_TX_TCP_CKSUM:
247 net_hdr->csum_offset = (offsetof(struct tcp_hdr,
250 case PKT_TX_UDP_CKSUM:
251 net_hdr->csum_offset = (offsetof(struct udp_hdr,
254 case PKT_TX_SCTP_CKSUM:
255 net_hdr->csum_offset = (offsetof(struct sctp_hdr,
260 ASSIGN_UNLESS_EQUAL(net_hdr->csum_start, 0);
261 ASSIGN_UNLESS_EQUAL(net_hdr->csum_offset, 0);
262 ASSIGN_UNLESS_EQUAL(net_hdr->flags, 0);
265 /* IP cksum verification cannot be bypassed, then calculate here */
266 if (m_buf->ol_flags & PKT_TX_IP_CKSUM) {
267 struct ipv4_hdr *ipv4_hdr;
269 ipv4_hdr = rte_pktmbuf_mtod_offset(m_buf, struct ipv4_hdr *,
271 ipv4_hdr->hdr_checksum = rte_ipv4_cksum(ipv4_hdr);
274 if (m_buf->ol_flags & PKT_TX_TCP_SEG) {
275 if (m_buf->ol_flags & PKT_TX_IPV4)
276 net_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
278 net_hdr->gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
279 net_hdr->gso_size = m_buf->tso_segsz;
280 net_hdr->hdr_len = m_buf->l2_len + m_buf->l3_len
282 } else if (m_buf->ol_flags & PKT_TX_UDP_SEG) {
283 net_hdr->gso_type = VIRTIO_NET_HDR_GSO_UDP;
284 net_hdr->gso_size = m_buf->tso_segsz;
285 net_hdr->hdr_len = m_buf->l2_len + m_buf->l3_len +
288 ASSIGN_UNLESS_EQUAL(net_hdr->gso_type, 0);
289 ASSIGN_UNLESS_EQUAL(net_hdr->gso_size, 0);
290 ASSIGN_UNLESS_EQUAL(net_hdr->hdr_len, 0);
294 static __rte_always_inline int
295 map_one_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
296 struct buf_vector *buf_vec, uint16_t *vec_idx,
297 uint64_t desc_iova, uint64_t desc_len, uint8_t perm)
299 uint16_t vec_id = *vec_idx;
303 uint64_t desc_chunck_len = desc_len;
305 if (unlikely(vec_id >= BUF_VECTOR_MAX))
308 desc_addr = vhost_iova_to_vva(dev, vq,
312 if (unlikely(!desc_addr))
315 buf_vec[vec_id].buf_iova = desc_iova;
316 buf_vec[vec_id].buf_addr = desc_addr;
317 buf_vec[vec_id].buf_len = desc_chunck_len;
319 desc_len -= desc_chunck_len;
320 desc_iova += desc_chunck_len;
328 static __rte_always_inline int
329 fill_vec_buf_split(struct virtio_net *dev, struct vhost_virtqueue *vq,
330 uint32_t avail_idx, uint16_t *vec_idx,
331 struct buf_vector *buf_vec, uint16_t *desc_chain_head,
332 uint16_t *desc_chain_len, uint8_t perm)
334 uint16_t idx = vq->avail->ring[avail_idx & (vq->size - 1)];
335 uint16_t vec_id = *vec_idx;
338 struct vring_desc *descs = vq->desc;
339 struct vring_desc *idesc = NULL;
341 *desc_chain_head = idx;
343 if (vq->desc[idx].flags & VRING_DESC_F_INDIRECT) {
344 dlen = vq->desc[idx].len;
345 descs = (struct vring_desc *)(uintptr_t)
346 vhost_iova_to_vva(dev, vq, vq->desc[idx].addr,
349 if (unlikely(!descs))
352 if (unlikely(dlen < vq->desc[idx].len)) {
354 * The indirect desc table is not contiguous
355 * in process VA space, we have to copy it.
357 idesc = alloc_copy_ind_table(dev, vq,
358 vq->desc[idx].addr, vq->desc[idx].len);
359 if (unlikely(!idesc))
369 if (unlikely(idx >= vq->size)) {
370 free_ind_table(idesc);
374 len += descs[idx].len;
376 if (unlikely(map_one_desc(dev, vq, buf_vec, &vec_id,
377 descs[idx].addr, descs[idx].len,
379 free_ind_table(idesc);
383 if ((descs[idx].flags & VRING_DESC_F_NEXT) == 0)
386 idx = descs[idx].next;
389 *desc_chain_len = len;
392 if (unlikely(!!idesc))
393 free_ind_table(idesc);
399 * Returns -1 on fail, 0 on success
402 reserve_avail_buf_split(struct virtio_net *dev, struct vhost_virtqueue *vq,
403 uint32_t size, struct buf_vector *buf_vec,
404 uint16_t *num_buffers, uint16_t avail_head,
408 uint16_t vec_idx = 0;
409 uint16_t max_tries, tries = 0;
411 uint16_t head_idx = 0;
415 cur_idx = vq->last_avail_idx;
417 if (rxvq_is_mergeable(dev))
418 max_tries = vq->size - 1;
423 if (unlikely(cur_idx == avail_head))
426 * if we tried all available ring items, and still
427 * can't get enough buf, it means something abnormal
430 if (unlikely(++tries > max_tries))
433 if (unlikely(fill_vec_buf_split(dev, vq, cur_idx,
436 VHOST_ACCESS_RW) < 0))
438 len = RTE_MIN(len, size);
439 update_shadow_used_ring_split(vq, head_idx, len);
451 static __rte_always_inline int
452 fill_vec_buf_packed_indirect(struct virtio_net *dev,
453 struct vhost_virtqueue *vq,
454 struct vring_packed_desc *desc, uint16_t *vec_idx,
455 struct buf_vector *buf_vec, uint16_t *len, uint8_t perm)
459 uint16_t vec_id = *vec_idx;
461 struct vring_packed_desc *descs, *idescs = NULL;
464 descs = (struct vring_packed_desc *)(uintptr_t)
465 vhost_iova_to_vva(dev, vq, desc->addr, &dlen, VHOST_ACCESS_RO);
466 if (unlikely(!descs))
469 if (unlikely(dlen < desc->len)) {
471 * The indirect desc table is not contiguous
472 * in process VA space, we have to copy it.
474 idescs = alloc_copy_ind_table(dev, vq, desc->addr, desc->len);
475 if (unlikely(!idescs))
481 nr_descs = desc->len / sizeof(struct vring_packed_desc);
482 if (unlikely(nr_descs >= vq->size)) {
483 free_ind_table(idescs);
487 for (i = 0; i < nr_descs; i++) {
488 if (unlikely(vec_id >= BUF_VECTOR_MAX)) {
489 free_ind_table(idescs);
493 *len += descs[i].len;
494 if (unlikely(map_one_desc(dev, vq, buf_vec, &vec_id,
495 descs[i].addr, descs[i].len,
501 if (unlikely(!!idescs))
502 free_ind_table(idescs);
507 static __rte_always_inline int
508 fill_vec_buf_packed(struct virtio_net *dev, struct vhost_virtqueue *vq,
509 uint16_t avail_idx, uint16_t *desc_count,
510 struct buf_vector *buf_vec, uint16_t *vec_idx,
511 uint16_t *buf_id, uint16_t *len, uint8_t perm)
513 bool wrap_counter = vq->avail_wrap_counter;
514 struct vring_packed_desc *descs = vq->desc_packed;
515 uint16_t vec_id = *vec_idx;
517 if (avail_idx < vq->last_avail_idx)
520 if (unlikely(!desc_is_avail(&descs[avail_idx], wrap_counter)))
526 if (unlikely(vec_id >= BUF_VECTOR_MAX))
530 *buf_id = descs[avail_idx].id;
532 if (descs[avail_idx].flags & VRING_DESC_F_INDIRECT) {
533 if (unlikely(fill_vec_buf_packed_indirect(dev, vq,
539 *len += descs[avail_idx].len;
541 if (unlikely(map_one_desc(dev, vq, buf_vec, &vec_id,
542 descs[avail_idx].addr,
543 descs[avail_idx].len,
548 if ((descs[avail_idx].flags & VRING_DESC_F_NEXT) == 0)
551 if (++avail_idx >= vq->size) {
552 avail_idx -= vq->size;
563 * Returns -1 on fail, 0 on success
566 reserve_avail_buf_packed(struct virtio_net *dev, struct vhost_virtqueue *vq,
567 uint32_t size, struct buf_vector *buf_vec,
568 uint16_t *nr_vec, uint16_t *num_buffers,
572 uint16_t vec_idx = 0;
573 uint16_t max_tries, tries = 0;
580 avail_idx = vq->last_avail_idx;
582 if (rxvq_is_mergeable(dev))
583 max_tries = vq->size - 1;
589 * if we tried all available ring items, and still
590 * can't get enough buf, it means something abnormal
593 if (unlikely(++tries > max_tries))
596 if (unlikely(fill_vec_buf_packed(dev, vq,
597 avail_idx, &desc_count,
600 VHOST_ACCESS_RO) < 0))
603 len = RTE_MIN(len, size);
604 update_shadow_used_ring_packed(vq, buf_id, len, desc_count);
607 avail_idx += desc_count;
608 if (avail_idx >= vq->size)
609 avail_idx -= vq->size;
611 *nr_descs += desc_count;
620 static __rte_always_inline int
621 copy_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
622 struct rte_mbuf *m, struct buf_vector *buf_vec,
623 uint16_t nr_vec, uint16_t num_buffers)
625 uint32_t vec_idx = 0;
626 uint32_t mbuf_offset, mbuf_avail;
627 uint32_t buf_offset, buf_avail;
628 uint64_t buf_addr, buf_iova, buf_len;
631 struct rte_mbuf *hdr_mbuf;
632 struct batch_copy_elem *batch_copy = vq->batch_copy_elems;
633 struct virtio_net_hdr_mrg_rxbuf tmp_hdr, *hdr = NULL;
636 if (unlikely(m == NULL)) {
641 buf_addr = buf_vec[vec_idx].buf_addr;
642 buf_iova = buf_vec[vec_idx].buf_iova;
643 buf_len = buf_vec[vec_idx].buf_len;
646 rte_prefetch0((void *)(uintptr_t)buf_vec[1].buf_addr);
648 if (unlikely(buf_len < dev->vhost_hlen && nr_vec <= 1)) {
655 if (unlikely(buf_len < dev->vhost_hlen))
658 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(uintptr_t)hdr_addr;
660 VHOST_LOG_DEBUG(VHOST_DATA, "(%d) RX: num merge buffers %d\n",
661 dev->vid, num_buffers);
663 if (unlikely(buf_len < dev->vhost_hlen)) {
664 buf_offset = dev->vhost_hlen - buf_len;
666 buf_addr = buf_vec[vec_idx].buf_addr;
667 buf_iova = buf_vec[vec_idx].buf_iova;
668 buf_len = buf_vec[vec_idx].buf_len;
669 buf_avail = buf_len - buf_offset;
671 buf_offset = dev->vhost_hlen;
672 buf_avail = buf_len - dev->vhost_hlen;
675 mbuf_avail = rte_pktmbuf_data_len(m);
677 while (mbuf_avail != 0 || m->next != NULL) {
678 /* done with current buf, get the next one */
679 if (buf_avail == 0) {
681 if (unlikely(vec_idx >= nr_vec)) {
686 buf_addr = buf_vec[vec_idx].buf_addr;
687 buf_iova = buf_vec[vec_idx].buf_iova;
688 buf_len = buf_vec[vec_idx].buf_len;
690 /* Prefetch next buffer address. */
691 if (vec_idx + 1 < nr_vec)
692 rte_prefetch0((void *)(uintptr_t)
693 buf_vec[vec_idx + 1].buf_addr);
698 /* done with current mbuf, get the next one */
699 if (mbuf_avail == 0) {
703 mbuf_avail = rte_pktmbuf_data_len(m);
707 virtio_enqueue_offload(hdr_mbuf, &hdr->hdr);
708 if (rxvq_is_mergeable(dev))
709 ASSIGN_UNLESS_EQUAL(hdr->num_buffers,
712 if (unlikely(hdr == &tmp_hdr)) {
714 uint64_t remain = dev->vhost_hlen;
715 uint64_t src = (uint64_t)(uintptr_t)hdr, dst;
716 uint64_t iova = buf_vec[0].buf_iova;
717 uint16_t hdr_vec_idx = 0;
720 len = RTE_MIN(remain,
721 buf_vec[hdr_vec_idx].buf_len);
722 dst = buf_vec[hdr_vec_idx].buf_addr;
723 rte_memcpy((void *)(uintptr_t)dst,
724 (void *)(uintptr_t)src,
727 PRINT_PACKET(dev, (uintptr_t)dst,
729 vhost_log_cache_write(dev, vq,
738 PRINT_PACKET(dev, (uintptr_t)hdr_addr,
740 vhost_log_cache_write(dev, vq,
748 cpy_len = RTE_MIN(buf_avail, mbuf_avail);
750 if (likely(cpy_len > MAX_BATCH_LEN ||
751 vq->batch_copy_nb_elems >= vq->size)) {
752 rte_memcpy((void *)((uintptr_t)(buf_addr + buf_offset)),
753 rte_pktmbuf_mtod_offset(m, void *, mbuf_offset),
755 vhost_log_cache_write(dev, vq, buf_iova + buf_offset,
757 PRINT_PACKET(dev, (uintptr_t)(buf_addr + buf_offset),
760 batch_copy[vq->batch_copy_nb_elems].dst =
761 (void *)((uintptr_t)(buf_addr + buf_offset));
762 batch_copy[vq->batch_copy_nb_elems].src =
763 rte_pktmbuf_mtod_offset(m, void *, mbuf_offset);
764 batch_copy[vq->batch_copy_nb_elems].log_addr =
765 buf_iova + buf_offset;
766 batch_copy[vq->batch_copy_nb_elems].len = cpy_len;
767 vq->batch_copy_nb_elems++;
770 mbuf_avail -= cpy_len;
771 mbuf_offset += cpy_len;
772 buf_avail -= cpy_len;
773 buf_offset += cpy_len;
781 static __rte_always_inline uint32_t
782 virtio_dev_rx_split(struct virtio_net *dev, struct vhost_virtqueue *vq,
783 struct rte_mbuf **pkts, uint32_t count)
785 uint32_t pkt_idx = 0;
786 uint16_t num_buffers;
787 struct buf_vector buf_vec[BUF_VECTOR_MAX];
790 rte_prefetch0(&vq->avail->ring[vq->last_avail_idx & (vq->size - 1)]);
791 avail_head = *((volatile uint16_t *)&vq->avail->idx);
793 for (pkt_idx = 0; pkt_idx < count; pkt_idx++) {
794 uint32_t pkt_len = pkts[pkt_idx]->pkt_len + dev->vhost_hlen;
797 if (unlikely(reserve_avail_buf_split(dev, vq,
798 pkt_len, buf_vec, &num_buffers,
799 avail_head, &nr_vec) < 0)) {
800 VHOST_LOG_DEBUG(VHOST_DATA,
801 "(%d) failed to get enough desc from vring\n",
803 vq->shadow_used_idx -= num_buffers;
807 rte_prefetch0((void *)(uintptr_t)buf_vec[0].buf_addr);
809 VHOST_LOG_DEBUG(VHOST_DATA, "(%d) current index %d | end index %d\n",
810 dev->vid, vq->last_avail_idx,
811 vq->last_avail_idx + num_buffers);
813 if (copy_mbuf_to_desc(dev, vq, pkts[pkt_idx],
816 vq->shadow_used_idx -= num_buffers;
820 vq->last_avail_idx += num_buffers;
823 do_data_copy_enqueue(dev, vq);
825 if (likely(vq->shadow_used_idx)) {
826 flush_shadow_used_ring_split(dev, vq);
827 vhost_vring_call_split(dev, vq);
833 static __rte_always_inline uint32_t
834 virtio_dev_rx_packed(struct virtio_net *dev, struct vhost_virtqueue *vq,
835 struct rte_mbuf **pkts, uint32_t count)
837 uint32_t pkt_idx = 0;
838 uint16_t num_buffers;
839 struct buf_vector buf_vec[BUF_VECTOR_MAX];
841 for (pkt_idx = 0; pkt_idx < count; pkt_idx++) {
842 uint32_t pkt_len = pkts[pkt_idx]->pkt_len + dev->vhost_hlen;
844 uint16_t nr_descs = 0;
846 if (unlikely(reserve_avail_buf_packed(dev, vq,
847 pkt_len, buf_vec, &nr_vec,
848 &num_buffers, &nr_descs) < 0)) {
849 VHOST_LOG_DEBUG(VHOST_DATA,
850 "(%d) failed to get enough desc from vring\n",
852 vq->shadow_used_idx -= num_buffers;
856 rte_prefetch0((void *)(uintptr_t)buf_vec[0].buf_addr);
858 VHOST_LOG_DEBUG(VHOST_DATA, "(%d) current index %d | end index %d\n",
859 dev->vid, vq->last_avail_idx,
860 vq->last_avail_idx + num_buffers);
862 if (copy_mbuf_to_desc(dev, vq, pkts[pkt_idx],
865 vq->shadow_used_idx -= num_buffers;
869 vq->last_avail_idx += nr_descs;
870 if (vq->last_avail_idx >= vq->size) {
871 vq->last_avail_idx -= vq->size;
872 vq->avail_wrap_counter ^= 1;
876 do_data_copy_enqueue(dev, vq);
878 if (likely(vq->shadow_used_idx)) {
879 flush_shadow_used_ring_packed(dev, vq);
880 vhost_vring_call_packed(dev, vq);
886 static __rte_always_inline uint32_t
887 virtio_dev_rx(struct virtio_net *dev, uint16_t queue_id,
888 struct rte_mbuf **pkts, uint32_t count)
890 struct vhost_virtqueue *vq;
892 VHOST_LOG_DEBUG(VHOST_DATA, "(%d) %s\n", dev->vid, __func__);
893 if (unlikely(!is_valid_virt_queue_idx(queue_id, 0, dev->nr_vring))) {
894 RTE_LOG(ERR, VHOST_DATA, "(%d) %s: invalid virtqueue idx %d.\n",
895 dev->vid, __func__, queue_id);
899 vq = dev->virtqueue[queue_id];
901 rte_spinlock_lock(&vq->access_lock);
903 if (unlikely(vq->enabled == 0))
904 goto out_access_unlock;
906 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
907 vhost_user_iotlb_rd_lock(vq);
909 if (unlikely(vq->access_ok == 0))
910 if (unlikely(vring_translate(dev, vq) < 0))
913 count = RTE_MIN((uint32_t)MAX_PKT_BURST, count);
917 if (vq_is_packed(dev))
918 count = virtio_dev_rx_packed(dev, vq, pkts, count);
920 count = virtio_dev_rx_split(dev, vq, pkts, count);
923 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
924 vhost_user_iotlb_rd_unlock(vq);
927 rte_spinlock_unlock(&vq->access_lock);
933 rte_vhost_enqueue_burst(int vid, uint16_t queue_id,
934 struct rte_mbuf **pkts, uint16_t count)
936 struct virtio_net *dev = get_device(vid);
941 if (unlikely(!(dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
942 RTE_LOG(ERR, VHOST_DATA,
943 "(%d) %s: built-in vhost net backend is disabled.\n",
948 return virtio_dev_rx(dev, queue_id, pkts, count);
952 virtio_net_with_host_offload(struct virtio_net *dev)
955 ((1ULL << VIRTIO_NET_F_CSUM) |
956 (1ULL << VIRTIO_NET_F_HOST_ECN) |
957 (1ULL << VIRTIO_NET_F_HOST_TSO4) |
958 (1ULL << VIRTIO_NET_F_HOST_TSO6) |
959 (1ULL << VIRTIO_NET_F_HOST_UFO)))
966 parse_ethernet(struct rte_mbuf *m, uint16_t *l4_proto, void **l4_hdr)
968 struct ipv4_hdr *ipv4_hdr;
969 struct ipv6_hdr *ipv6_hdr;
971 struct ether_hdr *eth_hdr;
974 eth_hdr = rte_pktmbuf_mtod(m, struct ether_hdr *);
976 m->l2_len = sizeof(struct ether_hdr);
977 ethertype = rte_be_to_cpu_16(eth_hdr->ether_type);
979 if (ethertype == ETHER_TYPE_VLAN) {
980 struct vlan_hdr *vlan_hdr = (struct vlan_hdr *)(eth_hdr + 1);
982 m->l2_len += sizeof(struct vlan_hdr);
983 ethertype = rte_be_to_cpu_16(vlan_hdr->eth_proto);
986 l3_hdr = (char *)eth_hdr + m->l2_len;
989 case ETHER_TYPE_IPv4:
991 *l4_proto = ipv4_hdr->next_proto_id;
992 m->l3_len = (ipv4_hdr->version_ihl & 0x0f) * 4;
993 *l4_hdr = (char *)l3_hdr + m->l3_len;
994 m->ol_flags |= PKT_TX_IPV4;
996 case ETHER_TYPE_IPv6:
998 *l4_proto = ipv6_hdr->proto;
999 m->l3_len = sizeof(struct ipv6_hdr);
1000 *l4_hdr = (char *)l3_hdr + m->l3_len;
1001 m->ol_flags |= PKT_TX_IPV6;
1011 static __rte_always_inline void
1012 vhost_dequeue_offload(struct virtio_net_hdr *hdr, struct rte_mbuf *m)
1014 uint16_t l4_proto = 0;
1015 void *l4_hdr = NULL;
1016 struct tcp_hdr *tcp_hdr = NULL;
1018 if (hdr->flags == 0 && hdr->gso_type == VIRTIO_NET_HDR_GSO_NONE)
1021 parse_ethernet(m, &l4_proto, &l4_hdr);
1022 if (hdr->flags == VIRTIO_NET_HDR_F_NEEDS_CSUM) {
1023 if (hdr->csum_start == (m->l2_len + m->l3_len)) {
1024 switch (hdr->csum_offset) {
1025 case (offsetof(struct tcp_hdr, cksum)):
1026 if (l4_proto == IPPROTO_TCP)
1027 m->ol_flags |= PKT_TX_TCP_CKSUM;
1029 case (offsetof(struct udp_hdr, dgram_cksum)):
1030 if (l4_proto == IPPROTO_UDP)
1031 m->ol_flags |= PKT_TX_UDP_CKSUM;
1033 case (offsetof(struct sctp_hdr, cksum)):
1034 if (l4_proto == IPPROTO_SCTP)
1035 m->ol_flags |= PKT_TX_SCTP_CKSUM;
1043 if (l4_hdr && hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) {
1044 switch (hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
1045 case VIRTIO_NET_HDR_GSO_TCPV4:
1046 case VIRTIO_NET_HDR_GSO_TCPV6:
1048 m->ol_flags |= PKT_TX_TCP_SEG;
1049 m->tso_segsz = hdr->gso_size;
1050 m->l4_len = (tcp_hdr->data_off & 0xf0) >> 2;
1052 case VIRTIO_NET_HDR_GSO_UDP:
1053 m->ol_flags |= PKT_TX_UDP_SEG;
1054 m->tso_segsz = hdr->gso_size;
1055 m->l4_len = sizeof(struct udp_hdr);
1058 RTE_LOG(WARNING, VHOST_DATA,
1059 "unsupported gso type %u.\n", hdr->gso_type);
1065 static __rte_always_inline void
1066 put_zmbuf(struct zcopy_mbuf *zmbuf)
1071 static __rte_always_inline int
1072 copy_desc_to_mbuf(struct virtio_net *dev, struct vhost_virtqueue *vq,
1073 struct buf_vector *buf_vec, uint16_t nr_vec,
1074 struct rte_mbuf *m, struct rte_mempool *mbuf_pool)
1076 uint32_t buf_avail, buf_offset;
1077 uint64_t buf_addr, buf_iova, buf_len;
1078 uint32_t mbuf_avail, mbuf_offset;
1080 struct rte_mbuf *cur = m, *prev = m;
1081 struct virtio_net_hdr tmp_hdr;
1082 struct virtio_net_hdr *hdr = NULL;
1083 /* A counter to avoid desc dead loop chain */
1084 uint16_t vec_idx = 0;
1085 struct batch_copy_elem *batch_copy = vq->batch_copy_elems;
1088 buf_addr = buf_vec[vec_idx].buf_addr;
1089 buf_iova = buf_vec[vec_idx].buf_iova;
1090 buf_len = buf_vec[vec_idx].buf_len;
1092 if (unlikely(buf_len < dev->vhost_hlen && nr_vec <= 1)) {
1097 if (likely(nr_vec > 1))
1098 rte_prefetch0((void *)(uintptr_t)buf_vec[1].buf_addr);
1100 if (virtio_net_with_host_offload(dev)) {
1101 if (unlikely(buf_len < sizeof(struct virtio_net_hdr))) {
1103 uint64_t remain = sizeof(struct virtio_net_hdr);
1105 uint64_t dst = (uint64_t)(uintptr_t)&tmp_hdr;
1106 uint16_t hdr_vec_idx = 0;
1109 * No luck, the virtio-net header doesn't fit
1110 * in a contiguous virtual area.
1113 len = RTE_MIN(remain,
1114 buf_vec[hdr_vec_idx].buf_len);
1115 src = buf_vec[hdr_vec_idx].buf_addr;
1116 rte_memcpy((void *)(uintptr_t)dst,
1117 (void *)(uintptr_t)src, len);
1126 hdr = (struct virtio_net_hdr *)((uintptr_t)buf_addr);
1132 * A virtio driver normally uses at least 2 desc buffers
1133 * for Tx: the first for storing the header, and others
1134 * for storing the data.
1136 if (unlikely(buf_len < dev->vhost_hlen)) {
1137 buf_offset = dev->vhost_hlen - buf_len;
1139 buf_addr = buf_vec[vec_idx].buf_addr;
1140 buf_iova = buf_vec[vec_idx].buf_iova;
1141 buf_len = buf_vec[vec_idx].buf_len;
1142 buf_avail = buf_len - buf_offset;
1143 } else if (buf_len == dev->vhost_hlen) {
1144 if (unlikely(++vec_idx >= nr_vec))
1146 buf_addr = buf_vec[vec_idx].buf_addr;
1147 buf_iova = buf_vec[vec_idx].buf_iova;
1148 buf_len = buf_vec[vec_idx].buf_len;
1151 buf_avail = buf_len;
1153 buf_offset = dev->vhost_hlen;
1154 buf_avail = buf_vec[vec_idx].buf_len - dev->vhost_hlen;
1157 rte_prefetch0((void *)(uintptr_t)
1158 (buf_addr + buf_offset));
1161 (uintptr_t)(buf_addr + buf_offset),
1162 (uint32_t)buf_avail, 0);
1165 mbuf_avail = m->buf_len - RTE_PKTMBUF_HEADROOM;
1169 cpy_len = RTE_MIN(buf_avail, mbuf_avail);
1172 * A desc buf might across two host physical pages that are
1173 * not continuous. In such case (gpa_to_hpa returns 0), data
1174 * will be copied even though zero copy is enabled.
1176 if (unlikely(dev->dequeue_zero_copy && (hpa = gpa_to_hpa(dev,
1177 buf_iova + buf_offset, cpy_len)))) {
1178 cur->data_len = cpy_len;
1181 (void *)(uintptr_t)(buf_addr + buf_offset);
1182 cur->buf_iova = hpa;
1185 * In zero copy mode, one mbuf can only reference data
1186 * for one or partial of one desc buff.
1188 mbuf_avail = cpy_len;
1190 if (likely(cpy_len > MAX_BATCH_LEN ||
1191 vq->batch_copy_nb_elems >= vq->size ||
1192 (hdr && cur == m))) {
1193 rte_memcpy(rte_pktmbuf_mtod_offset(cur, void *,
1195 (void *)((uintptr_t)(buf_addr +
1199 batch_copy[vq->batch_copy_nb_elems].dst =
1200 rte_pktmbuf_mtod_offset(cur, void *,
1202 batch_copy[vq->batch_copy_nb_elems].src =
1203 (void *)((uintptr_t)(buf_addr +
1205 batch_copy[vq->batch_copy_nb_elems].len =
1207 vq->batch_copy_nb_elems++;
1211 mbuf_avail -= cpy_len;
1212 mbuf_offset += cpy_len;
1213 buf_avail -= cpy_len;
1214 buf_offset += cpy_len;
1216 /* This buf reaches to its end, get the next one */
1217 if (buf_avail == 0) {
1218 if (++vec_idx >= nr_vec)
1221 buf_addr = buf_vec[vec_idx].buf_addr;
1222 buf_iova = buf_vec[vec_idx].buf_iova;
1223 buf_len = buf_vec[vec_idx].buf_len;
1226 * Prefecth desc n + 1 buffer while
1227 * desc n buffer is processed.
1229 if (vec_idx + 1 < nr_vec)
1230 rte_prefetch0((void *)(uintptr_t)
1231 buf_vec[vec_idx + 1].buf_addr);
1234 buf_avail = buf_len;
1236 PRINT_PACKET(dev, (uintptr_t)buf_addr,
1237 (uint32_t)buf_avail, 0);
1241 * This mbuf reaches to its end, get a new one
1242 * to hold more data.
1244 if (mbuf_avail == 0) {
1245 cur = rte_pktmbuf_alloc(mbuf_pool);
1246 if (unlikely(cur == NULL)) {
1247 RTE_LOG(ERR, VHOST_DATA, "Failed to "
1248 "allocate memory for mbuf.\n");
1252 if (unlikely(dev->dequeue_zero_copy))
1253 rte_mbuf_refcnt_update(cur, 1);
1256 prev->data_len = mbuf_offset;
1258 m->pkt_len += mbuf_offset;
1262 mbuf_avail = cur->buf_len - RTE_PKTMBUF_HEADROOM;
1266 prev->data_len = mbuf_offset;
1267 m->pkt_len += mbuf_offset;
1270 vhost_dequeue_offload(hdr, m);
1277 static __rte_always_inline struct zcopy_mbuf *
1278 get_zmbuf(struct vhost_virtqueue *vq)
1284 /* search [last_zmbuf_idx, zmbuf_size) */
1285 i = vq->last_zmbuf_idx;
1286 last = vq->zmbuf_size;
1289 for (; i < last; i++) {
1290 if (vq->zmbufs[i].in_use == 0) {
1291 vq->last_zmbuf_idx = i + 1;
1292 vq->zmbufs[i].in_use = 1;
1293 return &vq->zmbufs[i];
1299 /* search [0, last_zmbuf_idx) */
1301 last = vq->last_zmbuf_idx;
1308 static __rte_always_inline bool
1309 mbuf_is_consumed(struct rte_mbuf *m)
1312 if (rte_mbuf_refcnt_read(m) > 1)
1320 static __rte_always_inline void
1321 restore_mbuf(struct rte_mbuf *m)
1323 uint32_t mbuf_size, priv_size;
1326 priv_size = rte_pktmbuf_priv_size(m->pool);
1327 mbuf_size = sizeof(struct rte_mbuf) + priv_size;
1328 /* start of buffer is after mbuf structure and priv data */
1330 m->buf_addr = (char *)m + mbuf_size;
1331 m->buf_iova = rte_mempool_virt2iova(m) + mbuf_size;
1336 static __rte_always_inline uint16_t
1337 virtio_dev_tx_split(struct virtio_net *dev, struct vhost_virtqueue *vq,
1338 struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count)
1341 uint16_t free_entries;
1343 if (unlikely(dev->dequeue_zero_copy)) {
1344 struct zcopy_mbuf *zmbuf, *next;
1346 for (zmbuf = TAILQ_FIRST(&vq->zmbuf_list);
1347 zmbuf != NULL; zmbuf = next) {
1348 next = TAILQ_NEXT(zmbuf, next);
1350 if (mbuf_is_consumed(zmbuf->mbuf)) {
1351 update_shadow_used_ring_split(vq,
1352 zmbuf->desc_idx, 0);
1353 TAILQ_REMOVE(&vq->zmbuf_list, zmbuf, next);
1354 restore_mbuf(zmbuf->mbuf);
1355 rte_pktmbuf_free(zmbuf->mbuf);
1361 flush_shadow_used_ring_split(dev, vq);
1362 vhost_vring_call_split(dev, vq);
1365 rte_prefetch0(&vq->avail->ring[vq->last_avail_idx & (vq->size - 1)]);
1367 free_entries = *((volatile uint16_t *)&vq->avail->idx) -
1369 if (free_entries == 0)
1372 VHOST_LOG_DEBUG(VHOST_DATA, "(%d) %s\n", dev->vid, __func__);
1374 count = RTE_MIN(count, MAX_PKT_BURST);
1375 count = RTE_MIN(count, free_entries);
1376 VHOST_LOG_DEBUG(VHOST_DATA, "(%d) about to dequeue %u buffers\n",
1379 for (i = 0; i < count; i++) {
1380 struct buf_vector buf_vec[BUF_VECTOR_MAX];
1381 uint16_t head_idx, dummy_len;
1382 uint16_t nr_vec = 0;
1385 if (unlikely(fill_vec_buf_split(dev, vq,
1386 vq->last_avail_idx + i,
1388 &head_idx, &dummy_len,
1389 VHOST_ACCESS_RO) < 0))
1392 if (likely(dev->dequeue_zero_copy == 0))
1393 update_shadow_used_ring_split(vq, head_idx, 0);
1395 rte_prefetch0((void *)(uintptr_t)buf_vec[0].buf_addr);
1397 pkts[i] = rte_pktmbuf_alloc(mbuf_pool);
1398 if (unlikely(pkts[i] == NULL)) {
1399 RTE_LOG(ERR, VHOST_DATA,
1400 "Failed to allocate memory for mbuf.\n");
1404 err = copy_desc_to_mbuf(dev, vq, buf_vec, nr_vec, pkts[i],
1406 if (unlikely(err)) {
1407 rte_pktmbuf_free(pkts[i]);
1411 if (unlikely(dev->dequeue_zero_copy)) {
1412 struct zcopy_mbuf *zmbuf;
1414 zmbuf = get_zmbuf(vq);
1416 rte_pktmbuf_free(pkts[i]);
1419 zmbuf->mbuf = pkts[i];
1420 zmbuf->desc_idx = head_idx;
1423 * Pin lock the mbuf; we will check later to see
1424 * whether the mbuf is freed (when we are the last
1425 * user) or not. If that's the case, we then could
1426 * update the used ring safely.
1428 rte_mbuf_refcnt_update(pkts[i], 1);
1431 TAILQ_INSERT_TAIL(&vq->zmbuf_list, zmbuf, next);
1434 vq->last_avail_idx += i;
1436 if (likely(dev->dequeue_zero_copy == 0)) {
1437 do_data_copy_dequeue(vq);
1438 if (unlikely(i < count))
1439 vq->shadow_used_idx = i;
1440 flush_shadow_used_ring_split(dev, vq);
1441 vhost_vring_call_split(dev, vq);
1447 static __rte_always_inline uint16_t
1448 virtio_dev_tx_packed(struct virtio_net *dev, struct vhost_virtqueue *vq,
1449 struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count)
1453 rte_prefetch0(&vq->desc_packed[vq->last_avail_idx]);
1455 if (unlikely(dev->dequeue_zero_copy)) {
1456 struct zcopy_mbuf *zmbuf, *next;
1458 for (zmbuf = TAILQ_FIRST(&vq->zmbuf_list);
1459 zmbuf != NULL; zmbuf = next) {
1460 next = TAILQ_NEXT(zmbuf, next);
1462 if (mbuf_is_consumed(zmbuf->mbuf)) {
1463 update_shadow_used_ring_packed(vq,
1468 TAILQ_REMOVE(&vq->zmbuf_list, zmbuf, next);
1469 restore_mbuf(zmbuf->mbuf);
1470 rte_pktmbuf_free(zmbuf->mbuf);
1476 flush_shadow_used_ring_packed(dev, vq);
1477 vhost_vring_call_packed(dev, vq);
1480 VHOST_LOG_DEBUG(VHOST_DATA, "(%d) %s\n", dev->vid, __func__);
1482 count = RTE_MIN(count, MAX_PKT_BURST);
1483 VHOST_LOG_DEBUG(VHOST_DATA, "(%d) about to dequeue %u buffers\n",
1486 for (i = 0; i < count; i++) {
1487 struct buf_vector buf_vec[BUF_VECTOR_MAX];
1488 uint16_t buf_id, dummy_len;
1489 uint16_t desc_count, nr_vec = 0;
1492 if (unlikely(fill_vec_buf_packed(dev, vq,
1493 vq->last_avail_idx, &desc_count,
1495 &buf_id, &dummy_len,
1496 VHOST_ACCESS_RW) < 0))
1499 if (likely(dev->dequeue_zero_copy == 0))
1500 update_shadow_used_ring_packed(vq, buf_id, 0,
1503 rte_prefetch0((void *)(uintptr_t)buf_vec[0].buf_addr);
1505 pkts[i] = rte_pktmbuf_alloc(mbuf_pool);
1506 if (unlikely(pkts[i] == NULL)) {
1507 RTE_LOG(ERR, VHOST_DATA,
1508 "Failed to allocate memory for mbuf.\n");
1512 err = copy_desc_to_mbuf(dev, vq, buf_vec, nr_vec, pkts[i],
1514 if (unlikely(err)) {
1515 rte_pktmbuf_free(pkts[i]);
1519 if (unlikely(dev->dequeue_zero_copy)) {
1520 struct zcopy_mbuf *zmbuf;
1522 zmbuf = get_zmbuf(vq);
1524 rte_pktmbuf_free(pkts[i]);
1527 zmbuf->mbuf = pkts[i];
1528 zmbuf->desc_idx = buf_id;
1529 zmbuf->desc_count = desc_count;
1532 * Pin lock the mbuf; we will check later to see
1533 * whether the mbuf is freed (when we are the last
1534 * user) or not. If that's the case, we then could
1535 * update the used ring safely.
1537 rte_mbuf_refcnt_update(pkts[i], 1);
1540 TAILQ_INSERT_TAIL(&vq->zmbuf_list, zmbuf, next);
1543 vq->last_avail_idx += desc_count;
1544 if (vq->last_avail_idx >= vq->size) {
1545 vq->last_avail_idx -= vq->size;
1546 vq->avail_wrap_counter ^= 1;
1550 if (likely(dev->dequeue_zero_copy == 0)) {
1551 do_data_copy_dequeue(vq);
1552 if (unlikely(i < count))
1553 vq->shadow_used_idx = i;
1554 flush_shadow_used_ring_packed(dev, vq);
1555 vhost_vring_call_packed(dev, vq);
1562 rte_vhost_dequeue_burst(int vid, uint16_t queue_id,
1563 struct rte_mempool *mbuf_pool, struct rte_mbuf **pkts, uint16_t count)
1565 struct virtio_net *dev;
1566 struct rte_mbuf *rarp_mbuf = NULL;
1567 struct vhost_virtqueue *vq;
1569 dev = get_device(vid);
1573 if (unlikely(!(dev->flags & VIRTIO_DEV_BUILTIN_VIRTIO_NET))) {
1574 RTE_LOG(ERR, VHOST_DATA,
1575 "(%d) %s: built-in vhost net backend is disabled.\n",
1576 dev->vid, __func__);
1580 if (unlikely(!is_valid_virt_queue_idx(queue_id, 1, dev->nr_vring))) {
1581 RTE_LOG(ERR, VHOST_DATA, "(%d) %s: invalid virtqueue idx %d.\n",
1582 dev->vid, __func__, queue_id);
1586 vq = dev->virtqueue[queue_id];
1588 if (unlikely(rte_spinlock_trylock(&vq->access_lock) == 0))
1591 if (unlikely(vq->enabled == 0)) {
1593 goto out_access_unlock;
1596 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
1597 vhost_user_iotlb_rd_lock(vq);
1599 if (unlikely(vq->access_ok == 0))
1600 if (unlikely(vring_translate(dev, vq) < 0)) {
1606 * Construct a RARP broadcast packet, and inject it to the "pkts"
1607 * array, to looks like that guest actually send such packet.
1609 * Check user_send_rarp() for more information.
1611 * broadcast_rarp shares a cacheline in the virtio_net structure
1612 * with some fields that are accessed during enqueue and
1613 * rte_atomic16_cmpset() causes a write if using cmpxchg. This could
1614 * result in false sharing between enqueue and dequeue.
1616 * Prevent unnecessary false sharing by reading broadcast_rarp first
1617 * and only performing cmpset if the read indicates it is likely to
1620 if (unlikely(rte_atomic16_read(&dev->broadcast_rarp) &&
1621 rte_atomic16_cmpset((volatile uint16_t *)
1622 &dev->broadcast_rarp.cnt, 1, 0))) {
1624 rarp_mbuf = rte_net_make_rarp_packet(mbuf_pool, &dev->mac);
1625 if (rarp_mbuf == NULL) {
1626 RTE_LOG(ERR, VHOST_DATA,
1627 "Failed to make RARP packet.\n");
1634 if (vq_is_packed(dev))
1635 count = virtio_dev_tx_packed(dev, vq, mbuf_pool, pkts, count);
1637 count = virtio_dev_tx_split(dev, vq, mbuf_pool, pkts, count);
1640 if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))
1641 vhost_user_iotlb_rd_unlock(vq);
1644 rte_spinlock_unlock(&vq->access_lock);
1646 if (unlikely(rarp_mbuf != NULL)) {
1648 * Inject it to the head of "pkts" array, so that switch's mac
1649 * learning table will get updated first.
1651 memmove(&pkts[1], pkts, count * sizeof(struct rte_mbuf *));
1652 pkts[0] = rarp_mbuf;