vhost-user: add vhost-user
add virtio and vhost-user functions to connect with QEMU.
$ ./passt --vhost-user
and
# qemu-system-x86_64 ... -m 4G \
-object memory-backend-memfd,id=memfd0,share=on,size=4G \
-numa node,memdev=memfd0 \
-chardev socket,id=chr0,path=/tmp/passt_1.socket \
-netdev vhost-user,id=netdev0,chardev=chr0 \
-device virtio-net,mac=9a:2b:2c:2d:2e:2f,netdev=netdev0 \
...
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
[sbrivio: as suggested by lvivier, include <netinet/if_ether.h>
before including <linux/if_ether.h> as C libraries such as musl
__UAPI_DEF_ETHHDR in <netinet/if_ether.h> if they already have
a definition of struct ethhdr]
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2024-11-22 17:43:34 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
* Copyright Red Hat
|
|
|
|
* Author: Laurent Vivier <lvivier@redhat.com>
|
|
|
|
*
|
|
|
|
* vhost-user common UDP and TCP functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef VU_COMMON_H
|
|
|
|
#define VU_COMMON_H
|
|
|
|
#include <linux/virtio_net.h>
|
|
|
|
|
|
|
|
static inline void *vu_eth(void *base)
|
|
|
|
{
|
|
|
|
return ((char *)base + sizeof(struct virtio_net_hdr_mrg_rxbuf));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *vu_ip(void *base)
|
|
|
|
{
|
|
|
|
return (struct ethhdr *)vu_eth(base) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *vu_payloadv4(void *base)
|
|
|
|
{
|
|
|
|
return (struct iphdr *)vu_ip(base) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *vu_payloadv6(void *base)
|
|
|
|
{
|
|
|
|
return (struct ipv6hdr *)vu_ip(base) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* vu_set_element() - Initialize a vu_virtq_element
|
|
|
|
* @elem: Element to initialize
|
|
|
|
* @out_sg: One out iovec entry to set in elem
|
|
|
|
* @in_sg: One in iovec entry to set in elem
|
|
|
|
*/
|
|
|
|
static inline void vu_set_element(struct vu_virtq_element *elem,
|
|
|
|
struct iovec *out_sg, struct iovec *in_sg)
|
|
|
|
{
|
|
|
|
elem->out_num = !!out_sg;
|
|
|
|
elem->out_sg = out_sg;
|
|
|
|
elem->in_num = !!in_sg;
|
|
|
|
elem->in_sg = in_sg;
|
|
|
|
}
|
|
|
|
|
|
|
|
void vu_init_elem(struct vu_virtq_element *elem, struct iovec *iov,
|
|
|
|
int elem_cnt);
|
2024-12-13 16:48:22 +01:00
|
|
|
int vu_collect(const struct vu_dev *vdev, struct vu_virtq *vq,
|
vhost-user: add vhost-user
add virtio and vhost-user functions to connect with QEMU.
$ ./passt --vhost-user
and
# qemu-system-x86_64 ... -m 4G \
-object memory-backend-memfd,id=memfd0,share=on,size=4G \
-numa node,memdev=memfd0 \
-chardev socket,id=chr0,path=/tmp/passt_1.socket \
-netdev vhost-user,id=netdev0,chardev=chr0 \
-device virtio-net,mac=9a:2b:2c:2d:2e:2f,netdev=netdev0 \
...
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
[sbrivio: as suggested by lvivier, include <netinet/if_ether.h>
before including <linux/if_ether.h> as C libraries such as musl
__UAPI_DEF_ETHHDR in <netinet/if_ether.h> if they already have
a definition of struct ethhdr]
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
2024-11-22 17:43:34 +01:00
|
|
|
struct vu_virtq_element *elem, int max_elem, size_t size,
|
|
|
|
size_t *frame_size);
|
|
|
|
void vu_set_vnethdr(const struct vu_dev *vdev,
|
|
|
|
struct virtio_net_hdr_mrg_rxbuf *vnethdr,
|
|
|
|
int num_buffers);
|
|
|
|
void vu_flush(const struct vu_dev *vdev, struct vu_virtq *vq,
|
|
|
|
struct vu_virtq_element *elem, int elem_cnt);
|
|
|
|
void vu_kick_cb(struct vu_dev *vdev, union epoll_ref ref,
|
|
|
|
const struct timespec *now);
|
|
|
|
int vu_send_single(const struct ctx *c, const void *buf, size_t size);
|
|
|
|
#endif /* VU_COMMON_H */
|