Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 1 | /* |
| 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 Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 24 | #include <sys/eventfd.h> |
| 25 | |
| 26 | #include <vlib/vlib.h> |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 27 | #include <vlib/pci/pci.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 28 | #include <vlib/unix/unix.h> |
| 29 | #include <vnet/ethernet/ethernet.h> |
Milan Lenco | 73e7f42 | 2017-12-14 10:04:25 +0100 | [diff] [blame] | 30 | #include <vnet/ip/ip4_packet.h> |
| 31 | #include <vnet/ip/ip6_packet.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 32 | #include <vnet/devices/virtio/virtio.h> |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 33 | #include <vnet/devices/virtio/pci.h> |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 34 | |
| 35 | virtio_main_t virtio_main; |
| 36 | |
| 37 | #define _IOCTL(fd,a,...) \ |
| 38 | if (ioctl (fd, a, __VA_ARGS__) < 0) \ |
| 39 | { \ |
| 40 | err = clib_error_return_unix (0, "ioctl(" #a ")"); \ |
| 41 | goto error; \ |
| 42 | } |
| 43 | |
| 44 | static clib_error_t * |
| 45 | call_read_ready (clib_file_t * uf) |
| 46 | { |
| 47 | virtio_main_t *nm = &virtio_main; |
| 48 | vnet_main_t *vnm = vnet_get_main (); |
| 49 | u16 qid = uf->private_data & 0xFFFF; |
| 50 | virtio_if_t *vif = |
| 51 | vec_elt_at_index (nm->interfaces, uf->private_data >> 16); |
| 52 | u64 b; |
| 53 | |
| 54 | CLIB_UNUSED (ssize_t size) = read (uf->file_descriptor, &b, sizeof (b)); |
| 55 | if ((qid & 1) == 0) |
Mohsin Kazmi | 04f4d91 | 2020-05-26 14:34:34 +0200 | [diff] [blame] | 56 | vnet_device_input_set_interrupt_pending (vnm, vif->hw_if_index, |
| 57 | RX_QUEUE_ACCESS (qid)); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | |
| 63 | clib_error_t * |
| 64 | virtio_vring_init (vlib_main_t * vm, virtio_if_t * vif, u16 idx, u16 sz) |
| 65 | { |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 66 | virtio_vring_t *vring; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 67 | clib_file_t t = { 0 }; |
| 68 | int i; |
| 69 | |
| 70 | if (!is_pow2 (sz)) |
| 71 | return clib_error_return (0, "ring size must be power of 2"); |
| 72 | |
| 73 | if (sz > 32768) |
| 74 | return clib_error_return (0, "ring size must be 32768 or lower"); |
| 75 | |
| 76 | if (sz == 0) |
| 77 | sz = 256; |
| 78 | |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 79 | if (idx % 2) |
| 80 | { |
Mohsin Kazmi | 3f34017 | 2019-05-27 15:53:25 +0200 | [diff] [blame] | 81 | vlib_thread_main_t *thm = vlib_get_thread_main (); |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 82 | vec_validate_aligned (vif->txq_vrings, TX_QUEUE_ACCESS (idx), |
| 83 | CLIB_CACHE_LINE_BYTES); |
| 84 | vring = vec_elt_at_index (vif->txq_vrings, TX_QUEUE_ACCESS (idx)); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 85 | if (thm->n_vlib_mains > vif->num_txqs) |
Mohsin Kazmi | 3f34017 | 2019-05-27 15:53:25 +0200 | [diff] [blame] | 86 | clib_spinlock_init (&vring->lockp); |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 87 | } |
| 88 | else |
| 89 | { |
| 90 | vec_validate_aligned (vif->rxq_vrings, RX_QUEUE_ACCESS (idx), |
| 91 | CLIB_CACHE_LINE_BYTES); |
| 92 | vring = vec_elt_at_index (vif->rxq_vrings, RX_QUEUE_ACCESS (idx)); |
| 93 | } |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 94 | i = sizeof (vring_desc_t) * sz; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 95 | i = round_pow2 (i, CLIB_CACHE_LINE_BYTES); |
| 96 | vring->desc = clib_mem_alloc_aligned (i, CLIB_CACHE_LINE_BYTES); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 97 | clib_memset (vring->desc, 0, i); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 98 | |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 99 | i = sizeof (vring_avail_t) + sz * sizeof (vring->avail->ring[0]); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 100 | i = round_pow2 (i, CLIB_CACHE_LINE_BYTES); |
| 101 | vring->avail = clib_mem_alloc_aligned (i, CLIB_CACHE_LINE_BYTES); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 102 | clib_memset (vring->avail, 0, i); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 103 | // tell kernel that we don't need interrupt |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 104 | vring->avail->flags = VRING_AVAIL_F_NO_INTERRUPT; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 105 | |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 106 | i = sizeof (vring_used_t) + sz * sizeof (vring_used_elem_t); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 107 | i = round_pow2 (i, CLIB_CACHE_LINE_BYTES); |
| 108 | vring->used = clib_mem_alloc_aligned (i, CLIB_CACHE_LINE_BYTES); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 109 | clib_memset (vring->used, 0, i); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 110 | |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 111 | vring->queue_id = idx; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 112 | ASSERT (vring->buffers == 0); |
Damjan Marion | c58408c | 2018-01-18 14:54:04 +0100 | [diff] [blame] | 113 | vec_validate_aligned (vring->buffers, sz, CLIB_CACHE_LINE_BYTES); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 114 | |
Mohsin Kazmi | 7f6d145 | 2020-02-27 11:49:21 +0100 | [diff] [blame] | 115 | if (idx & 1) |
| 116 | { |
| 117 | clib_memset_u32 (vring->buffers, ~0, sz); |
| 118 | } |
| 119 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 120 | vring->size = sz; |
| 121 | vring->call_fd = eventfd (0, EFD_NONBLOCK | EFD_CLOEXEC); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 122 | vring->kick_fd = eventfd (0, EFD_NONBLOCK | EFD_CLOEXEC); |
| 123 | virtio_log_debug (vif, "vring %u size %u call_fd %d kick_fd %d", idx, |
| 124 | vring->size, vring->call_fd, vring->kick_fd); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 125 | |
| 126 | t.read_function = call_read_ready; |
| 127 | t.file_descriptor = vring->call_fd; |
| 128 | t.private_data = vif->dev_instance << 16 | idx; |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 129 | t.description = format (0, "%U vring %u", format_virtio_device_name, |
| 130 | vif->dev_instance, idx); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 131 | vring->call_file_index = clib_file_add (&file_main, &t); |
| 132 | |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 133 | return 0; |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 134 | } |
| 135 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 136 | inline void |
Steven | a624dbe | 2018-01-09 11:13:29 -0800 | [diff] [blame] | 137 | virtio_free_rx_buffers (vlib_main_t * vm, virtio_vring_t * vring) |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 138 | { |
Steven | a624dbe | 2018-01-09 11:13:29 -0800 | [diff] [blame] | 139 | u16 used = vring->desc_in_use; |
Steven | 074f698 | 2018-03-30 22:18:11 -0700 | [diff] [blame] | 140 | u16 last = vring->last_used_idx; |
Steven | a624dbe | 2018-01-09 11:13:29 -0800 | [diff] [blame] | 141 | u16 mask = vring->size - 1; |
| 142 | |
| 143 | while (used) |
| 144 | { |
Steven | 074f698 | 2018-03-30 22:18:11 -0700 | [diff] [blame] | 145 | vlib_buffer_free (vm, &vring->buffers[last & mask], 1); |
| 146 | last++; |
Steven | a624dbe | 2018-01-09 11:13:29 -0800 | [diff] [blame] | 147 | used--; |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | clib_error_t * |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 152 | virtio_vring_free_rx (vlib_main_t * vm, virtio_if_t * vif, u32 idx) |
Steven | a624dbe | 2018-01-09 11:13:29 -0800 | [diff] [blame] | 153 | { |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 154 | virtio_vring_t *vring = |
| 155 | vec_elt_at_index (vif->rxq_vrings, RX_QUEUE_ACCESS (idx)); |
Steven | a624dbe | 2018-01-09 11:13:29 -0800 | [diff] [blame] | 156 | |
| 157 | clib_file_del_by_index (&file_main, vring->call_file_index); |
| 158 | close (vring->kick_fd); |
| 159 | close (vring->call_fd); |
| 160 | if (vring->used) |
| 161 | { |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 162 | virtio_free_rx_buffers (vm, vring); |
Steven | a624dbe | 2018-01-09 11:13:29 -0800 | [diff] [blame] | 163 | clib_mem_free (vring->used); |
| 164 | } |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 165 | if (vring->desc) |
| 166 | clib_mem_free (vring->desc); |
| 167 | if (vring->avail) |
| 168 | clib_mem_free (vring->avail); |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 169 | vec_free (vring->buffers); |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 170 | return 0; |
| 171 | } |
| 172 | |
Mohsin Kazmi | aea0df3 | 2019-05-23 14:32:58 +0200 | [diff] [blame] | 173 | inline void |
| 174 | virtio_free_used_desc (vlib_main_t * vm, virtio_vring_t * vring) |
| 175 | { |
| 176 | u16 used = vring->desc_in_use; |
| 177 | u16 sz = vring->size; |
| 178 | u16 mask = sz - 1; |
| 179 | u16 last = vring->last_used_idx; |
| 180 | u16 n_left = vring->used->idx - last; |
| 181 | |
| 182 | if (n_left == 0) |
| 183 | return; |
| 184 | |
| 185 | while (n_left) |
| 186 | { |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 187 | vring_used_elem_t *e = &vring->used->ring[last & mask]; |
Mohsin Kazmi | aea0df3 | 2019-05-23 14:32:58 +0200 | [diff] [blame] | 188 | u16 slot = e->id; |
| 189 | |
| 190 | vlib_buffer_free (vm, &vring->buffers[slot], 1); |
| 191 | used--; |
| 192 | last++; |
| 193 | n_left--; |
| 194 | } |
| 195 | vring->desc_in_use = used; |
| 196 | vring->last_used_idx = last; |
| 197 | } |
| 198 | |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 199 | clib_error_t * |
| 200 | virtio_vring_free_tx (vlib_main_t * vm, virtio_if_t * vif, u32 idx) |
| 201 | { |
| 202 | virtio_vring_t *vring = |
| 203 | vec_elt_at_index (vif->txq_vrings, TX_QUEUE_ACCESS (idx)); |
| 204 | |
| 205 | clib_file_del_by_index (&file_main, vring->call_file_index); |
| 206 | close (vring->kick_fd); |
| 207 | close (vring->call_fd); |
| 208 | if (vring->used) |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 209 | { |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 210 | virtio_free_used_desc (vm, vring); |
| 211 | clib_mem_free (vring->used); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 212 | } |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 213 | if (vring->desc) |
| 214 | clib_mem_free (vring->desc); |
| 215 | if (vring->avail) |
| 216 | clib_mem_free (vring->avail); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 217 | vec_free (vring->buffers); |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 218 | gro_flow_table_free (vring->flow_table); |
Mohsin Kazmi | 3f34017 | 2019-05-27 15:53:25 +0200 | [diff] [blame] | 219 | clib_spinlock_free (&vring->lockp); |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 220 | return 0; |
| 221 | } |
| 222 | |
Mohsin Kazmi | 80659b4 | 2019-01-31 13:18:00 +0000 | [diff] [blame] | 223 | void |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 224 | virtio_set_packet_coalesce (virtio_if_t * vif) |
| 225 | { |
| 226 | vnet_main_t *vnm = vnet_get_main (); |
| 227 | vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, vif->hw_if_index); |
| 228 | virtio_vring_t *vring; |
Mohsin Kazmi | 1017a1d | 2020-09-25 15:36:19 +0200 | [diff] [blame^] | 229 | vif->packet_coalesce = 1; |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 230 | vec_foreach (vring, vif->txq_vrings) |
| 231 | { |
| 232 | gro_flow_table_init (&vring->flow_table, |
| 233 | vif->type & (VIRTIO_IF_TYPE_TAP | |
| 234 | VIRTIO_IF_TYPE_PCI), hw->tx_node_index); |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | void |
Mohsin Kazmi | 80659b4 | 2019-01-31 13:18:00 +0000 | [diff] [blame] | 239 | virtio_vring_set_numa_node (vlib_main_t * vm, virtio_if_t * vif, u32 idx) |
| 240 | { |
| 241 | vnet_main_t *vnm = vnet_get_main (); |
| 242 | u32 thread_index; |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 243 | virtio_vring_t *vring = |
| 244 | vec_elt_at_index (vif->rxq_vrings, RX_QUEUE_ACCESS (idx)); |
Mohsin Kazmi | 80659b4 | 2019-01-31 13:18:00 +0000 | [diff] [blame] | 245 | thread_index = |
| 246 | vnet_get_device_input_thread_index (vnm, vif->hw_if_index, |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 247 | RX_QUEUE_ACCESS (idx)); |
Mohsin Kazmi | 80659b4 | 2019-01-31 13:18:00 +0000 | [diff] [blame] | 248 | vring->buffer_pool_index = |
| 249 | vlib_buffer_pool_get_default_for_numa (vm, |
| 250 | vlib_mains |
| 251 | [thread_index]->numa_node); |
| 252 | } |
| 253 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 254 | inline void |
| 255 | virtio_set_net_hdr_size (virtio_if_t * vif) |
| 256 | { |
| 257 | if (vif->features & VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF) || |
| 258 | vif->features & VIRTIO_FEATURE (VIRTIO_F_VERSION_1)) |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 259 | vif->virtio_net_hdr_sz = sizeof (virtio_net_hdr_v1_t); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 260 | else |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 261 | vif->virtio_net_hdr_sz = sizeof (virtio_net_hdr_t); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | inline void |
| 265 | virtio_show (vlib_main_t * vm, u32 * hw_if_indices, u8 show_descr, u32 type) |
| 266 | { |
| 267 | u32 i, j, hw_if_index; |
| 268 | virtio_if_t *vif; |
| 269 | vnet_main_t *vnm = &vnet_main; |
| 270 | virtio_main_t *mm = &virtio_main; |
| 271 | virtio_vring_t *vring; |
| 272 | struct feat_struct |
| 273 | { |
| 274 | u8 bit; |
| 275 | char *str; |
| 276 | }; |
| 277 | struct feat_struct *feat_entry; |
| 278 | |
| 279 | static struct feat_struct feat_array[] = { |
| 280 | #define _(s,b) { .str = #s, .bit = b, }, |
| 281 | foreach_virtio_net_features |
| 282 | #undef _ |
| 283 | {.str = NULL} |
| 284 | }; |
| 285 | |
| 286 | struct feat_struct *flag_entry; |
| 287 | static struct feat_struct flags_array[] = { |
| 288 | #define _(b,e,s) { .bit = b, .str = s, }, |
| 289 | foreach_virtio_if_flag |
| 290 | #undef _ |
| 291 | {.str = NULL} |
| 292 | }; |
| 293 | |
| 294 | if (!hw_if_indices) |
| 295 | return; |
| 296 | |
| 297 | for (hw_if_index = 0; hw_if_index < vec_len (hw_if_indices); hw_if_index++) |
| 298 | { |
| 299 | vnet_hw_interface_t *hi = |
| 300 | vnet_get_hw_interface (vnm, hw_if_indices[hw_if_index]); |
| 301 | vif = pool_elt_at_index (mm->interfaces, hi->dev_instance); |
| 302 | if (vif->type != type) |
| 303 | continue; |
| 304 | vlib_cli_output (vm, "Interface: %U (ifindex %d)", |
| 305 | format_vnet_hw_if_index_name, vnm, |
| 306 | hw_if_indices[hw_if_index], vif->hw_if_index); |
| 307 | if (type == VIRTIO_IF_TYPE_PCI) |
| 308 | { |
| 309 | vlib_cli_output (vm, " PCI Address: %U", format_vlib_pci_addr, |
| 310 | &vif->pci_addr); |
| 311 | } |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 312 | if (type & (VIRTIO_IF_TYPE_TAP | VIRTIO_IF_TYPE_TUN)) |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 313 | { |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 314 | u8 *str = 0; |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 315 | if (vif->host_if_name) |
| 316 | vlib_cli_output (vm, " name \"%s\"", vif->host_if_name); |
| 317 | if (vif->net_ns) |
| 318 | vlib_cli_output (vm, " host-ns \"%s\"", vif->net_ns); |
Mohsin Kazmi | 97d54ed | 2019-06-10 11:20:15 +0200 | [diff] [blame] | 319 | if (vif->host_mtu_size) |
| 320 | vlib_cli_output (vm, " host-mtu-size \"%d\"", |
| 321 | vif->host_mtu_size); |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 322 | if (type == VIRTIO_IF_TYPE_TAP) |
| 323 | vlib_cli_output (vm, " host-mac-addr: %U", |
| 324 | format_ethernet_address, vif->host_mac_addr); |
Damjan Marion | 7c6102b | 2019-11-08 17:59:56 +0100 | [diff] [blame] | 325 | |
| 326 | vec_foreach_index (i, vif->vhost_fds) |
| 327 | str = format (str, " %d", vif->vhost_fds[i]); |
| 328 | vlib_cli_output (vm, " vhost-fds%v", str); |
| 329 | vec_free (str); |
Aloys Augustin | 2857e78 | 2020-03-16 17:29:52 +0100 | [diff] [blame] | 330 | vec_foreach_index (i, vif->tap_fds) |
| 331 | str = format (str, " %d", vif->tap_fds[i]); |
| 332 | vlib_cli_output (vm, " tap-fds%v", str); |
| 333 | vec_free (str); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 334 | } |
Chenmin Sun | 7c615ae | 2019-07-18 23:19:28 +0800 | [diff] [blame] | 335 | vlib_cli_output (vm, " gso-enabled %d", vif->gso_enabled); |
Mohsin Kazmi | ba0061f | 2019-12-18 17:08:54 +0100 | [diff] [blame] | 336 | vlib_cli_output (vm, " csum-enabled %d", vif->csum_offload_enabled); |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 337 | vlib_cli_output (vm, " packet-coalesce %d", vif->packet_coalesce); |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 338 | if (type & (VIRTIO_IF_TYPE_TAP | VIRTIO_IF_TYPE_PCI)) |
| 339 | vlib_cli_output (vm, " Mac Address: %U", format_ethernet_address, |
| 340 | vif->mac_addr); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 341 | vlib_cli_output (vm, " Device instance: %u", vif->dev_instance); |
| 342 | vlib_cli_output (vm, " flags 0x%x", vif->flags); |
| 343 | flag_entry = (struct feat_struct *) &flags_array; |
| 344 | while (flag_entry->str) |
| 345 | { |
| 346 | if (vif->flags & (1ULL << flag_entry->bit)) |
| 347 | vlib_cli_output (vm, " %s (%d)", flag_entry->str, |
| 348 | flag_entry->bit); |
| 349 | flag_entry++; |
| 350 | } |
| 351 | if (type == VIRTIO_IF_TYPE_PCI) |
| 352 | { |
| 353 | device_status (vm, vif); |
| 354 | } |
| 355 | vlib_cli_output (vm, " features 0x%lx", vif->features); |
| 356 | feat_entry = (struct feat_struct *) &feat_array; |
| 357 | while (feat_entry->str) |
| 358 | { |
| 359 | if (vif->features & (1ULL << feat_entry->bit)) |
| 360 | vlib_cli_output (vm, " %s (%d)", feat_entry->str, |
| 361 | feat_entry->bit); |
| 362 | feat_entry++; |
| 363 | } |
| 364 | vlib_cli_output (vm, " remote-features 0x%lx", vif->remote_features); |
| 365 | feat_entry = (struct feat_struct *) &feat_array; |
| 366 | while (feat_entry->str) |
| 367 | { |
| 368 | if (vif->remote_features & (1ULL << feat_entry->bit)) |
| 369 | vlib_cli_output (vm, " %s (%d)", feat_entry->str, |
| 370 | feat_entry->bit); |
| 371 | feat_entry++; |
| 372 | } |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 373 | vlib_cli_output (vm, " Number of RX Virtqueue %u", vif->num_rxqs); |
| 374 | vlib_cli_output (vm, " Number of TX Virtqueue %u", vif->num_txqs); |
| 375 | if (vif->cxq_vring != NULL |
| 376 | && vif->features & VIRTIO_FEATURE (VIRTIO_NET_F_CTRL_VQ)) |
| 377 | vlib_cli_output (vm, " Number of CTRL Virtqueue 1"); |
| 378 | vec_foreach_index (i, vif->rxq_vrings) |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 379 | { |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 380 | vring = vec_elt_at_index (vif->rxq_vrings, i); |
| 381 | vlib_cli_output (vm, " Virtqueue (RX) %d", vring->queue_id); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 382 | vlib_cli_output (vm, |
| 383 | " qsz %d, last_used_idx %d, desc_next %d, desc_in_use %d", |
| 384 | vring->size, vring->last_used_idx, vring->desc_next, |
| 385 | vring->desc_in_use); |
| 386 | vlib_cli_output (vm, |
| 387 | " avail.flags 0x%x avail.idx %d used.flags 0x%x used.idx %d", |
| 388 | vring->avail->flags, vring->avail->idx, |
| 389 | vring->used->flags, vring->used->idx); |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 390 | if (type & (VIRTIO_IF_TYPE_TAP | VIRTIO_IF_TYPE_TUN)) |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 391 | { |
| 392 | vlib_cli_output (vm, " kickfd %d, callfd %d", vring->kick_fd, |
| 393 | vring->call_fd); |
| 394 | } |
| 395 | if (show_descr) |
| 396 | { |
| 397 | vlib_cli_output (vm, "\n descriptor table:\n"); |
| 398 | vlib_cli_output (vm, |
| 399 | " id addr len flags next user_addr\n"); |
| 400 | vlib_cli_output (vm, |
| 401 | " ===== ================== ===== ====== ===== ==================\n"); |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 402 | for (j = 0; j < vring->size; j++) |
| 403 | { |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 404 | vring_desc_t *desc = &vring->desc[j]; |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 405 | vlib_cli_output (vm, |
| 406 | " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n", |
| 407 | j, desc->addr, |
| 408 | desc->len, |
| 409 | desc->flags, desc->next, desc->addr); |
| 410 | } |
| 411 | } |
| 412 | } |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 413 | vec_foreach_index (i, vif->txq_vrings) |
| 414 | { |
| 415 | vring = vec_elt_at_index (vif->txq_vrings, i); |
| 416 | vlib_cli_output (vm, " Virtqueue (TX) %d", vring->queue_id); |
| 417 | vlib_cli_output (vm, |
| 418 | " qsz %d, last_used_idx %d, desc_next %d, desc_in_use %d", |
| 419 | vring->size, vring->last_used_idx, vring->desc_next, |
| 420 | vring->desc_in_use); |
| 421 | vlib_cli_output (vm, |
| 422 | " avail.flags 0x%x avail.idx %d used.flags 0x%x used.idx %d", |
| 423 | vring->avail->flags, vring->avail->idx, |
| 424 | vring->used->flags, vring->used->idx); |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 425 | if (type & (VIRTIO_IF_TYPE_TAP | VIRTIO_IF_TYPE_TUN)) |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 426 | { |
| 427 | vlib_cli_output (vm, " kickfd %d, callfd %d", vring->kick_fd, |
| 428 | vring->call_fd); |
| 429 | } |
Mohsin Kazmi | 9e2a785 | 2020-08-13 18:57:26 +0200 | [diff] [blame] | 430 | if (vring->flow_table) |
| 431 | { |
| 432 | vlib_cli_output (vm, " %U", gro_flow_table_format, |
| 433 | vring->flow_table); |
| 434 | } |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 435 | if (show_descr) |
| 436 | { |
| 437 | vlib_cli_output (vm, "\n descriptor table:\n"); |
| 438 | vlib_cli_output (vm, |
| 439 | " id addr len flags next user_addr\n"); |
| 440 | vlib_cli_output (vm, |
| 441 | " ===== ================== ===== ====== ===== ==================\n"); |
| 442 | for (j = 0; j < vring->size; j++) |
| 443 | { |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 444 | vring_desc_t *desc = &vring->desc[j]; |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 445 | vlib_cli_output (vm, |
| 446 | " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n", |
| 447 | j, desc->addr, |
| 448 | desc->len, |
| 449 | desc->flags, desc->next, desc->addr); |
| 450 | } |
| 451 | } |
| 452 | } |
| 453 | if (vif->cxq_vring != NULL |
| 454 | && vif->features & VIRTIO_FEATURE (VIRTIO_NET_F_CTRL_VQ)) |
| 455 | { |
| 456 | vring = vif->cxq_vring; |
| 457 | vlib_cli_output (vm, " Virtqueue (CTRL) %d", vring->queue_id); |
| 458 | vlib_cli_output (vm, |
| 459 | " qsz %d, last_used_idx %d, desc_next %d, desc_in_use %d", |
| 460 | vring->size, vring->last_used_idx, |
| 461 | vring->desc_next, vring->desc_in_use); |
| 462 | vlib_cli_output (vm, |
| 463 | " avail.flags 0x%x avail.idx %d used.flags 0x%x used.idx %d", |
| 464 | vring->avail->flags, vring->avail->idx, |
| 465 | vring->used->flags, vring->used->idx); |
Mohsin Kazmi | 206acf8 | 2020-04-06 14:19:54 +0200 | [diff] [blame] | 466 | if (type & (VIRTIO_IF_TYPE_TAP | VIRTIO_IF_TYPE_TUN)) |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 467 | { |
| 468 | vlib_cli_output (vm, " kickfd %d, callfd %d", vring->kick_fd, |
| 469 | vring->call_fd); |
| 470 | } |
| 471 | if (show_descr) |
| 472 | { |
| 473 | vlib_cli_output (vm, "\n descriptor table:\n"); |
| 474 | vlib_cli_output (vm, |
| 475 | " id addr len flags next user_addr\n"); |
| 476 | vlib_cli_output (vm, |
| 477 | " ===== ================== ===== ====== ===== ==================\n"); |
| 478 | for (j = 0; j < vring->size; j++) |
| 479 | { |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 480 | vring_desc_t *desc = &vring->desc[j]; |
Mohsin Kazmi | 09a3bc5 | 2019-04-02 11:45:08 +0000 | [diff] [blame] | 481 | vlib_cli_output (vm, |
| 482 | " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n", |
| 483 | j, desc->addr, |
| 484 | desc->len, |
| 485 | desc->flags, desc->next, desc->addr); |
| 486 | } |
| 487 | } |
| 488 | } |
| 489 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | } |
| 493 | |
Damjan Marion | f41244f | 2019-11-08 17:41:06 +0100 | [diff] [blame] | 494 | static clib_error_t * |
| 495 | virtio_init (vlib_main_t * vm) |
| 496 | { |
| 497 | virtio_main_t *vim = &virtio_main; |
| 498 | clib_error_t *error = 0; |
| 499 | |
| 500 | vim->log_default = vlib_log_register_class ("virtio", 0); |
| 501 | vlib_log_debug (vim->log_default, "initialized"); |
| 502 | |
| 503 | return error; |
| 504 | } |
| 505 | |
| 506 | VLIB_INIT_FUNCTION (virtio_init); |
| 507 | |
Damjan Marion | 8389fb9 | 2017-10-13 18:29:53 +0200 | [diff] [blame] | 508 | /* |
| 509 | * fd.io coding-style-patch-verification: ON |
| 510 | * |
| 511 | * Local Variables: |
| 512 | * eval: (c-set-style "gnu") |
| 513 | * End: |
| 514 | */ |