18 #include <sys/types.h> 22 #include <linux/if_tun.h> 23 #include <sys/ioctl.h> 24 #include <linux/virtio_net.h> 25 #include <linux/vhost.h> 26 #include <sys/eventfd.h> 39 #define _IOCTL(fd,a,...) \ 40 if (ioctl (fd, a, __VA_ARGS__) < 0) \ 42 err = clib_error_return_unix (0, "ioctl(" #a ")"); \ 69 struct vhost_vring_state state = { 0 };
70 struct vhost_vring_addr addr = { 0 };
71 struct vhost_vring_file file = { 0 };
99 i =
sizeof (
struct vring_desc) * sz;
104 i =
sizeof (
struct vring_avail) + sz *
sizeof (vring->
avail->ring[0]);
111 i =
sizeof (
struct vring_used) + sz *
sizeof (
struct vring_used_elem);
121 vring->
call_fd = eventfd (0, EFD_NONBLOCK | EFD_CLOEXEC);
122 vring->
kick_fd = eventfd (0, EFD_CLOEXEC);
133 _IOCTL (vif->
fd, VHOST_SET_VRING_NUM, &state);
140 _IOCTL (vif->
fd, VHOST_SET_VRING_ADDR, &addr);
144 _IOCTL (vif->
fd, VHOST_SET_VRING_KICK, &file);
146 _IOCTL (vif->
fd, VHOST_SET_VRING_CALL, &file);
148 _IOCTL (vif->
fd, VHOST_NET_SET_BACKEND, &file);
205 struct vring_used_elem *e = &vring->
used->ring[last & mask];
253 [thread_index]->numa_node);
269 u32 i, j, hw_if_index;
279 struct feat_struct *feat_entry;
281 static struct feat_struct feat_array[] = {
282 #define _(s,b) { .str = #s, .bit = b, }, 288 struct feat_struct *flag_entry;
289 static struct feat_struct flags_array[] = {
290 #define _(b,e,s) { .bit = b, .str = s, }, 299 for (hw_if_index = 0; hw_if_index <
vec_len (hw_if_indices); hw_if_index++)
304 if (vif->
type != type)
328 flag_entry = (
struct feat_struct *) &flags_array;
329 while (flag_entry->str)
331 if (vif->
flags & (1ULL << flag_entry->bit))
341 feat_entry = (
struct feat_struct *) &feat_array;
342 while (feat_entry->str)
344 if (vif->
features & (1ULL << feat_entry->bit))
350 feat_entry = (
struct feat_struct *) &feat_array;
351 while (feat_entry->str)
368 " qsz %d, last_used_idx %d, desc_next %d, desc_in_use %d",
372 " avail.flags 0x%x avail.idx %d used.flags 0x%x used.idx %d",
374 vring->
used->flags, vring->
used->idx);
384 " id addr len flags next user_addr\n");
386 " ===== ================== ===== ====== ===== ==================\n");
387 for (j = 0; j < vring->
size; j++)
389 struct vring_desc *desc = &vring->
desc[j];
391 " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n",
394 desc->flags, desc->next, desc->addr);
403 " qsz %d, last_used_idx %d, desc_next %d, desc_in_use %d",
407 " avail.flags 0x%x avail.idx %d used.flags 0x%x used.idx %d",
409 vring->
used->flags, vring->
used->idx);
419 " id addr len flags next user_addr\n");
421 " ===== ================== ===== ====== ===== ==================\n");
422 for (j = 0; j < vring->
size; j++)
424 struct vring_desc *desc = &vring->
desc[j];
426 " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n",
429 desc->flags, desc->next, desc->addr);
439 " qsz %d, last_used_idx %d, desc_next %d, desc_in_use %d",
443 " avail.flags 0x%x avail.idx %d used.flags 0x%x used.idx %d",
445 vring->
used->flags, vring->
used->idx);
455 " id addr len flags next user_addr\n");
457 " ===== ================== ===== ====== ===== ==================\n");
458 for (j = 0; j < vring->
size; j++)
460 struct vring_desc *desc = &vring->
desc[j];
462 " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n",
465 desc->flags, desc->next, desc->addr);
#define vec_foreach_index(var, v)
Iterate over vector indices.
format_function_t format_vnet_hw_if_index_name
void virtio_set_net_hdr_size(virtio_if_t *vif)
void virtio_show(vlib_main_t *vm, u32 *hw_if_indices, u8 show_descr, u32 type)
static void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
vnet_main_t * vnet_get_main(void)
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
#define foreach_virtio_net_features
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
static heap_elt_t * last(heap_header_t *h)
void virtio_vring_set_numa_node(vlib_main_t *vm, virtio_if_t *vif, u32 idx)
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
vlib_main_t ** vlib_mains
clib_error_t * virtio_vring_free_tx(vlib_main_t *vm, virtio_if_t *vif, u32 idx)
clib_file_function_t * read_function
static void clib_spinlock_free(clib_spinlock_t *p)
struct vring_avail * avail
u8 * format_ethernet_address(u8 *s, va_list *args)
#define TX_QUEUE_ACCESS(X)
void device_status(vlib_main_t *vm, virtio_if_t *vif)
static_always_inline void vnet_device_input_set_interrupt_pending(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id)
void virtio_free_rx_buffers(vlib_main_t *vm, virtio_vring_t *vring)
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
#define clib_error_return(e, args...)
clib_file_main_t file_main
static void clib_spinlock_init(clib_spinlock_t *p)
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
static_always_inline uword vnet_get_device_input_thread_index(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id)
virtio_vring_t * rxq_vrings
format_function_t format_virtio_device_name
#define VIRTIO_RING_FLAG_MASK_INT
#define vec_free(V)
Free vector's memory (no header).
static uword round_pow2(uword x, uword pow2)
void virtio_free_used_desc(vlib_main_t *vm, virtio_vring_t *vring)
static uword clib_file_add(clib_file_main_t *um, clib_file_t *template)
static void clib_file_del_by_index(clib_file_main_t *um, uword index)
#define VIRTIO_FEATURE(X)
clib_error_t * virtio_vring_init(vlib_main_t *vm, virtio_if_t *vif, u16 idx, u16 sz)
static void clib_mem_free(void *p)
static uword pointer_to_uword(const void *p)
virtio_main_t virtio_main
static uword is_pow2(uword x)
#define RX_QUEUE_ACCESS(X)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
static void * clib_mem_alloc_aligned(uword size, uword align)
virtio_vring_t * cxq_vring
clib_error_t * virtio_vring_free_rx(vlib_main_t *vm, virtio_if_t *vif, u32 idx)
static vlib_thread_main_t * vlib_get_thread_main()
#define CLIB_CACHE_LINE_BYTES
static u8 vlib_buffer_pool_get_default_for_numa(vlib_main_t *vm, u32 numa_node)
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
format_function_t format_vlib_pci_addr
virtio_vring_t * txq_vrings
static clib_error_t * call_read_ready(clib_file_t *uf)