blob: 2d393656b3974237819e2e933fc460fc3e1c4a13 [file] [log] [blame]
Damjan Marion8389fb92017-10-13 18:29:53 +02001/*
2 *------------------------------------------------------------------
3 * Copyright (c) 2017 Cisco and/or its affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *------------------------------------------------------------------
16 */
17
18#include <sys/types.h>
19#include <sys/stat.h>
20#include <fcntl.h>
21#include <net/if.h>
22#include <linux/if_tun.h>
23#include <sys/ioctl.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020024#include <sys/eventfd.h>
25
26#include <vlib/vlib.h>
Mohsin Kazmid6c15af2018-10-23 18:00:47 +020027#include <vlib/pci/pci.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020028#include <vlib/unix/unix.h>
29#include <vnet/ethernet/ethernet.h>
Milan Lenco73e7f422017-12-14 10:04:25 +010030#include <vnet/ip/ip4_packet.h>
31#include <vnet/ip/ip6_packet.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020032#include <vnet/devices/virtio/virtio.h>
Mohsin Kazmi6799f9b2021-04-28 18:55:45 +020033#include <vnet/devices/virtio/virtio_inline.h>
Mohsin Kazmid6c15af2018-10-23 18:00:47 +020034#include <vnet/devices/virtio/pci.h>
Damjan Marion94100532020-11-06 23:25:57 +010035#include <vnet/interface/rx_queue_funcs.h>
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +000036#include <vnet/interface/tx_queue_funcs.h>
Damjan Marion8389fb92017-10-13 18:29:53 +020037
38virtio_main_t virtio_main;
39
40#define _IOCTL(fd,a,...) \
41 if (ioctl (fd, a, __VA_ARGS__) < 0) \
42 { \
43 err = clib_error_return_unix (0, "ioctl(" #a ")"); \
44 goto error; \
45 }
46
47static clib_error_t *
48call_read_ready (clib_file_t * uf)
49{
Damjan Marion8389fb92017-10-13 18:29:53 +020050 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion8389fb92017-10-13 18:29:53 +020051 u64 b;
52
53 CLIB_UNUSED (ssize_t size) = read (uf->file_descriptor, &b, sizeof (b));
Damjan Marion94100532020-11-06 23:25:57 +010054 vnet_hw_if_rx_queue_set_int_pending (vnm, uf->private_data);
Damjan Marion8389fb92017-10-13 18:29:53 +020055
56 return 0;
57}
58
59
60clib_error_t *
61virtio_vring_init (vlib_main_t * vm, virtio_if_t * vif, u16 idx, u16 sz)
62{
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +000063 vnet_virtio_vring_t *vring;
Damjan Marion8389fb92017-10-13 18:29:53 +020064 int i;
65
66 if (!is_pow2 (sz))
67 return clib_error_return (0, "ring size must be power of 2");
68
69 if (sz > 32768)
70 return clib_error_return (0, "ring size must be 32768 or lower");
71
72 if (sz == 0)
73 sz = 256;
74
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +000075 if (idx % 2)
76 {
77 vec_validate_aligned (vif->txq_vrings, TX_QUEUE_ACCESS (idx),
78 CLIB_CACHE_LINE_BYTES);
79 vring = vec_elt_at_index (vif->txq_vrings, TX_QUEUE_ACCESS (idx));
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +000080 clib_spinlock_init (&vring->lockp);
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +000081 }
82 else
83 {
84 vec_validate_aligned (vif->rxq_vrings, RX_QUEUE_ACCESS (idx),
85 CLIB_CACHE_LINE_BYTES);
86 vring = vec_elt_at_index (vif->rxq_vrings, RX_QUEUE_ACCESS (idx));
87 }
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +000088 i = sizeof (vnet_virtio_vring_desc_t) * sz;
Damjan Marion8389fb92017-10-13 18:29:53 +020089 i = round_pow2 (i, CLIB_CACHE_LINE_BYTES);
90 vring->desc = clib_mem_alloc_aligned (i, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -040091 clib_memset (vring->desc, 0, i);
Damjan Marion8389fb92017-10-13 18:29:53 +020092
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +000093 i = sizeof (vnet_virtio_vring_avail_t) + sz * sizeof (vring->avail->ring[0]);
Damjan Marion8389fb92017-10-13 18:29:53 +020094 i = round_pow2 (i, CLIB_CACHE_LINE_BYTES);
95 vring->avail = clib_mem_alloc_aligned (i, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -040096 clib_memset (vring->avail, 0, i);
Damjan Marion8389fb92017-10-13 18:29:53 +020097 // tell kernel that we don't need interrupt
Mohsin Kazmia7a22812020-08-31 17:17:16 +020098 vring->avail->flags = VRING_AVAIL_F_NO_INTERRUPT;
Damjan Marion8389fb92017-10-13 18:29:53 +020099
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000100 i = sizeof (vnet_virtio_vring_used_t) +
101 sz * sizeof (vnet_virtio_vring_used_elem_t);
Damjan Marion8389fb92017-10-13 18:29:53 +0200102 i = round_pow2 (i, CLIB_CACHE_LINE_BYTES);
103 vring->used = clib_mem_alloc_aligned (i, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400104 clib_memset (vring->used, 0, i);
Damjan Marion8389fb92017-10-13 18:29:53 +0200105
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000106 vring->queue_id = idx;
Damjan Marion8389fb92017-10-13 18:29:53 +0200107 ASSERT (vring->buffers == 0);
Damjan Marionc58408c2018-01-18 14:54:04 +0100108 vec_validate_aligned (vring->buffers, sz, CLIB_CACHE_LINE_BYTES);
Damjan Marion8389fb92017-10-13 18:29:53 +0200109
Mohsin Kazmi7f6d1452020-02-27 11:49:21 +0100110 if (idx & 1)
111 {
112 clib_memset_u32 (vring->buffers, ~0, sz);
Mohsin Kazmi4b563402021-01-27 14:16:56 +0000113 // tx path: suppress the interrupts from kernel
114 vring->call_fd = -1;
Mohsin Kazmi7f6d1452020-02-27 11:49:21 +0100115 }
Mohsin Kazmi4b563402021-01-27 14:16:56 +0000116 else
117 vring->call_fd = eventfd (0, EFD_NONBLOCK | EFD_CLOEXEC);
Mohsin Kazmi7f6d1452020-02-27 11:49:21 +0100118
Mohsin Kazmidd0144a2022-09-14 11:25:54 +0000119 vring->total_packets = 0;
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000120 vring->queue_size = sz;
Damjan Marion7c6102b2019-11-08 17:59:56 +0100121 vring->kick_fd = eventfd (0, EFD_NONBLOCK | EFD_CLOEXEC);
122 virtio_log_debug (vif, "vring %u size %u call_fd %d kick_fd %d", idx,
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000123 vring->queue_size, vring->call_fd, vring->kick_fd);
Damjan Marion8389fb92017-10-13 18:29:53 +0200124
Damjan Marion7c6102b2019-11-08 17:59:56 +0100125 return 0;
Damjan Marion8389fb92017-10-13 18:29:53 +0200126}
127
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200128inline void
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000129virtio_free_buffers (vlib_main_t *vm, vnet_virtio_vring_t *vring)
Damjan Marion8389fb92017-10-13 18:29:53 +0200130{
Stevena624dbe2018-01-09 11:13:29 -0800131 u16 used = vring->desc_in_use;
Steven074f6982018-03-30 22:18:11 -0700132 u16 last = vring->last_used_idx;
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000133 u16 mask = vring->queue_size - 1;
Stevena624dbe2018-01-09 11:13:29 -0800134
135 while (used)
136 {
Steven074f6982018-03-30 22:18:11 -0700137 vlib_buffer_free (vm, &vring->buffers[last & mask], 1);
138 last++;
Stevena624dbe2018-01-09 11:13:29 -0800139 used--;
140 }
141}
142
143clib_error_t *
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000144virtio_vring_free_rx (vlib_main_t * vm, virtio_if_t * vif, u32 idx)
Stevena624dbe2018-01-09 11:13:29 -0800145{
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000146 vnet_virtio_vring_t *vring =
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000147 vec_elt_at_index (vif->rxq_vrings, RX_QUEUE_ACCESS (idx));
Stevena624dbe2018-01-09 11:13:29 -0800148
149 clib_file_del_by_index (&file_main, vring->call_file_index);
150 close (vring->kick_fd);
151 close (vring->call_fd);
152 if (vring->used)
153 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100154 virtio_free_buffers (vm, vring);
Stevena624dbe2018-01-09 11:13:29 -0800155 clib_mem_free (vring->used);
156 }
Damjan Marion8389fb92017-10-13 18:29:53 +0200157 if (vring->desc)
158 clib_mem_free (vring->desc);
159 if (vring->avail)
160 clib_mem_free (vring->avail);
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000161 vec_free (vring->buffers);
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000162 return 0;
163}
164
165clib_error_t *
166virtio_vring_free_tx (vlib_main_t * vm, virtio_if_t * vif, u32 idx)
167{
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000168 vnet_virtio_vring_t *vring =
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000169 vec_elt_at_index (vif->txq_vrings, TX_QUEUE_ACCESS (idx));
170
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000171 close (vring->kick_fd);
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000172 if (vring->used)
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200173 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100174 virtio_free_buffers (vm, vring);
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000175 clib_mem_free (vring->used);
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200176 }
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000177 if (vring->desc)
178 clib_mem_free (vring->desc);
179 if (vring->avail)
180 clib_mem_free (vring->avail);
Damjan Marion8389fb92017-10-13 18:29:53 +0200181 vec_free (vring->buffers);
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200182 gro_flow_table_free (vring->flow_table);
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000183 virtio_vring_buffering_free (vm, vring->buffering);
Mohsin Kazmi3f340172019-05-27 15:53:25 +0200184 clib_spinlock_free (&vring->lockp);
Damjan Marion8389fb92017-10-13 18:29:53 +0200185 return 0;
186}
187
Mohsin Kazmi80659b42019-01-31 13:18:00 +0000188void
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200189virtio_set_packet_coalesce (virtio_if_t * vif)
190{
191 vnet_main_t *vnm = vnet_get_main ();
192 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, vif->hw_if_index);
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000193 vnet_virtio_vring_t *vring;
Mohsin Kazmi1017a1d2020-09-25 15:36:19 +0200194 vif->packet_coalesce = 1;
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200195 vec_foreach (vring, vif->txq_vrings)
196 {
197 gro_flow_table_init (&vring->flow_table,
198 vif->type & (VIRTIO_IF_TYPE_TAP |
199 VIRTIO_IF_TYPE_PCI), hw->tx_node_index);
200 }
201}
202
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000203clib_error_t *
204virtio_set_packet_buffering (virtio_if_t * vif, u16 buffering_size)
205{
206 vnet_main_t *vnm = vnet_get_main ();
207 vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, vif->hw_if_index);
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000208 vnet_virtio_vring_t *vring;
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000209 clib_error_t *error = 0;
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000210
211 vec_foreach (vring, vif->txq_vrings)
212 {
213 if ((error =
214 virtio_vring_buffering_init (&vring->buffering, hw->tx_node_index,
215 buffering_size)))
216 {
217 break;
218 }
219 }
220
221 return error;
222}
223
Mohsin Kazmi6799f9b2021-04-28 18:55:45 +0200224static void
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000225virtio_vring_fill (vlib_main_t *vm, virtio_if_t *vif,
226 vnet_virtio_vring_t *vring)
Mohsin Kazmi6799f9b2021-04-28 18:55:45 +0200227{
228 if (vif->is_packed)
229 virtio_refill_vring_packed (vm, vif, vif->type, vring,
230 vif->virtio_net_hdr_sz,
231 virtio_input_node.index);
232 else
233 virtio_refill_vring_split (vm, vif, vif->type, vring,
234 vif->virtio_net_hdr_sz,
235 virtio_input_node.index);
236}
237
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200238void
Damjan Marion94100532020-11-06 23:25:57 +0100239virtio_vring_set_rx_queues (vlib_main_t *vm, virtio_if_t *vif)
Mohsin Kazmi80659b42019-01-31 13:18:00 +0000240{
241 vnet_main_t *vnm = vnet_get_main ();
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000242 vnet_virtio_vring_t *vring;
Mohsin Kazmi90ffe062021-02-23 12:46:14 +0100243 u32 i = 0;
Damjan Marion94100532020-11-06 23:25:57 +0100244
245 vnet_hw_if_set_input_node (vnm, vif->hw_if_index, virtio_input_node.index);
246
247 vec_foreach (vring, vif->rxq_vrings)
248 {
249 vring->queue_index = vnet_hw_if_register_rx_queue (
250 vnm, vif->hw_if_index, RX_QUEUE_ACCESS (vring->queue_id),
251 VNET_HW_IF_RXQ_THREAD_ANY);
252 vring->buffer_pool_index = vlib_buffer_pool_get_default_for_numa (
253 vm, vnet_hw_if_get_rx_queue_numa_node (vnm, vring->queue_index));
254 if (vif->type == VIRTIO_IF_TYPE_TAP || vif->type == VIRTIO_IF_TYPE_TUN)
255 {
256
257 clib_file_t f = {
258 .read_function = call_read_ready,
259 .flags = UNIX_FILE_EVENT_EDGE_TRIGGERED,
260 .file_descriptor = vring->call_fd,
261 .private_data = vring->queue_index,
262 .description = format (0, "%U vring %u", format_virtio_device_name,
263 vif->dev_instance, vring->queue_id),
264 };
265
266 vring->call_file_index = clib_file_add (&file_main, &f);
267 vnet_hw_if_set_rx_queue_file_index (vnm, vring->queue_index,
268 vring->call_file_index);
269 }
Mohsin Kazmi90ffe062021-02-23 12:46:14 +0100270 else if ((vif->type == VIRTIO_IF_TYPE_PCI) && (vif->support_int_mode) &&
271 (vif->msix_enabled == VIRTIO_MSIX_ENABLED))
272 {
273 u32 file_index;
274 file_index =
275 vlib_pci_get_msix_file_index (vm, vif->pci_dev_handle, i + 1);
276 vnet_hw_if_set_rx_queue_file_index (vnm, vring->queue_index,
277 file_index);
278 i++;
279 }
Mohsin Kazmi6799f9b2021-04-28 18:55:45 +0200280 vnet_hw_if_set_rx_queue_mode (vnm, vring->queue_index,
281 VNET_HW_IF_RX_MODE_POLLING);
282 vring->mode = VNET_HW_IF_RX_MODE_POLLING;
283 virtio_vring_fill (vm, vif, vring);
Damjan Marion94100532020-11-06 23:25:57 +0100284 }
285 vnet_hw_if_update_runtime_data (vnm, vif->hw_if_index);
Mohsin Kazmi80659b42019-01-31 13:18:00 +0000286}
287
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000288void
289virtio_vring_set_tx_queues (vlib_main_t *vm, virtio_if_t *vif)
290{
291 vnet_main_t *vnm = vnet_get_main ();
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000292 vnet_virtio_vring_t *vring;
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000293
294 vec_foreach (vring, vif->txq_vrings)
295 {
296 vring->queue_index = vnet_hw_if_register_tx_queue (
297 vnm, vif->hw_if_index, TX_QUEUE_ACCESS (vring->queue_id));
298 }
299
Steven Luongc4a48f22022-01-19 09:08:27 -0800300 if (vif->num_txqs == 0)
301 {
302 virtio_log_error (vif, "Interface %U has 0 txq",
303 format_vnet_hw_if_index_name, vnm, vif->hw_if_index);
304 return;
305 }
306
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000307 for (u32 j = 0; j < vlib_get_n_threads (); j++)
308 {
309 u32 qi = vif->txq_vrings[j % vif->num_txqs].queue_index;
310 vnet_hw_if_tx_queue_assign_thread (vnm, qi, j);
311 }
312
313 vnet_hw_if_update_runtime_data (vnm, vif->hw_if_index);
314}
315
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200316inline void
317virtio_set_net_hdr_size (virtio_if_t * vif)
318{
319 if (vif->features & VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF) ||
320 vif->features & VIRTIO_FEATURE (VIRTIO_F_VERSION_1))
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000321 vif->virtio_net_hdr_sz = sizeof (vnet_virtio_net_hdr_v1_t);
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200322 else
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000323 vif->virtio_net_hdr_sz = sizeof (vnet_virtio_net_hdr_t);
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200324}
325
326inline void
Mohsin Kazmie4efbe72021-09-22 18:56:05 +0000327virtio_show (vlib_main_t *vm, u32 *hw_if_indices, u8 show_descr,
328 virtio_if_type_t type)
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200329{
330 u32 i, j, hw_if_index;
331 virtio_if_t *vif;
332 vnet_main_t *vnm = &vnet_main;
333 virtio_main_t *mm = &virtio_main;
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000334 vnet_virtio_vring_t *vring;
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200335 struct feat_struct
336 {
337 u8 bit;
338 char *str;
339 };
340 struct feat_struct *feat_entry;
341
342 static struct feat_struct feat_array[] = {
343#define _(s,b) { .str = #s, .bit = b, },
344 foreach_virtio_net_features
345#undef _
346 {.str = NULL}
347 };
348
349 struct feat_struct *flag_entry;
350 static struct feat_struct flags_array[] = {
351#define _(b,e,s) { .bit = b, .str = s, },
352 foreach_virtio_if_flag
353#undef _
354 {.str = NULL}
355 };
356
357 if (!hw_if_indices)
358 return;
359
360 for (hw_if_index = 0; hw_if_index < vec_len (hw_if_indices); hw_if_index++)
361 {
362 vnet_hw_interface_t *hi =
363 vnet_get_hw_interface (vnm, hw_if_indices[hw_if_index]);
364 vif = pool_elt_at_index (mm->interfaces, hi->dev_instance);
365 if (vif->type != type)
366 continue;
367 vlib_cli_output (vm, "Interface: %U (ifindex %d)",
368 format_vnet_hw_if_index_name, vnm,
369 hw_if_indices[hw_if_index], vif->hw_if_index);
370 if (type == VIRTIO_IF_TYPE_PCI)
371 {
372 vlib_cli_output (vm, " PCI Address: %U", format_vlib_pci_addr,
373 &vif->pci_addr);
374 }
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200375 if (type & (VIRTIO_IF_TYPE_TAP | VIRTIO_IF_TYPE_TUN))
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200376 {
Damjan Marion7c6102b2019-11-08 17:59:56 +0100377 u8 *str = 0;
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200378 if (vif->host_if_name)
379 vlib_cli_output (vm, " name \"%s\"", vif->host_if_name);
380 if (vif->net_ns)
381 vlib_cli_output (vm, " host-ns \"%s\"", vif->net_ns);
Mohsin Kazmi97d54ed2019-06-10 11:20:15 +0200382 if (vif->host_mtu_size)
383 vlib_cli_output (vm, " host-mtu-size \"%d\"",
384 vif->host_mtu_size);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200385 if (type == VIRTIO_IF_TYPE_TAP)
386 vlib_cli_output (vm, " host-mac-addr: %U",
387 format_ethernet_address, vif->host_mac_addr);
Matthew Smithbd50ed12020-07-24 13:38:03 -0500388 vlib_cli_output (vm, " host-carrier-up: %u", vif->host_carrier_up);
Damjan Marion7c6102b2019-11-08 17:59:56 +0100389
390 vec_foreach_index (i, vif->vhost_fds)
391 str = format (str, " %d", vif->vhost_fds[i]);
392 vlib_cli_output (vm, " vhost-fds%v", str);
393 vec_free (str);
Aloys Augustin2857e782020-03-16 17:29:52 +0100394 vec_foreach_index (i, vif->tap_fds)
395 str = format (str, " %d", vif->tap_fds[i]);
396 vlib_cli_output (vm, " tap-fds%v", str);
397 vec_free (str);
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200398 }
Chenmin Sun7c615ae2019-07-18 23:19:28 +0800399 vlib_cli_output (vm, " gso-enabled %d", vif->gso_enabled);
Mohsin Kazmiba0061f2019-12-18 17:08:54 +0100400 vlib_cli_output (vm, " csum-enabled %d", vif->csum_offload_enabled);
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200401 vlib_cli_output (vm, " packet-coalesce %d", vif->packet_coalesce);
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000402 vlib_cli_output (vm, " packet-buffering %d", vif->packet_buffering);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200403 if (type & (VIRTIO_IF_TYPE_TAP | VIRTIO_IF_TYPE_PCI))
404 vlib_cli_output (vm, " Mac Address: %U", format_ethernet_address,
405 vif->mac_addr);
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200406 vlib_cli_output (vm, " Device instance: %u", vif->dev_instance);
407 vlib_cli_output (vm, " flags 0x%x", vif->flags);
408 flag_entry = (struct feat_struct *) &flags_array;
409 while (flag_entry->str)
410 {
411 if (vif->flags & (1ULL << flag_entry->bit))
412 vlib_cli_output (vm, " %s (%d)", flag_entry->str,
413 flag_entry->bit);
414 flag_entry++;
415 }
416 if (type == VIRTIO_IF_TYPE_PCI)
417 {
418 device_status (vm, vif);
419 }
420 vlib_cli_output (vm, " features 0x%lx", vif->features);
421 feat_entry = (struct feat_struct *) &feat_array;
422 while (feat_entry->str)
423 {
424 if (vif->features & (1ULL << feat_entry->bit))
425 vlib_cli_output (vm, " %s (%d)", feat_entry->str,
426 feat_entry->bit);
427 feat_entry++;
428 }
429 vlib_cli_output (vm, " remote-features 0x%lx", vif->remote_features);
430 feat_entry = (struct feat_struct *) &feat_array;
431 while (feat_entry->str)
432 {
433 if (vif->remote_features & (1ULL << feat_entry->bit))
434 vlib_cli_output (vm, " %s (%d)", feat_entry->str,
435 feat_entry->bit);
436 feat_entry++;
437 }
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000438 vlib_cli_output (vm, " Number of RX Virtqueue %u", vif->num_rxqs);
439 vlib_cli_output (vm, " Number of TX Virtqueue %u", vif->num_txqs);
Mohsin Kazmie4efbe72021-09-22 18:56:05 +0000440 if (type == VIRTIO_IF_TYPE_PCI && vif->cxq_vring != NULL &&
441 vif->features & VIRTIO_FEATURE (VIRTIO_NET_F_CTRL_VQ))
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000442 vlib_cli_output (vm, " Number of CTRL Virtqueue 1");
443 vec_foreach_index (i, vif->rxq_vrings)
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200444 {
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000445 vring = vec_elt_at_index (vif->rxq_vrings, i);
446 vlib_cli_output (vm, " Virtqueue (RX) %d", vring->queue_id);
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000447 vlib_cli_output (
448 vm, " qsz %d, last_used_idx %d, desc_next %d, desc_in_use %d",
449 vring->queue_size, vring->last_used_idx, vring->desc_next,
450 vring->desc_in_use);
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100451 if (vif->is_packed)
452 {
453 vlib_cli_output (vm,
454 " driver_event.flags 0x%x driver_event.off_wrap %d device_event.flags 0x%x device_event.off_wrap %d",
455 vring->driver_event->flags,
456 vring->driver_event->off_wrap,
457 vring->device_event->flags,
458 vring->device_event->off_wrap);
459 vlib_cli_output (vm,
460 " avail wrap counter %d, used wrap counter %d",
461 vring->avail_wrap_counter,
462 vring->used_wrap_counter);
463 }
464 else
465 vlib_cli_output (vm,
466 " avail.flags 0x%x avail.idx %d used.flags 0x%x used.idx %d",
467 vring->avail->flags, vring->avail->idx,
468 vring->used->flags, vring->used->idx);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200469 if (type & (VIRTIO_IF_TYPE_TAP | VIRTIO_IF_TYPE_TUN))
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200470 {
471 vlib_cli_output (vm, " kickfd %d, callfd %d", vring->kick_fd,
472 vring->call_fd);
473 }
474 if (show_descr)
475 {
476 vlib_cli_output (vm, "\n descriptor table:\n");
477 vlib_cli_output (vm,
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100478 " id addr len flags next/id user_addr\n");
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200479 vlib_cli_output (vm,
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100480 " ===== ================== ===== ====== ======= ==================\n");
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000481 for (j = 0; j < vring->queue_size; j++)
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200482 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100483 if (vif->is_packed)
484 {
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000485 vnet_virtio_vring_packed_desc_t *desc =
486 &vring->packed_desc[j];
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100487 vlib_cli_output (vm,
488 " %-5d 0x%016lx %-5d 0x%04x %-8d 0x%016lx\n",
489 j, desc->addr,
490 desc->len,
491 desc->flags, desc->id, desc->addr);
492 }
493 else
494 {
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000495 vnet_virtio_vring_desc_t *desc = &vring->desc[j];
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100496 vlib_cli_output (vm,
497 " %-5d 0x%016lx %-5d 0x%04x %-8d 0x%016lx\n",
498 j, desc->addr,
499 desc->len,
500 desc->flags, desc->next, desc->addr);
501 }
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200502 }
503 }
504 }
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000505 vec_foreach_index (i, vif->txq_vrings)
506 {
507 vring = vec_elt_at_index (vif->txq_vrings, i);
508 vlib_cli_output (vm, " Virtqueue (TX) %d", vring->queue_id);
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000509 vlib_cli_output (
510 vm, " qsz %d, last_used_idx %d, desc_next %d, desc_in_use %d",
511 vring->queue_size, vring->last_used_idx, vring->desc_next,
512 vring->desc_in_use);
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100513 if (vif->is_packed)
514 {
515 vlib_cli_output (vm,
516 " driver_event.flags 0x%x driver_event.off_wrap %d device_event.flags 0x%x device_event.off_wrap %d",
517 vring->driver_event->flags,
518 vring->driver_event->off_wrap,
519 vring->device_event->flags,
520 vring->device_event->off_wrap);
521 vlib_cli_output (vm,
522 " avail wrap counter %d, used wrap counter %d",
523 vring->avail_wrap_counter,
524 vring->used_wrap_counter);
525 }
526 else
527 vlib_cli_output (vm,
528 " avail.flags 0x%x avail.idx %d used.flags 0x%x used.idx %d",
529 vring->avail->flags, vring->avail->idx,
530 vring->used->flags, vring->used->idx);
Mohsin Kazmi206acf82020-04-06 14:19:54 +0200531 if (type & (VIRTIO_IF_TYPE_TAP | VIRTIO_IF_TYPE_TUN))
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000532 {
533 vlib_cli_output (vm, " kickfd %d, callfd %d", vring->kick_fd,
534 vring->call_fd);
535 }
Mohsin Kazmi9e2a7852020-08-13 18:57:26 +0200536 if (vring->flow_table)
537 {
538 vlib_cli_output (vm, " %U", gro_flow_table_format,
539 vring->flow_table);
540 }
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000541 if (vif->packet_buffering)
542 {
543 vlib_cli_output (vm, " %U", virtio_vring_buffering_format,
544 vring->buffering);
545 }
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000546 if (show_descr)
547 {
548 vlib_cli_output (vm, "\n descriptor table:\n");
549 vlib_cli_output (vm,
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100550 " id addr len flags next/id user_addr\n");
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000551 vlib_cli_output (vm,
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100552 " ===== ================== ===== ====== ======== ==================\n");
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000553 for (j = 0; j < vring->queue_size; j++)
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000554 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100555 if (vif->is_packed)
556 {
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000557 vnet_virtio_vring_packed_desc_t *desc =
558 &vring->packed_desc[j];
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100559 vlib_cli_output (vm,
560 " %-5d 0x%016lx %-5d 0x%04x %-8d 0x%016lx\n",
561 j, desc->addr,
562 desc->len,
563 desc->flags, desc->id, desc->addr);
564 }
565 else
566 {
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000567 vnet_virtio_vring_desc_t *desc = &vring->desc[j];
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100568 vlib_cli_output (vm,
569 " %-5d 0x%016lx %-5d 0x%04x %-8d 0x%016lx\n",
570 j, desc->addr,
571 desc->len,
572 desc->flags, desc->next, desc->addr);
573 }
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000574 }
575 }
576 }
Mohsin Kazmie4efbe72021-09-22 18:56:05 +0000577 if (type == VIRTIO_IF_TYPE_PCI && vif->cxq_vring != NULL &&
578 vif->features & VIRTIO_FEATURE (VIRTIO_NET_F_CTRL_VQ))
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000579 {
580 vring = vif->cxq_vring;
581 vlib_cli_output (vm, " Virtqueue (CTRL) %d", vring->queue_id);
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000582 vlib_cli_output (
583 vm, " qsz %d, last_used_idx %d, desc_next %d, desc_in_use %d",
584 vring->queue_size, vring->last_used_idx, vring->desc_next,
585 vring->desc_in_use);
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100586 if (vif->is_packed)
587 {
588 vlib_cli_output (vm,
589 " driver_event.flags 0x%x driver_event.off_wrap %d device_event.flags 0x%x device_event.off_wrap %d",
590 vring->driver_event->flags,
591 vring->driver_event->off_wrap,
592 vring->device_event->flags,
593 vring->device_event->off_wrap);
594 vlib_cli_output (vm,
595 " avail wrap counter %d, used wrap counter %d",
596 vring->avail_wrap_counter,
597 vring->used_wrap_counter);
598 }
599 else
600 {
601 vlib_cli_output (vm,
602 " avail.flags 0x%x avail.idx %d used.flags 0x%x used.idx %d",
603 vring->avail->flags, vring->avail->idx,
604 vring->used->flags, vring->used->idx);
605 }
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000606 if (show_descr)
607 {
608 vlib_cli_output (vm, "\n descriptor table:\n");
609 vlib_cli_output (vm,
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100610 " id addr len flags next/id user_addr\n");
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000611 vlib_cli_output (vm,
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100612 " ===== ================== ===== ====== ======== ==================\n");
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000613 for (j = 0; j < vring->queue_size; j++)
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000614 {
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100615 if (vif->is_packed)
616 {
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000617 vnet_virtio_vring_packed_desc_t *desc =
618 &vring->packed_desc[j];
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100619 vlib_cli_output (vm,
620 " %-5d 0x%016lx %-5d 0x%04x %-8d 0x%016lx\n",
621 j, desc->addr,
622 desc->len,
623 desc->flags, desc->id, desc->addr);
624 }
625 else
626 {
Mohsin Kazmi0f8912f2022-02-01 18:35:59 +0000627 vnet_virtio_vring_desc_t *desc = &vring->desc[j];
Mohsin Kazmib977d3f2020-11-16 16:49:30 +0100628 vlib_cli_output (vm,
629 " %-5d 0x%016lx %-5d 0x%04x %-8d 0x%016lx\n",
630 j, desc->addr,
631 desc->len,
632 desc->flags, desc->next, desc->addr);
633 }
Mohsin Kazmi09a3bc52019-04-02 11:45:08 +0000634 }
635 }
636 }
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200637 }
638
639}
640
Damjan Marionf41244f2019-11-08 17:41:06 +0100641static clib_error_t *
642virtio_init (vlib_main_t * vm)
643{
644 virtio_main_t *vim = &virtio_main;
645 clib_error_t *error = 0;
646
647 vim->log_default = vlib_log_register_class ("virtio", 0);
648 vlib_log_debug (vim->log_default, "initialized");
649
650 return error;
651}
652
653VLIB_INIT_FUNCTION (virtio_init);
654
Damjan Marion8389fb92017-10-13 18:29:53 +0200655/*
656 * fd.io coding-style-patch-verification: ON
657 *
658 * Local Variables:
659 * eval: (c-set-style "gnu")
660 * End:
661 */