Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2 | *------------------------------------------------------------------ |
| 3 | * vhost.c - vhost-user |
| 4 | * |
| 5 | * Copyright (c) 2014 Cisco and/or its affiliates. |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at: |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | *------------------------------------------------------------------ |
| 18 | */ |
| 19 | |
| 20 | #include <fcntl.h> /* for open */ |
| 21 | #include <sys/ioctl.h> |
| 22 | #include <sys/socket.h> |
| 23 | #include <sys/un.h> |
| 24 | #include <sys/stat.h> |
| 25 | #include <sys/types.h> |
| 26 | #include <sys/uio.h> /* for iovec */ |
| 27 | #include <netinet/in.h> |
| 28 | #include <sys/vfs.h> |
| 29 | |
| 30 | #include <linux/if_arp.h> |
| 31 | #include <linux/if_tun.h> |
| 32 | |
| 33 | #include <vlib/vlib.h> |
| 34 | #include <vlib/unix/unix.h> |
| 35 | |
| 36 | #include <vnet/ip/ip.h> |
| 37 | |
| 38 | #include <vnet/ethernet/ethernet.h> |
Damjan Marion | 8bdc63b | 2016-11-02 14:48:21 +0100 | [diff] [blame] | 39 | #include <vnet/devices/devices.h> |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 40 | #include <vnet/feature/feature.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 41 | |
| 42 | #include <vnet/devices/virtio/vhost-user.h> |
| 43 | |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 44 | /** |
| 45 | * @file |
| 46 | * @brief vHost User Device Driver. |
| 47 | * |
| 48 | * This file contains the source code for vHost User interface. |
| 49 | */ |
| 50 | |
| 51 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 52 | #define VHOST_DEBUG_VQ 0 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 53 | |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 54 | #define DBG_SOCK(args...) \ |
| 55 | { \ |
| 56 | vhost_user_main_t *_vum = &vhost_user_main; \ |
| 57 | if (_vum->debug) \ |
| 58 | clib_warning(args); \ |
| 59 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 60 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 61 | #if VHOST_DEBUG_VQ == 1 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | #define DBG_VQ(args...) clib_warning(args); |
| 63 | #else |
| 64 | #define DBG_VQ(args...) |
| 65 | #endif |
| 66 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 67 | /* |
| 68 | * When an RX queue is down but active, received packets |
| 69 | * must be discarded. This value controls up to how many |
| 70 | * packets will be discarded during each round. |
| 71 | */ |
| 72 | #define VHOST_USER_DOWN_DISCARD_COUNT 256 |
| 73 | |
| 74 | /* |
| 75 | * When the number of available buffers gets under this threshold, |
| 76 | * RX node will start discarding packets. |
| 77 | */ |
| 78 | #define VHOST_USER_RX_BUFFER_STARVATION 32 |
| 79 | |
| 80 | /* |
| 81 | * On the receive side, the host should free descriptors as soon |
| 82 | * as possible in order to avoid TX drop in the VM. |
| 83 | * This value controls the number of copy operations that are stacked |
| 84 | * before copy is done for all and descriptors are given back to |
| 85 | * the guest. |
| 86 | * The value 64 was obtained by testing (48 and 128 were not as good). |
| 87 | */ |
| 88 | #define VHOST_USER_RX_COPY_THRESHOLD 64 |
Steven | d772753 | 2017-06-09 18:49:17 -0700 | [diff] [blame] | 89 | /* |
| 90 | * On the transmit side, we keep processing the buffers from vlib in the while |
| 91 | * loop and prepare the copy order to be executed later. However, the static |
| 92 | * array which we keep the copy order is limited to VHOST_USER_COPY_ARRAY_N |
| 93 | * entries. In order to not corrupt memory, we have to do the copy when the |
| 94 | * static array reaches the copy threshold. We subtract 40 in case the code |
| 95 | * goes into the inner loop for a maximum of 64k frames which may require |
| 96 | * more array entries. |
| 97 | */ |
| 98 | #define VHOST_USER_TX_COPY_THRESHOLD (VHOST_USER_COPY_ARRAY_N - 40) |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 99 | |
Haiyang Tan | 2ae5135 | 2018-02-06 11:16:48 -0500 | [diff] [blame^] | 100 | #define UNIX_GET_FD(unixfd_idx) ({ \ |
| 101 | typeof(unixfd_idx) __unixfd_idx = (unixfd_idx); \ |
| 102 | (__unixfd_idx != ~0) ? \ |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 103 | pool_elt_at_index (file_main.file_pool, \ |
Haiyang Tan | 2ae5135 | 2018-02-06 11:16:48 -0500 | [diff] [blame^] | 104 | __unixfd_idx)->file_descriptor : -1; }) |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 105 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 106 | #define foreach_virtio_trace_flags \ |
| 107 | _ (SIMPLE_CHAINED, 0, "Simple descriptor chaining") \ |
| 108 | _ (SINGLE_DESC, 1, "Single descriptor packet") \ |
| 109 | _ (INDIRECT, 2, "Indirect descriptor") \ |
| 110 | _ (MAP_ERROR, 4, "Memory mapping error") |
| 111 | |
| 112 | typedef enum |
| 113 | { |
| 114 | #define _(n,i,s) VIRTIO_TRACE_F_##n, |
| 115 | foreach_virtio_trace_flags |
| 116 | #undef _ |
| 117 | } virtio_trace_flag_t; |
| 118 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 119 | vlib_node_registration_t vhost_user_input_node; |
| 120 | |
| 121 | #define foreach_vhost_user_tx_func_error \ |
Pierre Pfister | 328e99b | 2016-02-12 13:18:42 +0000 | [diff] [blame] | 122 | _(NONE, "no error") \ |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 123 | _(NOT_READY, "vhost vring not ready") \ |
| 124 | _(DOWN, "vhost interface is down") \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 125 | _(PKT_DROP_NOBUF, "tx packet drops (no available descriptors)") \ |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 126 | _(PKT_DROP_NOMRG, "tx packet drops (cannot merge descriptors)") \ |
| 127 | _(MMAP_FAIL, "mmap failure") \ |
| 128 | _(INDIRECT_OVERFLOW, "indirect descriptor table overflow") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 129 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 130 | typedef enum |
| 131 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 132 | #define _(f,s) VHOST_USER_TX_FUNC_ERROR_##f, |
| 133 | foreach_vhost_user_tx_func_error |
| 134 | #undef _ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 135 | VHOST_USER_TX_FUNC_N_ERROR, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | } vhost_user_tx_func_error_t; |
| 137 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 138 | static char *vhost_user_tx_func_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | #define _(n,s) s, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 140 | foreach_vhost_user_tx_func_error |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | #undef _ |
| 142 | }; |
| 143 | |
| 144 | #define foreach_vhost_user_input_func_error \ |
| 145 | _(NO_ERROR, "no error") \ |
Pierre Pfister | 328e99b | 2016-02-12 13:18:42 +0000 | [diff] [blame] | 146 | _(NO_BUFFER, "no available buffer") \ |
| 147 | _(MMAP_FAIL, "mmap failure") \ |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 148 | _(INDIRECT_OVERFLOW, "indirect descriptor overflows table") \ |
| 149 | _(UNDERSIZED_FRAME, "undersized ethernet frame received (< 14 bytes)") \ |
| 150 | _(FULL_RX_QUEUE, "full rx queue (possible driver tx drop)") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 152 | typedef enum |
| 153 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 154 | #define _(f,s) VHOST_USER_INPUT_FUNC_ERROR_##f, |
| 155 | foreach_vhost_user_input_func_error |
| 156 | #undef _ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 157 | VHOST_USER_INPUT_FUNC_N_ERROR, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 158 | } vhost_user_input_func_error_t; |
| 159 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 160 | static char *vhost_user_input_func_error_strings[] = { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 161 | #define _(n,s) s, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 162 | foreach_vhost_user_input_func_error |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 163 | #undef _ |
| 164 | }; |
| 165 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 166 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | static vhost_user_main_t vhost_user_main = { |
| 168 | .mtu_bytes = 1518, |
| 169 | }; |
| 170 | |
| 171 | VNET_HW_INTERFACE_CLASS (vhost_interface_class, static) = { |
| 172 | .name = "vhost-user", |
| 173 | }; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 174 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 175 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 176 | static u8 * |
| 177 | format_vhost_user_interface_name (u8 * s, va_list * args) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 178 | { |
| 179 | u32 i = va_arg (*args, u32); |
| 180 | u32 show_dev_instance = ~0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 181 | vhost_user_main_t *vum = &vhost_user_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 182 | |
| 183 | if (i < vec_len (vum->show_dev_instance_by_real_dev_instance)) |
| 184 | show_dev_instance = vum->show_dev_instance_by_real_dev_instance[i]; |
| 185 | |
| 186 | if (show_dev_instance != ~0) |
| 187 | i = show_dev_instance; |
| 188 | |
| 189 | s = format (s, "VirtualEthernet0/0/%d", i); |
| 190 | return s; |
| 191 | } |
| 192 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 193 | static int |
| 194 | vhost_user_name_renumber (vnet_hw_interface_t * hi, u32 new_dev_instance) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 195 | { |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 196 | // FIXME: check if the new dev instance is already used |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 197 | vhost_user_main_t *vum = &vhost_user_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 198 | vec_validate_init_empty (vum->show_dev_instance_by_real_dev_instance, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 199 | hi->dev_instance, ~0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 200 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 201 | vum->show_dev_instance_by_real_dev_instance[hi->dev_instance] = |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 202 | new_dev_instance; |
| 203 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 204 | DBG_SOCK ("renumbered vhost-user interface dev_instance %d to %d", |
| 205 | hi->dev_instance, new_dev_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 206 | |
| 207 | return 0; |
| 208 | } |
| 209 | |
Pierre Pfister | 11f9205 | 2016-09-21 08:08:55 +0100 | [diff] [blame] | 210 | static_always_inline void * |
| 211 | map_guest_mem (vhost_user_intf_t * vui, uword addr, u32 * hint) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 212 | { |
Pierre Pfister | 11f9205 | 2016-09-21 08:08:55 +0100 | [diff] [blame] | 213 | int i = *hint; |
| 214 | if (PREDICT_TRUE ((vui->regions[i].guest_phys_addr <= addr) && |
| 215 | ((vui->regions[i].guest_phys_addr + |
| 216 | vui->regions[i].memory_size) > addr))) |
| 217 | { |
| 218 | return (void *) (vui->region_mmap_addr[i] + addr - |
| 219 | vui->regions[i].guest_phys_addr); |
| 220 | } |
Damjan Marion | 3762370 | 2016-09-20 11:25:27 +0200 | [diff] [blame] | 221 | #if __SSE4_2__ |
| 222 | __m128i rl, rh, al, ah, r; |
| 223 | al = _mm_set1_epi64x (addr + 1); |
| 224 | ah = _mm_set1_epi64x (addr); |
| 225 | |
| 226 | rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[0]); |
| 227 | rl = _mm_cmpgt_epi64 (al, rl); |
| 228 | rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[0]); |
| 229 | rh = _mm_cmpgt_epi64 (rh, ah); |
| 230 | r = _mm_and_si128 (rl, rh); |
| 231 | |
| 232 | rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[2]); |
| 233 | rl = _mm_cmpgt_epi64 (al, rl); |
| 234 | rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[2]); |
| 235 | rh = _mm_cmpgt_epi64 (rh, ah); |
| 236 | r = _mm_blend_epi16 (r, _mm_and_si128 (rl, rh), 0x22); |
| 237 | |
| 238 | rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[4]); |
| 239 | rl = _mm_cmpgt_epi64 (al, rl); |
| 240 | rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[4]); |
| 241 | rh = _mm_cmpgt_epi64 (rh, ah); |
| 242 | r = _mm_blend_epi16 (r, _mm_and_si128 (rl, rh), 0x44); |
| 243 | |
| 244 | rl = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_lo[6]); |
| 245 | rl = _mm_cmpgt_epi64 (al, rl); |
| 246 | rh = _mm_loadu_si128 ((__m128i *) & vui->region_guest_addr_hi[6]); |
| 247 | rh = _mm_cmpgt_epi64 (rh, ah); |
| 248 | r = _mm_blend_epi16 (r, _mm_and_si128 (rl, rh), 0x88); |
| 249 | |
| 250 | r = _mm_shuffle_epi8 (r, _mm_set_epi64x (0, 0x0e060c040a020800)); |
Damjan Marion | 0b49e2b | 2017-02-09 21:49:06 +0100 | [diff] [blame] | 251 | i = __builtin_ctzll (_mm_movemask_epi8 (r) | |
| 252 | (1 << VHOST_MEMORY_MAX_NREGIONS)); |
Damjan Marion | 3762370 | 2016-09-20 11:25:27 +0200 | [diff] [blame] | 253 | |
| 254 | if (i < vui->nregions) |
| 255 | { |
Pierre Pfister | 11f9205 | 2016-09-21 08:08:55 +0100 | [diff] [blame] | 256 | *hint = i; |
Damjan Marion | 3762370 | 2016-09-20 11:25:27 +0200 | [diff] [blame] | 257 | return (void *) (vui->region_mmap_addr[i] + addr - |
| 258 | vui->regions[i].guest_phys_addr); |
| 259 | } |
Nitin Saxena | d3cb7ba | 2018-02-07 11:32:00 +0000 | [diff] [blame] | 260 | #elif __aarch64__ && __ARM_NEON |
| 261 | uint64x2_t al, ah, rl, rh, r; |
| 262 | uint32_t u32 = 0; |
Damjan Marion | 3762370 | 2016-09-20 11:25:27 +0200 | [diff] [blame] | 263 | |
Nitin Saxena | d3cb7ba | 2018-02-07 11:32:00 +0000 | [diff] [blame] | 264 | al = vdupq_n_u64 (addr + 1); |
| 265 | ah = vdupq_n_u64 (addr); |
| 266 | |
| 267 | /*First Iteration */ |
| 268 | rl = vld1q_u64 (&vui->region_guest_addr_lo[0]); |
| 269 | rl = vcgtq_u64 (al, rl); |
| 270 | rh = vld1q_u64 (&vui->region_guest_addr_hi[0]); |
| 271 | rh = vcgtq_u64 (rh, ah); |
| 272 | r = vandq_u64 (rl, rh); |
| 273 | u32 |= (vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 0) & 0x1); |
| 274 | u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 8) & 0x1) << 1); |
| 275 | |
| 276 | if (u32) |
| 277 | { |
| 278 | i = __builtin_ctzll (u32); |
| 279 | goto vhost_map_guest_mem_done; |
| 280 | } |
| 281 | |
| 282 | /*Second Iteration */ |
| 283 | rl = vld1q_u64 (&vui->region_guest_addr_lo[2]); |
| 284 | rl = vcgtq_u64 (al, rl); |
| 285 | rh = vld1q_u64 (&vui->region_guest_addr_hi[2]); |
| 286 | rh = vcgtq_u64 (rh, ah); |
| 287 | r = vandq_u64 (rl, rh); |
| 288 | u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 0) & 0x1) << 2); |
| 289 | u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 8) & 0x1) << 3); |
| 290 | |
| 291 | if (u32) |
| 292 | { |
| 293 | i = __builtin_ctzll (u32); |
| 294 | goto vhost_map_guest_mem_done; |
| 295 | } |
| 296 | |
| 297 | /*Third Iteration */ |
| 298 | rl = vld1q_u64 (&vui->region_guest_addr_lo[4]); |
| 299 | rl = vcgtq_u64 (al, rl); |
| 300 | rh = vld1q_u64 (&vui->region_guest_addr_hi[4]); |
| 301 | rh = vcgtq_u64 (rh, ah); |
| 302 | r = vandq_u64 (rl, rh); |
| 303 | u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 0) & 0x1) << 4); |
| 304 | u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 8) & 0x1) << 5); |
| 305 | |
| 306 | if (u32) |
| 307 | { |
| 308 | i = __builtin_ctzll (u32); |
| 309 | goto vhost_map_guest_mem_done; |
| 310 | } |
| 311 | |
| 312 | /*Fourth Iteration */ |
| 313 | rl = vld1q_u64 (&vui->region_guest_addr_lo[6]); |
| 314 | rl = vcgtq_u64 (al, rl); |
| 315 | rh = vld1q_u64 (&vui->region_guest_addr_hi[6]); |
| 316 | rh = vcgtq_u64 (rh, ah); |
| 317 | r = vandq_u64 (rl, rh); |
| 318 | u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 0) & 0x1) << 6); |
| 319 | u32 |= ((vgetq_lane_u8 (vreinterpretq_u8_u64 (r), 8) & 0x1) << 7); |
| 320 | |
| 321 | i = __builtin_ctzll (u32 | (1 << VHOST_MEMORY_MAX_NREGIONS)); |
| 322 | |
| 323 | vhost_map_guest_mem_done: |
| 324 | if (i < vui->nregions) |
| 325 | { |
| 326 | *hint = i; |
| 327 | return (void *) (vui->region_mmap_addr[i] + addr - |
| 328 | vui->regions[i].guest_phys_addr); |
| 329 | } |
Damjan Marion | 3762370 | 2016-09-20 11:25:27 +0200 | [diff] [blame] | 330 | #else |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 331 | for (i = 0; i < vui->nregions; i++) |
| 332 | { |
| 333 | if ((vui->regions[i].guest_phys_addr <= addr) && |
| 334 | ((vui->regions[i].guest_phys_addr + vui->regions[i].memory_size) > |
| 335 | addr)) |
| 336 | { |
Pierre Pfister | 11f9205 | 2016-09-21 08:08:55 +0100 | [diff] [blame] | 337 | *hint = i; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 338 | return (void *) (vui->region_mmap_addr[i] + addr - |
| 339 | vui->regions[i].guest_phys_addr); |
| 340 | } |
| 341 | } |
Damjan Marion | 3762370 | 2016-09-20 11:25:27 +0200 | [diff] [blame] | 342 | #endif |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 343 | DBG_VQ ("failed to map guest mem addr %llx", addr); |
Pierre Pfister | 11f9205 | 2016-09-21 08:08:55 +0100 | [diff] [blame] | 344 | *hint = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 345 | return 0; |
| 346 | } |
| 347 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 348 | static inline void * |
| 349 | map_user_mem (vhost_user_intf_t * vui, uword addr) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 350 | { |
| 351 | int i; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 352 | for (i = 0; i < vui->nregions; i++) |
| 353 | { |
| 354 | if ((vui->regions[i].userspace_addr <= addr) && |
| 355 | ((vui->regions[i].userspace_addr + vui->regions[i].memory_size) > |
| 356 | addr)) |
| 357 | { |
| 358 | return (void *) (vui->region_mmap_addr[i] + addr - |
| 359 | vui->regions[i].userspace_addr); |
| 360 | } |
| 361 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 362 | return 0; |
| 363 | } |
| 364 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 365 | static long |
| 366 | get_huge_page_size (int fd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 367 | { |
| 368 | struct statfs s; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 369 | fstatfs (fd, &s); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 370 | return s.f_bsize; |
| 371 | } |
| 372 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 373 | static void |
| 374 | unmap_all_mem_regions (vhost_user_intf_t * vui) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 375 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 376 | int i, r; |
| 377 | for (i = 0; i < vui->nregions; i++) |
| 378 | { |
Haiyang Tan | 7b0933a | 2018-01-20 04:48:53 -0500 | [diff] [blame] | 379 | if (vui->region_mmap_addr[i] != MAP_FAILED) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 380 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 381 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 382 | long page_sz = get_huge_page_size (vui->region_mmap_fd[i]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 383 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 384 | ssize_t map_sz = (vui->regions[i].memory_size + |
| 385 | vui->regions[i].mmap_offset + |
Pierre Pfister | bed5489 | 2017-04-20 15:34:00 +0200 | [diff] [blame] | 386 | page_sz - 1) & ~(page_sz - 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 387 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 388 | r = |
| 389 | munmap (vui->region_mmap_addr[i] - vui->regions[i].mmap_offset, |
| 390 | map_sz); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 391 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 392 | DBG_SOCK |
| 393 | ("unmap memory region %d addr 0x%lx len 0x%lx page_sz 0x%x", i, |
| 394 | vui->region_mmap_addr[i], map_sz, page_sz); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 395 | |
Haiyang Tan | 7b0933a | 2018-01-20 04:48:53 -0500 | [diff] [blame] | 396 | vui->region_mmap_addr[i] = MAP_FAILED; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 397 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 398 | if (r == -1) |
| 399 | { |
| 400 | clib_warning ("failed to unmap memory region (errno %d)", |
| 401 | errno); |
| 402 | } |
| 403 | close (vui->region_mmap_fd[i]); |
| 404 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 405 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 406 | vui->nregions = 0; |
| 407 | } |
| 408 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 409 | static void |
| 410 | vhost_user_tx_thread_placement (vhost_user_intf_t * vui) |
| 411 | { |
| 412 | //Let's try to assign one queue to each thread |
| 413 | u32 qid = 0; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 414 | u32 thread_index = 0; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 415 | vui->use_tx_spinlock = 0; |
| 416 | while (1) |
| 417 | { |
| 418 | for (qid = 0; qid < VHOST_VRING_MAX_N / 2; qid++) |
| 419 | { |
| 420 | vhost_user_vring_t *rxvq = &vui->vrings[VHOST_VRING_IDX_RX (qid)]; |
| 421 | if (!rxvq->started || !rxvq->enabled) |
| 422 | continue; |
| 423 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 424 | vui->per_cpu_tx_qid[thread_index] = qid; |
| 425 | thread_index++; |
| 426 | if (thread_index == vlib_get_thread_main ()->n_vlib_mains) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 427 | return; |
| 428 | } |
| 429 | //We need to loop, meaning the spinlock has to be used |
| 430 | vui->use_tx_spinlock = 1; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 431 | if (thread_index == 0) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 432 | { |
| 433 | //Could not find a single valid one |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 434 | for (thread_index = 0; |
| 435 | thread_index < vlib_get_thread_main ()->n_vlib_mains; |
| 436 | thread_index++) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 437 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 438 | vui->per_cpu_tx_qid[thread_index] = 0; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 439 | } |
| 440 | return; |
| 441 | } |
| 442 | } |
| 443 | } |
| 444 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 445 | /** |
| 446 | * @brief Unassign existing interface/queue to thread mappings and re-assign |
| 447 | * new interface/queue to thread mappings |
| 448 | */ |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 449 | static void |
| 450 | vhost_user_rx_thread_placement () |
| 451 | { |
| 452 | vhost_user_main_t *vum = &vhost_user_main; |
| 453 | vhost_user_intf_t *vui; |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 454 | vhost_user_vring_t *txvq; |
| 455 | vnet_main_t *vnm = vnet_get_main (); |
| 456 | u32 qid; |
| 457 | int rv; |
| 458 | u16 *queue; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 459 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 460 | // Scrap all existing mappings for all interfaces/queues |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 461 | /* *INDENT-OFF* */ |
| 462 | pool_foreach (vui, vum->vhost_user_interfaces, { |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 463 | vec_foreach (queue, vui->rx_queues) |
| 464 | { |
| 465 | rv = vnet_hw_interface_unassign_rx_thread (vnm, vui->hw_if_index, |
| 466 | *queue); |
| 467 | if (rv) |
| 468 | clib_warning ("Warning: unable to unassign interface %d, " |
| 469 | "queue %d: rc=%d", vui->hw_if_index, *queue, rv); |
| 470 | } |
| 471 | vec_reset_length (vui->rx_queues); |
| 472 | }); |
| 473 | /* *INDENT-ON* */ |
| 474 | |
| 475 | // Create the rx_queues for all interfaces |
| 476 | /* *INDENT-OFF* */ |
| 477 | pool_foreach (vui, vum->vhost_user_interfaces, { |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 478 | for (qid = 0; qid < VHOST_VRING_MAX_N / 2; qid++) |
| 479 | { |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 480 | txvq = &vui->vrings[VHOST_VRING_IDX_TX (qid)]; |
| 481 | if (txvq->started) |
| 482 | { |
| 483 | if (txvq->mode == VNET_HW_INTERFACE_RX_MODE_UNKNOWN) |
| 484 | /* Set polling as the default */ |
| 485 | txvq->mode = VNET_HW_INTERFACE_RX_MODE_POLLING; |
| 486 | vec_add1 (vui->rx_queues, qid); |
| 487 | } |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 488 | } |
| 489 | }); |
| 490 | /* *INDENT-ON* */ |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 491 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 492 | // Assign new mappings for all interfaces/queues |
| 493 | /* *INDENT-OFF* */ |
| 494 | pool_foreach (vui, vum->vhost_user_interfaces, { |
| 495 | vnet_hw_interface_set_input_node (vnm, vui->hw_if_index, |
| 496 | vhost_user_input_node.index); |
| 497 | vec_foreach (queue, vui->rx_queues) |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 498 | { |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 499 | vnet_hw_interface_assign_rx_thread (vnm, vui->hw_if_index, *queue, |
| 500 | ~0); |
| 501 | txvq = &vui->vrings[VHOST_VRING_IDX_TX (*queue)]; |
| 502 | rv = vnet_hw_interface_set_rx_mode (vnm, vui->hw_if_index, *queue, |
| 503 | txvq->mode); |
| 504 | if (rv) |
| 505 | clib_warning ("Warning: unable to set rx mode for interface %d, " |
| 506 | "queue %d: rc=%d", vui->hw_if_index, *queue, rv); |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 507 | } |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 508 | }); |
| 509 | /* *INDENT-ON* */ |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | /** @brief Returns whether at least one TX and one RX vring are enabled */ |
| 513 | int |
| 514 | vhost_user_intf_ready (vhost_user_intf_t * vui) |
| 515 | { |
| 516 | int i, found[2] = { }; //RX + TX |
| 517 | |
| 518 | for (i = 0; i < VHOST_VRING_MAX_N; i++) |
| 519 | if (vui->vrings[i].started && vui->vrings[i].enabled) |
| 520 | found[i & 1] = 1; |
| 521 | |
| 522 | return found[0] && found[1]; |
| 523 | } |
| 524 | |
| 525 | static void |
| 526 | vhost_user_update_iface_state (vhost_user_intf_t * vui) |
| 527 | { |
| 528 | /* if we have pointers to descriptor table, go up */ |
| 529 | int is_up = vhost_user_intf_ready (vui); |
| 530 | if (is_up != vui->is_up) |
| 531 | { |
| 532 | DBG_SOCK ("interface %d %s", vui->sw_if_index, |
| 533 | is_up ? "ready" : "down"); |
| 534 | vnet_hw_interface_set_flags (vnet_get_main (), vui->hw_if_index, |
| 535 | is_up ? VNET_HW_INTERFACE_FLAG_LINK_UP : |
| 536 | 0); |
| 537 | vui->is_up = is_up; |
| 538 | } |
| 539 | vhost_user_rx_thread_placement (); |
| 540 | vhost_user_tx_thread_placement (vui); |
| 541 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 542 | |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 543 | static void |
| 544 | vhost_user_set_interrupt_pending (vhost_user_intf_t * vui, u32 ifq) |
| 545 | { |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 546 | u32 qid; |
| 547 | vnet_main_t *vnm = vnet_get_main (); |
Steven | e4dcba8 | 2017-04-04 16:56:54 -0700 | [diff] [blame] | 548 | |
| 549 | qid = ifq & 0xff; |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 550 | if ((qid & 1) == 0) |
| 551 | /* Only care about the odd number, or TX, virtqueue */ |
Steven | e4dcba8 | 2017-04-04 16:56:54 -0700 | [diff] [blame] | 552 | return; |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 553 | |
| 554 | if (vhost_user_intf_ready (vui)) |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 555 | // qid >> 1 is to convert virtqueue number to vring queue index |
| 556 | vnet_device_input_set_interrupt_pending (vnm, vui->hw_if_index, qid >> 1); |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 557 | } |
| 558 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 559 | static clib_error_t * |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 560 | vhost_user_callfd_read_ready (clib_file_t * uf) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 561 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 562 | __attribute__ ((unused)) int n; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 563 | u8 buff[8]; |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 564 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 565 | n = read (uf->file_descriptor, ((char *) &buff), 8); |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 566 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 567 | return 0; |
| 568 | } |
| 569 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 570 | static clib_error_t * |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 571 | vhost_user_kickfd_read_ready (clib_file_t * uf) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 572 | { |
| 573 | __attribute__ ((unused)) int n; |
| 574 | u8 buff[8]; |
| 575 | vhost_user_intf_t *vui = |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 576 | pool_elt_at_index (vhost_user_main.vhost_user_interfaces, |
| 577 | uf->private_data >> 8); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 578 | u32 qid = uf->private_data & 0xff; |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 579 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 580 | n = read (uf->file_descriptor, ((char *) &buff), 8); |
| 581 | DBG_SOCK ("if %d KICK queue %d", uf->private_data >> 8, qid); |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 582 | if (!vui->vrings[qid].started || |
| 583 | (vhost_user_intf_ready (vui) != vui->is_up)) |
| 584 | { |
Steven | e4dcba8 | 2017-04-04 16:56:54 -0700 | [diff] [blame] | 585 | vlib_worker_thread_barrier_sync (vlib_get_main ()); |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 586 | vui->vrings[qid].started = 1; |
| 587 | vhost_user_update_iface_state (vui); |
Steven | e4dcba8 | 2017-04-04 16:56:54 -0700 | [diff] [blame] | 588 | vlib_worker_thread_barrier_release (vlib_get_main ()); |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 589 | } |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 590 | |
| 591 | vhost_user_set_interrupt_pending (vui, uf->private_data); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 592 | return 0; |
| 593 | } |
| 594 | |
| 595 | /** |
| 596 | * @brief Try once to lock the vring |
| 597 | * @return 0 on success, non-zero on failure. |
| 598 | */ |
| 599 | static inline int |
| 600 | vhost_user_vring_try_lock (vhost_user_intf_t * vui, u32 qid) |
| 601 | { |
| 602 | return __sync_lock_test_and_set (vui->vring_locks[qid], 1); |
| 603 | } |
| 604 | |
| 605 | /** |
| 606 | * @brief Spin until the vring is successfully locked |
| 607 | */ |
| 608 | static inline void |
| 609 | vhost_user_vring_lock (vhost_user_intf_t * vui, u32 qid) |
| 610 | { |
| 611 | while (vhost_user_vring_try_lock (vui, qid)) |
| 612 | ; |
| 613 | } |
| 614 | |
| 615 | /** |
| 616 | * @brief Unlock the vring lock |
| 617 | */ |
| 618 | static inline void |
| 619 | vhost_user_vring_unlock (vhost_user_intf_t * vui, u32 qid) |
| 620 | { |
| 621 | *vui->vring_locks[qid] = 0; |
| 622 | } |
| 623 | |
| 624 | static inline void |
| 625 | vhost_user_vring_init (vhost_user_intf_t * vui, u32 qid) |
| 626 | { |
| 627 | vhost_user_vring_t *vring = &vui->vrings[qid]; |
| 628 | memset (vring, 0, sizeof (*vring)); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 629 | vring->kickfd_idx = ~0; |
| 630 | vring->callfd_idx = ~0; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 631 | vring->errfd = -1; |
| 632 | |
| 633 | /* |
| 634 | * We have a bug with some qemu 2.5, and this may be a fix. |
| 635 | * Feel like interpretation holy text, but this is from vhost-user.txt. |
| 636 | * " |
| 637 | * One queue pair is enabled initially. More queues are enabled |
| 638 | * dynamically, by sending message VHOST_USER_SET_VRING_ENABLE. |
| 639 | * " |
| 640 | * Don't know who's right, but this is what DPDK does. |
| 641 | */ |
| 642 | if (qid == 0 || qid == 1) |
| 643 | vring->enabled = 1; |
| 644 | } |
| 645 | |
| 646 | static inline void |
| 647 | vhost_user_vring_close (vhost_user_intf_t * vui, u32 qid) |
| 648 | { |
| 649 | vhost_user_vring_t *vring = &vui->vrings[qid]; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 650 | if (vring->kickfd_idx != ~0) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 651 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 652 | clib_file_t *uf = pool_elt_at_index (file_main.file_pool, |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 653 | vring->kickfd_idx); |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 654 | clib_file_del (&file_main, uf); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 655 | vring->kickfd_idx = ~0; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 656 | } |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 657 | if (vring->callfd_idx != ~0) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 658 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 659 | clib_file_t *uf = pool_elt_at_index (file_main.file_pool, |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 660 | vring->callfd_idx); |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 661 | clib_file_del (&file_main, uf); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 662 | vring->callfd_idx = ~0; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 663 | } |
| 664 | if (vring->errfd != -1) |
Steven | f6dae05 | 2017-03-09 23:49:32 -0800 | [diff] [blame] | 665 | { |
| 666 | close (vring->errfd); |
| 667 | vring->errfd = -1; |
| 668 | } |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 669 | vhost_user_vring_init (vui, qid); |
| 670 | } |
| 671 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 672 | static inline void |
| 673 | vhost_user_if_disconnect (vhost_user_intf_t * vui) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 674 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 675 | vnet_main_t *vnm = vnet_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 676 | int q; |
| 677 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 678 | vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 679 | |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 680 | if (vui->clib_file_index != ~0) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 681 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 682 | clib_file_del (&file_main, file_main.file_pool + vui->clib_file_index); |
| 683 | vui->clib_file_index = ~0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 684 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 685 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 686 | vui->is_up = 0; |
Steve Shin | 4448957 | 2016-09-22 12:08:55 -0700 | [diff] [blame] | 687 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 688 | for (q = 0; q < VHOST_VRING_MAX_N; q++) |
| 689 | vhost_user_vring_close (vui, q); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 690 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 691 | unmap_all_mem_regions (vui); |
| 692 | DBG_SOCK ("interface ifindex %d disconnected", vui->sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 693 | } |
| 694 | |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 695 | #define VHOST_LOG_PAGE 0x1000 |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 696 | static_always_inline void |
| 697 | vhost_user_log_dirty_pages_2 (vhost_user_intf_t * vui, |
| 698 | u64 addr, u64 len, u8 is_host_address) |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 699 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 700 | if (PREDICT_TRUE (vui->log_base_addr == 0 |
| 701 | || !(vui->features & (1 << FEAT_VHOST_F_LOG_ALL)))) |
| 702 | { |
| 703 | return; |
| 704 | } |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 705 | if (is_host_address) |
| 706 | { |
Damjan Marion | 7bee80c | 2017-04-26 15:32:12 +0200 | [diff] [blame] | 707 | addr = pointer_to_uword (map_user_mem (vui, (uword) addr)); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 708 | } |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 709 | if (PREDICT_FALSE ((addr + len - 1) / VHOST_LOG_PAGE / 8 >= vui->log_size)) |
| 710 | { |
| 711 | DBG_SOCK ("vhost_user_log_dirty_pages(): out of range\n"); |
| 712 | return; |
| 713 | } |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 714 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 715 | CLIB_MEMORY_BARRIER (); |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 716 | u64 page = addr / VHOST_LOG_PAGE; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 717 | while (page * VHOST_LOG_PAGE < addr + len) |
| 718 | { |
| 719 | ((u8 *) vui->log_base_addr)[page / 8] |= 1 << page % 8; |
| 720 | page++; |
| 721 | } |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 722 | } |
| 723 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 724 | static_always_inline void |
| 725 | vhost_user_log_dirty_pages (vhost_user_intf_t * vui, u64 addr, u64 len) |
| 726 | { |
| 727 | vhost_user_log_dirty_pages_2 (vui, addr, len, 0); |
| 728 | } |
| 729 | |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 730 | #define vhost_user_log_dirty_ring(vui, vq, member) \ |
Yoann Desmouceaux | fe2da0e | 2016-03-08 14:54:28 +0100 | [diff] [blame] | 731 | if (PREDICT_FALSE(vq->log_used)) { \ |
Damjan Marion | 8d281b3 | 2016-08-24 14:32:39 +0200 | [diff] [blame] | 732 | vhost_user_log_dirty_pages(vui, vq->log_guest_addr + STRUCT_OFFSET_OF(vring_used_t, member), \ |
Yoann Desmouceaux | fe2da0e | 2016-03-08 14:54:28 +0100 | [diff] [blame] | 733 | sizeof(vq->used->member)); \ |
| 734 | } |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 735 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 736 | static clib_error_t * |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 737 | vhost_user_socket_read (clib_file_t * uf) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 738 | { |
| 739 | int n, i; |
| 740 | int fd, number_of_fds = 0; |
| 741 | int fds[VHOST_MEMORY_MAX_NREGIONS]; |
| 742 | vhost_user_msg_t msg; |
| 743 | struct msghdr mh; |
| 744 | struct iovec iov[1]; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 745 | vhost_user_main_t *vum = &vhost_user_main; |
| 746 | vhost_user_intf_t *vui; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 747 | struct cmsghdr *cmsg; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 748 | u8 q; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 749 | clib_file_t template = { 0 }; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 750 | vnet_main_t *vnm = vnet_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 751 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 752 | vui = pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 753 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 754 | char control[CMSG_SPACE (VHOST_MEMORY_MAX_NREGIONS * sizeof (int))]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 755 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 756 | memset (&mh, 0, sizeof (mh)); |
| 757 | memset (control, 0, sizeof (control)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 758 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 759 | for (i = 0; i < VHOST_MEMORY_MAX_NREGIONS; i++) |
Damjan Marion | a290d7c | 2016-08-16 12:37:24 +0200 | [diff] [blame] | 760 | fds[i] = -1; |
| 761 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 762 | /* set the payload */ |
| 763 | iov[0].iov_base = (void *) &msg; |
| 764 | iov[0].iov_len = VHOST_USER_MSG_HDR_SZ; |
| 765 | |
| 766 | mh.msg_iov = iov; |
| 767 | mh.msg_iovlen = 1; |
| 768 | mh.msg_control = control; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 769 | mh.msg_controllen = sizeof (control); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 770 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 771 | n = recvmsg (uf->file_descriptor, &mh, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 772 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 773 | /* Stop workers to avoid end of the world */ |
| 774 | vlib_worker_thread_barrier_sync (vlib_get_main ()); |
| 775 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 776 | if (n != VHOST_USER_MSG_HDR_SZ) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 777 | { |
| 778 | if (n == -1) |
| 779 | { |
| 780 | DBG_SOCK ("recvmsg returned error %d %s", errno, strerror (errno)); |
| 781 | } |
| 782 | else |
| 783 | { |
| 784 | DBG_SOCK ("n (%d) != VHOST_USER_MSG_HDR_SZ (%d)", |
| 785 | n, VHOST_USER_MSG_HDR_SZ); |
| 786 | } |
| 787 | goto close_socket; |
| 788 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 789 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 790 | if (mh.msg_flags & MSG_CTRUNC) |
| 791 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 792 | DBG_SOCK ("MSG_CTRUNC is set"); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 793 | goto close_socket; |
| 794 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 795 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 796 | cmsg = CMSG_FIRSTHDR (&mh); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 797 | |
| 798 | if (cmsg && (cmsg->cmsg_len > 0) && (cmsg->cmsg_level == SOL_SOCKET) && |
| 799 | (cmsg->cmsg_type == SCM_RIGHTS) && |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 800 | (cmsg->cmsg_len - CMSG_LEN (0) <= |
| 801 | VHOST_MEMORY_MAX_NREGIONS * sizeof (int))) |
| 802 | { |
| 803 | number_of_fds = (cmsg->cmsg_len - CMSG_LEN (0)) / sizeof (int); |
| 804 | clib_memcpy (fds, CMSG_DATA (cmsg), number_of_fds * sizeof (int)); |
| 805 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 806 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 807 | /* version 1, no reply bit set */ |
| 808 | if ((msg.flags & 7) != 1) |
| 809 | { |
| 810 | DBG_SOCK ("malformed message received. closing socket"); |
| 811 | goto close_socket; |
| 812 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 813 | |
| 814 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 815 | int rv; |
| 816 | rv = |
| 817 | read (uf->file_descriptor, ((char *) &msg) + VHOST_USER_MSG_HDR_SZ, |
| 818 | msg.size); |
| 819 | if (rv < 0) |
| 820 | { |
| 821 | DBG_SOCK ("read failed %s", strerror (errno)); |
| 822 | goto close_socket; |
| 823 | } |
| 824 | else if (rv != msg.size) |
| 825 | { |
| 826 | DBG_SOCK ("message too short (read %dB should be %dB)", rv, msg.size); |
| 827 | goto close_socket; |
| 828 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 829 | } |
| 830 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 831 | switch (msg.request) |
| 832 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 833 | case VHOST_USER_GET_FEATURES: |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 834 | msg.flags |= 4; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 835 | msg.u64 = (1ULL << FEAT_VIRTIO_NET_F_MRG_RXBUF) | |
| 836 | (1ULL << FEAT_VIRTIO_NET_F_CTRL_VQ) | |
| 837 | (1ULL << FEAT_VIRTIO_F_ANY_LAYOUT) | |
| 838 | (1ULL << FEAT_VIRTIO_F_INDIRECT_DESC) | |
| 839 | (1ULL << FEAT_VHOST_F_LOG_ALL) | |
| 840 | (1ULL << FEAT_VIRTIO_NET_F_GUEST_ANNOUNCE) | |
| 841 | (1ULL << FEAT_VIRTIO_NET_F_MQ) | |
| 842 | (1ULL << FEAT_VHOST_USER_F_PROTOCOL_FEATURES) | |
| 843 | (1ULL << FEAT_VIRTIO_F_VERSION_1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 844 | msg.u64 &= vui->feature_mask; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 845 | msg.size = sizeof (msg.u64); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 846 | DBG_SOCK ("if %d msg VHOST_USER_GET_FEATURES - reply 0x%016llx", |
| 847 | vui->hw_if_index, msg.u64); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 848 | break; |
| 849 | |
| 850 | case VHOST_USER_SET_FEATURES: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 851 | DBG_SOCK ("if %d msg VHOST_USER_SET_FEATURES features 0x%016llx", |
| 852 | vui->hw_if_index, msg.u64); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 853 | |
| 854 | vui->features = msg.u64; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 855 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 856 | if (vui->features & |
| 857 | ((1 << FEAT_VIRTIO_NET_F_MRG_RXBUF) | |
| 858 | (1ULL << FEAT_VIRTIO_F_VERSION_1))) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 859 | vui->virtio_net_hdr_sz = 12; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 860 | else |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 861 | vui->virtio_net_hdr_sz = 10; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 862 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 863 | vui->is_any_layout = |
| 864 | (vui->features & (1 << FEAT_VIRTIO_F_ANY_LAYOUT)) ? 1 : 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 865 | |
| 866 | ASSERT (vui->virtio_net_hdr_sz < VLIB_BUFFER_PRE_DATA_SIZE); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 867 | vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 868 | vui->is_up = 0; |
| 869 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 870 | /*for (q = 0; q < VHOST_VRING_MAX_N; q++) |
| 871 | vhost_user_vring_close(&vui->vrings[q]); */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 872 | |
| 873 | break; |
| 874 | |
| 875 | case VHOST_USER_SET_MEM_TABLE: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 876 | DBG_SOCK ("if %d msg VHOST_USER_SET_MEM_TABLE nregions %d", |
| 877 | vui->hw_if_index, msg.memory.nregions); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 878 | |
| 879 | if ((msg.memory.nregions < 1) || |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 880 | (msg.memory.nregions > VHOST_MEMORY_MAX_NREGIONS)) |
| 881 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 882 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 883 | DBG_SOCK ("number of mem regions must be between 1 and %i", |
| 884 | VHOST_MEMORY_MAX_NREGIONS); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 885 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 886 | goto close_socket; |
| 887 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 888 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 889 | if (msg.memory.nregions != number_of_fds) |
| 890 | { |
| 891 | DBG_SOCK ("each memory region must have FD"); |
| 892 | goto close_socket; |
| 893 | } |
| 894 | unmap_all_mem_regions (vui); |
| 895 | for (i = 0; i < msg.memory.nregions; i++) |
| 896 | { |
| 897 | clib_memcpy (&(vui->regions[i]), &msg.memory.regions[i], |
| 898 | sizeof (vhost_user_memory_region_t)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 899 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 900 | long page_sz = get_huge_page_size (fds[i]); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 901 | |
Haiyang Tan | 7b0933a | 2018-01-20 04:48:53 -0500 | [diff] [blame] | 902 | /* align size to page */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 903 | ssize_t map_sz = (vui->regions[i].memory_size + |
| 904 | vui->regions[i].mmap_offset + |
Pierre Pfister | bed5489 | 2017-04-20 15:34:00 +0200 | [diff] [blame] | 905 | page_sz - 1) & ~(page_sz - 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 906 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 907 | vui->region_mmap_addr[i] = mmap (0, map_sz, PROT_READ | PROT_WRITE, |
| 908 | MAP_SHARED, fds[i], 0); |
Damjan Marion | 3762370 | 2016-09-20 11:25:27 +0200 | [diff] [blame] | 909 | vui->region_guest_addr_lo[i] = vui->regions[i].guest_phys_addr; |
| 910 | vui->region_guest_addr_hi[i] = vui->regions[i].guest_phys_addr + |
| 911 | vui->regions[i].memory_size; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 912 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 913 | DBG_SOCK |
| 914 | ("map memory region %d addr 0 len 0x%lx fd %d mapped 0x%lx " |
| 915 | "page_sz 0x%x", i, map_sz, fds[i], vui->region_mmap_addr[i], |
| 916 | page_sz); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 917 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 918 | if (vui->region_mmap_addr[i] == MAP_FAILED) |
| 919 | { |
| 920 | clib_warning ("failed to map memory. errno is %d", errno); |
| 921 | goto close_socket; |
| 922 | } |
| 923 | vui->region_mmap_addr[i] += vui->regions[i].mmap_offset; |
| 924 | vui->region_mmap_fd[i] = fds[i]; |
Haiyang Tan | 352ecd9 | 2018-01-20 04:01:28 -0500 | [diff] [blame] | 925 | |
| 926 | vui->nregions++; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 927 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 928 | break; |
| 929 | |
| 930 | case VHOST_USER_SET_VRING_NUM: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 931 | DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_NUM idx %d num %d", |
| 932 | vui->hw_if_index, msg.state.index, msg.state.num); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 933 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 934 | if ((msg.state.num > 32768) || /* maximum ring size is 32768 */ |
| 935 | (msg.state.num == 0) || /* it cannot be zero */ |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 936 | ((msg.state.num - 1) & msg.state.num)) /* must be power of 2 */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 937 | goto close_socket; |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 938 | vui->vrings[msg.state.index].qsz_mask = msg.state.num - 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 939 | break; |
| 940 | |
| 941 | case VHOST_USER_SET_VRING_ADDR: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 942 | DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_ADDR idx %d", |
| 943 | vui->hw_if_index, msg.state.index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 944 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 945 | if (msg.state.index >= VHOST_VRING_MAX_N) |
| 946 | { |
| 947 | DBG_SOCK ("invalid vring index VHOST_USER_SET_VRING_ADDR:" |
| 948 | " %d >= %d", msg.state.index, VHOST_VRING_MAX_N); |
| 949 | goto close_socket; |
| 950 | } |
| 951 | |
| 952 | if (msg.size < sizeof (msg.addr)) |
| 953 | { |
| 954 | DBG_SOCK ("vhost message is too short (%d < %d)", |
| 955 | msg.size, sizeof (msg.addr)); |
| 956 | goto close_socket; |
| 957 | } |
| 958 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 959 | vui->vrings[msg.state.index].desc = (vring_desc_t *) |
| 960 | map_user_mem (vui, msg.addr.desc_user_addr); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 961 | vui->vrings[msg.state.index].used = (vring_used_t *) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 962 | map_user_mem (vui, msg.addr.used_user_addr); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 963 | vui->vrings[msg.state.index].avail = (vring_avail_t *) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 964 | map_user_mem (vui, msg.addr.avail_user_addr); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 965 | |
| 966 | if ((vui->vrings[msg.state.index].desc == NULL) || |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 967 | (vui->vrings[msg.state.index].used == NULL) || |
| 968 | (vui->vrings[msg.state.index].avail == NULL)) |
| 969 | { |
| 970 | DBG_SOCK ("failed to map user memory for hw_if_index %d", |
| 971 | vui->hw_if_index); |
| 972 | goto close_socket; |
| 973 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 974 | |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 975 | vui->vrings[msg.state.index].log_guest_addr = msg.addr.log_guest_addr; |
Yoann Desmouceaux | fe2da0e | 2016-03-08 14:54:28 +0100 | [diff] [blame] | 976 | vui->vrings[msg.state.index].log_used = |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 977 | (msg.addr.flags & (1 << VHOST_VRING_F_LOG)) ? 1 : 0; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 978 | |
| 979 | /* Spec says: If VHOST_USER_F_PROTOCOL_FEATURES has not been negotiated, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 980 | the ring is initialized in an enabled state. */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 981 | if (!(vui->features & (1 << FEAT_VHOST_USER_F_PROTOCOL_FEATURES))) |
| 982 | { |
| 983 | vui->vrings[msg.state.index].enabled = 1; |
| 984 | } |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 985 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 986 | vui->vrings[msg.state.index].last_used_idx = |
Damjan Marion | 10eb1ea | 2016-10-13 10:02:19 +0200 | [diff] [blame] | 987 | vui->vrings[msg.state.index].last_avail_idx = |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 988 | vui->vrings[msg.state.index].used->idx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 989 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 990 | /* tell driver that we don't want interrupts */ |
| 991 | vui->vrings[msg.state.index].used->flags = VRING_USED_F_NO_NOTIFY; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 992 | break; |
| 993 | |
| 994 | case VHOST_USER_SET_OWNER: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 995 | DBG_SOCK ("if %d msg VHOST_USER_SET_OWNER", vui->hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 996 | break; |
| 997 | |
| 998 | case VHOST_USER_RESET_OWNER: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 999 | DBG_SOCK ("if %d msg VHOST_USER_RESET_OWNER", vui->hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1000 | break; |
| 1001 | |
| 1002 | case VHOST_USER_SET_VRING_CALL: |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 1003 | DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_CALL %d", |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1004 | vui->hw_if_index, msg.u64); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1005 | |
| 1006 | q = (u8) (msg.u64 & 0xFF); |
| 1007 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1008 | /* if there is old fd, delete and close it */ |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1009 | if (vui->vrings[q].callfd_idx != ~0) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1010 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 1011 | clib_file_t *uf = pool_elt_at_index (file_main.file_pool, |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1012 | vui->vrings[q].callfd_idx); |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 1013 | clib_file_del (&file_main, uf); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1014 | vui->vrings[q].callfd_idx = ~0; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1015 | } |
| 1016 | |
Steven | 49a04b9 | 2017-07-29 08:56:08 -0700 | [diff] [blame] | 1017 | if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1018 | { |
| 1019 | if (number_of_fds != 1) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1020 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1021 | DBG_SOCK ("More than one fd received !"); |
| 1022 | goto close_socket; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1023 | } |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1024 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1025 | template.read_function = vhost_user_callfd_read_ready; |
| 1026 | template.file_descriptor = fds[0]; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1027 | template.private_data = |
| 1028 | ((vui - vhost_user_main.vhost_user_interfaces) << 8) + q; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 1029 | vui->vrings[q].callfd_idx = clib_file_add (&file_main, &template); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1030 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1031 | else |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1032 | vui->vrings[q].callfd_idx = ~0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1033 | break; |
| 1034 | |
| 1035 | case VHOST_USER_SET_VRING_KICK: |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 1036 | DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_KICK %d", |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1037 | vui->hw_if_index, msg.u64); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1038 | |
| 1039 | q = (u8) (msg.u64 & 0xFF); |
| 1040 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1041 | if (vui->vrings[q].kickfd_idx != ~0) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1042 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 1043 | clib_file_t *uf = pool_elt_at_index (file_main.file_pool, |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1044 | vui->vrings[q].kickfd_idx); |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 1045 | clib_file_del (&file_main, uf); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1046 | vui->vrings[q].kickfd_idx = ~0; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1047 | } |
| 1048 | |
Steven | 49a04b9 | 2017-07-29 08:56:08 -0700 | [diff] [blame] | 1049 | if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1050 | { |
| 1051 | if (number_of_fds != 1) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1052 | { |
| 1053 | DBG_SOCK ("More than one fd received !"); |
| 1054 | goto close_socket; |
| 1055 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1056 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1057 | template.read_function = vhost_user_kickfd_read_ready; |
| 1058 | template.file_descriptor = fds[0]; |
| 1059 | template.private_data = |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1060 | (((uword) (vui - vhost_user_main.vhost_user_interfaces)) << 8) + |
| 1061 | q; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 1062 | vui->vrings[q].kickfd_idx = clib_file_add (&file_main, &template); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1063 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1064 | else |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1065 | { |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1066 | //When no kickfd is set, the queue is initialized as started |
| 1067 | vui->vrings[q].kickfd_idx = ~0; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1068 | vui->vrings[q].started = 1; |
| 1069 | } |
| 1070 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1071 | break; |
| 1072 | |
| 1073 | case VHOST_USER_SET_VRING_ERR: |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 1074 | DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_ERR %d", |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1075 | vui->hw_if_index, msg.u64); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1076 | |
| 1077 | q = (u8) (msg.u64 & 0xFF); |
| 1078 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1079 | if (vui->vrings[q].errfd != -1) |
| 1080 | close (vui->vrings[q].errfd); |
| 1081 | |
Steven | 49a04b9 | 2017-07-29 08:56:08 -0700 | [diff] [blame] | 1082 | if (!(msg.u64 & VHOST_USER_VRING_NOFD_MASK)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1083 | { |
| 1084 | if (number_of_fds != 1) |
| 1085 | goto close_socket; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1086 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1087 | vui->vrings[q].errfd = fds[0]; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1088 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1089 | else |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1090 | vui->vrings[q].errfd = -1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1091 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1092 | break; |
| 1093 | |
| 1094 | case VHOST_USER_SET_VRING_BASE: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1095 | DBG_SOCK ("if %d msg VHOST_USER_SET_VRING_BASE idx %d num %d", |
| 1096 | vui->hw_if_index, msg.state.index, msg.state.num); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1097 | |
| 1098 | vui->vrings[msg.state.index].last_avail_idx = msg.state.num; |
| 1099 | break; |
| 1100 | |
| 1101 | case VHOST_USER_GET_VRING_BASE: |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1102 | if (msg.state.index >= VHOST_VRING_MAX_N) |
| 1103 | { |
| 1104 | DBG_SOCK ("invalid vring index VHOST_USER_GET_VRING_BASE:" |
| 1105 | " %d >= %d", msg.state.index, VHOST_VRING_MAX_N); |
| 1106 | goto close_socket; |
| 1107 | } |
| 1108 | |
Steven | f6dae05 | 2017-03-09 23:49:32 -0800 | [diff] [blame] | 1109 | /* |
| 1110 | * Copy last_avail_idx from the vring before closing it because |
| 1111 | * closing the vring also initializes the vring last_avail_idx |
| 1112 | */ |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 1113 | msg.state.num = vui->vrings[msg.state.index].last_avail_idx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1114 | msg.flags |= 4; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1115 | msg.size = sizeof (msg.state); |
Steven | f6dae05 | 2017-03-09 23:49:32 -0800 | [diff] [blame] | 1116 | |
| 1117 | /* Spec says: Client must [...] stop ring upon receiving VHOST_USER_GET_VRING_BASE. */ |
| 1118 | vhost_user_vring_close (vui, msg.state.index); |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 1119 | DBG_SOCK ("if %d msg VHOST_USER_GET_VRING_BASE idx %d num %d", |
| 1120 | vui->hw_if_index, msg.state.index, msg.state.num); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1121 | break; |
| 1122 | |
| 1123 | case VHOST_USER_NONE: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1124 | DBG_SOCK ("if %d msg VHOST_USER_NONE", vui->hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1125 | |
| 1126 | break; |
| 1127 | |
| 1128 | case VHOST_USER_SET_LOG_BASE: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1129 | { |
| 1130 | DBG_SOCK ("if %d msg VHOST_USER_SET_LOG_BASE", vui->hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1131 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1132 | if (msg.size != sizeof (msg.log)) |
| 1133 | { |
| 1134 | DBG_SOCK |
| 1135 | ("invalid msg size for VHOST_USER_SET_LOG_BASE: %d instead of %d", |
| 1136 | msg.size, sizeof (msg.log)); |
| 1137 | goto close_socket; |
| 1138 | } |
| 1139 | |
| 1140 | if (! |
| 1141 | (vui->protocol_features & (1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD))) |
| 1142 | { |
| 1143 | DBG_SOCK |
| 1144 | ("VHOST_USER_PROTOCOL_F_LOG_SHMFD not set but VHOST_USER_SET_LOG_BASE received"); |
| 1145 | goto close_socket; |
| 1146 | } |
| 1147 | |
| 1148 | fd = fds[0]; |
Haiyang Tan | 7b0933a | 2018-01-20 04:48:53 -0500 | [diff] [blame] | 1149 | /* align size to page */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1150 | long page_sz = get_huge_page_size (fd); |
| 1151 | ssize_t map_sz = |
Pierre Pfister | bed5489 | 2017-04-20 15:34:00 +0200 | [diff] [blame] | 1152 | (msg.log.size + msg.log.offset + page_sz - 1) & ~(page_sz - 1); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1153 | |
| 1154 | vui->log_base_addr = mmap (0, map_sz, PROT_READ | PROT_WRITE, |
| 1155 | MAP_SHARED, fd, 0); |
| 1156 | |
| 1157 | DBG_SOCK |
| 1158 | ("map log region addr 0 len 0x%lx off 0x%lx fd %d mapped 0x%lx", |
| 1159 | map_sz, msg.log.offset, fd, vui->log_base_addr); |
| 1160 | |
| 1161 | if (vui->log_base_addr == MAP_FAILED) |
| 1162 | { |
| 1163 | clib_warning ("failed to map memory. errno is %d", errno); |
| 1164 | goto close_socket; |
| 1165 | } |
| 1166 | |
| 1167 | vui->log_base_addr += msg.log.offset; |
| 1168 | vui->log_size = msg.log.size; |
| 1169 | |
| 1170 | msg.flags |= 4; |
| 1171 | msg.size = sizeof (msg.u64); |
| 1172 | |
| 1173 | break; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 1174 | } |
| 1175 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1176 | case VHOST_USER_SET_LOG_FD: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1177 | DBG_SOCK ("if %d msg VHOST_USER_SET_LOG_FD", vui->hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1178 | |
| 1179 | break; |
| 1180 | |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 1181 | case VHOST_USER_GET_PROTOCOL_FEATURES: |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 1182 | msg.flags |= 4; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1183 | msg.u64 = (1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD) | |
| 1184 | (1 << VHOST_USER_PROTOCOL_F_MQ); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1185 | msg.size = sizeof (msg.u64); |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 1186 | DBG_SOCK |
| 1187 | ("if %d msg VHOST_USER_GET_PROTOCOL_FEATURES - reply 0x%016llx", |
| 1188 | vui->hw_if_index, msg.u64); |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 1189 | break; |
| 1190 | |
| 1191 | case VHOST_USER_SET_PROTOCOL_FEATURES: |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 1192 | DBG_SOCK |
| 1193 | ("if %d msg VHOST_USER_SET_PROTOCOL_FEATURES features 0x%016llx", |
| 1194 | vui->hw_if_index, msg.u64); |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 1195 | |
| 1196 | vui->protocol_features = msg.u64; |
| 1197 | |
| 1198 | break; |
| 1199 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1200 | case VHOST_USER_GET_QUEUE_NUM: |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1201 | msg.flags |= 4; |
| 1202 | msg.u64 = VHOST_VRING_MAX_N; |
| 1203 | msg.size = sizeof (msg.u64); |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 1204 | DBG_SOCK ("if %d msg VHOST_USER_GET_QUEUE_NUM - reply %d", |
| 1205 | vui->hw_if_index, msg.u64); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1206 | break; |
| 1207 | |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 1208 | case VHOST_USER_SET_VRING_ENABLE: |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1209 | DBG_SOCK ("if %d VHOST_USER_SET_VRING_ENABLE: %s queue %d", |
| 1210 | vui->hw_if_index, msg.state.num ? "enable" : "disable", |
| 1211 | msg.state.index); |
| 1212 | if (msg.state.index >= VHOST_VRING_MAX_N) |
| 1213 | { |
| 1214 | DBG_SOCK ("invalid vring index VHOST_USER_SET_VRING_ENABLE:" |
| 1215 | " %d >= %d", msg.state.index, VHOST_VRING_MAX_N); |
| 1216 | goto close_socket; |
| 1217 | } |
| 1218 | |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 1219 | vui->vrings[msg.state.index].enabled = msg.state.num; |
| 1220 | break; |
| 1221 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1222 | default: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1223 | DBG_SOCK ("unknown vhost-user message %d received. closing socket", |
| 1224 | msg.request); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1225 | goto close_socket; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1226 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1227 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1228 | /* if we need to reply */ |
| 1229 | if (msg.flags & 4) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1230 | { |
| 1231 | n = |
| 1232 | send (uf->file_descriptor, &msg, VHOST_USER_MSG_HDR_SZ + msg.size, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1233 | if (n != (msg.size + VHOST_USER_MSG_HDR_SZ)) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1234 | { |
| 1235 | DBG_SOCK ("could not send message response"); |
| 1236 | goto close_socket; |
| 1237 | } |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1238 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1239 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1240 | vhost_user_update_iface_state (vui); |
| 1241 | vlib_worker_thread_barrier_release (vlib_get_main ()); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1242 | return 0; |
| 1243 | |
| 1244 | close_socket: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1245 | vhost_user_if_disconnect (vui); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1246 | vhost_user_update_iface_state (vui); |
| 1247 | vlib_worker_thread_barrier_release (vlib_get_main ()); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1248 | return 0; |
| 1249 | } |
| 1250 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1251 | static clib_error_t * |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 1252 | vhost_user_socket_error (clib_file_t * uf) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1253 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1254 | vlib_main_t *vm = vlib_get_main (); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1255 | vhost_user_main_t *vum = &vhost_user_main; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1256 | vhost_user_intf_t *vui = |
| 1257 | pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1258 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1259 | DBG_SOCK ("socket error on if %d", vui->sw_if_index); |
| 1260 | vlib_worker_thread_barrier_sync (vm); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1261 | vhost_user_if_disconnect (vui); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1262 | vhost_user_rx_thread_placement (); |
| 1263 | vlib_worker_thread_barrier_release (vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1264 | return 0; |
| 1265 | } |
| 1266 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1267 | static clib_error_t * |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 1268 | vhost_user_socksvr_accept_ready (clib_file_t * uf) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1269 | { |
| 1270 | int client_fd, client_len; |
| 1271 | struct sockaddr_un client; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 1272 | clib_file_t template = { 0 }; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1273 | vhost_user_main_t *vum = &vhost_user_main; |
| 1274 | vhost_user_intf_t *vui; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1275 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1276 | vui = pool_elt_at_index (vum->vhost_user_interfaces, uf->private_data); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1277 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1278 | client_len = sizeof (client); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1279 | client_fd = accept (uf->file_descriptor, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1280 | (struct sockaddr *) &client, |
| 1281 | (socklen_t *) & client_len); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1282 | |
| 1283 | if (client_fd < 0) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1284 | return clib_error_return_unix (0, "accept"); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1285 | |
Haiyang Tan | 2ae5135 | 2018-02-06 11:16:48 -0500 | [diff] [blame^] | 1286 | if (vui->clib_file_index != ~0) |
| 1287 | { |
| 1288 | DBG_SOCK ("Close client socket for vhost interface %d, fd %d", |
| 1289 | vui->sw_if_index, UNIX_GET_FD (vui->clib_file_index)); |
| 1290 | clib_file_del (&file_main, file_main.file_pool + vui->clib_file_index); |
| 1291 | } |
| 1292 | |
| 1293 | DBG_SOCK ("New client socket for vhost interface %d, fd %d", |
| 1294 | vui->sw_if_index, client_fd); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1295 | template.read_function = vhost_user_socket_read; |
| 1296 | template.error_function = vhost_user_socket_error; |
| 1297 | template.file_descriptor = client_fd; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1298 | template.private_data = vui - vhost_user_main.vhost_user_interfaces; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 1299 | vui->clib_file_index = clib_file_add (&file_main, &template); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1300 | return 0; |
| 1301 | } |
| 1302 | |
| 1303 | static clib_error_t * |
| 1304 | vhost_user_init (vlib_main_t * vm) |
| 1305 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1306 | clib_error_t *error; |
| 1307 | vhost_user_main_t *vum = &vhost_user_main; |
| 1308 | vlib_thread_main_t *tm = vlib_get_thread_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1309 | |
| 1310 | error = vlib_call_init_function (vm, ip4_init); |
| 1311 | if (error) |
| 1312 | return error; |
| 1313 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1314 | vum->coalesce_frames = 32; |
| 1315 | vum->coalesce_time = 1e-3; |
| 1316 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1317 | vec_validate (vum->cpus, tm->n_vlib_mains - 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1318 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1319 | vhost_cpu_t *cpu; |
| 1320 | vec_foreach (cpu, vum->cpus) |
| 1321 | { |
| 1322 | /* This is actually not necessary as validate already zeroes it |
| 1323 | * Just keeping the loop here for later because I am lazy. */ |
| 1324 | cpu->rx_buffers_len = 0; |
| 1325 | } |
| 1326 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1327 | vum->random = random_default_seed (); |
| 1328 | |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 1329 | mhash_init_c_string (&vum->if_index_by_sock_name, sizeof (uword)); |
| 1330 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1331 | return 0; |
| 1332 | } |
| 1333 | |
| 1334 | VLIB_INIT_FUNCTION (vhost_user_init); |
| 1335 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1336 | static u8 * |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1337 | format_vhost_trace (u8 * s, va_list * va) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1338 | { |
| 1339 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *); |
| 1340 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1341 | CLIB_UNUSED (vnet_main_t * vnm) = vnet_get_main (); |
| 1342 | vhost_user_main_t *vum = &vhost_user_main; |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1343 | vhost_trace_t *t = va_arg (*va, vhost_trace_t *); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1344 | vhost_user_intf_t *vui = pool_elt_at_index (vum->vhost_user_interfaces, |
| 1345 | t->device_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1346 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1347 | vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, vui->sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1348 | |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 1349 | u32 indent = format_get_indent (s); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1350 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1351 | s = format (s, "%U %U queue %d\n", format_white_space, indent, |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1352 | format_vnet_sw_interface_name, vnm, sw, t->qid); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1353 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1354 | s = format (s, "%U virtio flags:\n", format_white_space, indent); |
| 1355 | #define _(n,i,st) \ |
| 1356 | if (t->virtio_ring_flags & (1 << VIRTIO_TRACE_F_##n)) \ |
| 1357 | s = format (s, "%U %s %s\n", format_white_space, indent, #n, st); |
| 1358 | foreach_virtio_trace_flags |
| 1359 | #undef _ |
| 1360 | s = format (s, "%U virtio_net_hdr first_desc_len %u\n", |
| 1361 | format_white_space, indent, t->first_desc_len); |
| 1362 | |
| 1363 | s = format (s, "%U flags 0x%02x gso_type %u\n", |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1364 | format_white_space, indent, |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1365 | t->hdr.hdr.flags, t->hdr.hdr.gso_type); |
| 1366 | |
| 1367 | if (vui->virtio_net_hdr_sz == 12) |
| 1368 | s = format (s, "%U num_buff %u", |
| 1369 | format_white_space, indent, t->hdr.num_buffers); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1370 | |
| 1371 | return s; |
| 1372 | } |
| 1373 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1374 | void |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1375 | vhost_user_rx_trace (vhost_trace_t * t, |
| 1376 | vhost_user_intf_t * vui, u16 qid, |
| 1377 | vlib_buffer_t * b, vhost_user_vring_t * txvq) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1378 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1379 | vhost_user_main_t *vum = &vhost_user_main; |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1380 | u32 last_avail_idx = txvq->last_avail_idx; |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 1381 | u32 desc_current = txvq->avail->ring[last_avail_idx & txvq->qsz_mask]; |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1382 | vring_desc_t *hdr_desc = 0; |
| 1383 | virtio_net_hdr_mrg_rxbuf_t *hdr; |
| 1384 | u32 hint = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1385 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1386 | memset (t, 0, sizeof (*t)); |
| 1387 | t->device_index = vui - vum->vhost_user_interfaces; |
| 1388 | t->qid = qid; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1389 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1390 | hdr_desc = &txvq->desc[desc_current]; |
| 1391 | if (txvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1392 | { |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1393 | t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_INDIRECT; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1394 | /* Header is the first here */ |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1395 | hdr_desc = map_guest_mem (vui, txvq->desc[desc_current].addr, &hint); |
| 1396 | } |
| 1397 | if (txvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT) |
| 1398 | { |
| 1399 | t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SIMPLE_CHAINED; |
| 1400 | } |
| 1401 | if (!(txvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT) && |
| 1402 | !(txvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT)) |
| 1403 | { |
| 1404 | t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SINGLE_DESC; |
| 1405 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1406 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1407 | t->first_desc_len = hdr_desc ? hdr_desc->len : 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1408 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1409 | if (!hdr_desc || !(hdr = map_guest_mem (vui, hdr_desc->addr, &hint))) |
| 1410 | { |
| 1411 | t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_MAP_ERROR; |
| 1412 | } |
| 1413 | else |
| 1414 | { |
| 1415 | u32 len = vui->virtio_net_hdr_sz; |
| 1416 | memcpy (&t->hdr, hdr, len > hdr_desc->len ? hdr_desc->len : len); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1417 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1418 | } |
| 1419 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1420 | static inline void |
| 1421 | vhost_user_send_call (vlib_main_t * vm, vhost_user_vring_t * vq) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1422 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1423 | vhost_user_main_t *vum = &vhost_user_main; |
| 1424 | u64 x = 1; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1425 | int fd = UNIX_GET_FD (vq->callfd_idx); |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 1426 | int rv; |
| 1427 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 1428 | rv = write (fd, &x, sizeof (x)); |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 1429 | if (rv <= 0) |
| 1430 | { |
| 1431 | clib_unix_warning |
| 1432 | ("Error: Could not write to unix socket for callfd %d", fd); |
| 1433 | return; |
| 1434 | } |
| 1435 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1436 | vq->n_since_last_int = 0; |
| 1437 | vq->int_deadline = vlib_time_now (vm) + vum->coalesce_time; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1438 | } |
| 1439 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1440 | static_always_inline u32 |
| 1441 | vhost_user_input_copy (vhost_user_intf_t * vui, vhost_copy_t * cpy, |
| 1442 | u16 copy_len, u32 * map_hint) |
| 1443 | { |
| 1444 | void *src0, *src1, *src2, *src3; |
| 1445 | if (PREDICT_TRUE (copy_len >= 4)) |
| 1446 | { |
| 1447 | if (PREDICT_FALSE (!(src2 = map_guest_mem (vui, cpy[0].src, map_hint)))) |
| 1448 | return 1; |
| 1449 | if (PREDICT_FALSE (!(src3 = map_guest_mem (vui, cpy[1].src, map_hint)))) |
| 1450 | return 1; |
| 1451 | |
| 1452 | while (PREDICT_TRUE (copy_len >= 4)) |
| 1453 | { |
| 1454 | src0 = src2; |
| 1455 | src1 = src3; |
| 1456 | |
| 1457 | if (PREDICT_FALSE |
| 1458 | (!(src2 = map_guest_mem (vui, cpy[2].src, map_hint)))) |
| 1459 | return 1; |
| 1460 | if (PREDICT_FALSE |
| 1461 | (!(src3 = map_guest_mem (vui, cpy[3].src, map_hint)))) |
| 1462 | return 1; |
| 1463 | |
| 1464 | CLIB_PREFETCH (src2, 64, LOAD); |
| 1465 | CLIB_PREFETCH (src3, 64, LOAD); |
| 1466 | |
| 1467 | clib_memcpy ((void *) cpy[0].dst, src0, cpy[0].len); |
| 1468 | clib_memcpy ((void *) cpy[1].dst, src1, cpy[1].len); |
| 1469 | copy_len -= 2; |
| 1470 | cpy += 2; |
| 1471 | } |
| 1472 | } |
| 1473 | while (copy_len) |
| 1474 | { |
| 1475 | if (PREDICT_FALSE (!(src0 = map_guest_mem (vui, cpy->src, map_hint)))) |
| 1476 | return 1; |
| 1477 | clib_memcpy ((void *) cpy->dst, src0, cpy->len); |
| 1478 | copy_len -= 1; |
| 1479 | cpy += 1; |
| 1480 | } |
| 1481 | return 0; |
| 1482 | } |
| 1483 | |
| 1484 | /** |
| 1485 | * Try to discard packets from the tx ring (VPP RX path). |
| 1486 | * Returns the number of discarded packets. |
| 1487 | */ |
| 1488 | u32 |
| 1489 | vhost_user_rx_discard_packet (vlib_main_t * vm, |
| 1490 | vhost_user_intf_t * vui, |
| 1491 | vhost_user_vring_t * txvq, u32 discard_max) |
| 1492 | { |
| 1493 | /* |
| 1494 | * On the RX side, each packet corresponds to one descriptor |
| 1495 | * (it is the same whether it is a shallow descriptor, chained, or indirect). |
| 1496 | * Therefore, discarding a packet is like discarding a descriptor. |
| 1497 | */ |
| 1498 | u32 discarded_packets = 0; |
| 1499 | u32 avail_idx = txvq->avail->idx; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1500 | while (discarded_packets != discard_max) |
| 1501 | { |
| 1502 | if (avail_idx == txvq->last_avail_idx) |
| 1503 | goto out; |
| 1504 | |
| 1505 | u16 desc_chain_head = |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 1506 | txvq->avail->ring[txvq->last_avail_idx & txvq->qsz_mask]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1507 | txvq->last_avail_idx++; |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 1508 | txvq->used->ring[txvq->last_used_idx & txvq->qsz_mask].id = |
| 1509 | desc_chain_head; |
| 1510 | txvq->used->ring[txvq->last_used_idx & txvq->qsz_mask].len = 0; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1511 | vhost_user_log_dirty_ring (vui, txvq, |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 1512 | ring[txvq->last_used_idx & txvq->qsz_mask]); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1513 | txvq->last_used_idx++; |
| 1514 | discarded_packets++; |
| 1515 | } |
| 1516 | |
| 1517 | out: |
| 1518 | CLIB_MEMORY_BARRIER (); |
| 1519 | txvq->used->idx = txvq->last_used_idx; |
| 1520 | vhost_user_log_dirty_ring (vui, txvq, idx); |
| 1521 | return discarded_packets; |
| 1522 | } |
| 1523 | |
| 1524 | /* |
| 1525 | * In case of overflow, we need to rewind the array of allocated buffers. |
| 1526 | */ |
| 1527 | static void |
| 1528 | vhost_user_input_rewind_buffers (vlib_main_t * vm, |
| 1529 | vhost_cpu_t * cpu, vlib_buffer_t * b_head) |
| 1530 | { |
| 1531 | u32 bi_current = cpu->rx_buffers[cpu->rx_buffers_len]; |
| 1532 | vlib_buffer_t *b_current = vlib_get_buffer (vm, bi_current); |
| 1533 | b_current->current_length = 0; |
| 1534 | b_current->flags = 0; |
| 1535 | while (b_current != b_head) |
| 1536 | { |
| 1537 | cpu->rx_buffers_len++; |
| 1538 | bi_current = cpu->rx_buffers[cpu->rx_buffers_len]; |
| 1539 | b_current = vlib_get_buffer (vm, bi_current); |
| 1540 | b_current->current_length = 0; |
| 1541 | b_current->flags = 0; |
| 1542 | } |
Steven | 95827e4 | 2017-05-18 21:22:00 -0700 | [diff] [blame] | 1543 | cpu->rx_buffers_len++; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1544 | } |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 1545 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1546 | static u32 |
| 1547 | vhost_user_if_input (vlib_main_t * vm, |
| 1548 | vhost_user_main_t * vum, |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1549 | vhost_user_intf_t * vui, |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 1550 | u16 qid, vlib_node_runtime_t * node, |
| 1551 | vnet_hw_interface_rx_mode mode) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1552 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1553 | vhost_user_vring_t *txvq = &vui->vrings[VHOST_VRING_IDX_TX (qid)]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1554 | u16 n_rx_packets = 0; |
| 1555 | u32 n_rx_bytes = 0; |
| 1556 | u16 n_left; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1557 | u32 n_left_to_next, *to_next; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1558 | u32 next_index = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT; |
| 1559 | u32 n_trace = vlib_get_trace_count (vm, node); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1560 | u32 map_hint = 0; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1561 | u16 thread_index = vlib_get_thread_index (); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1562 | u16 copy_len = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1563 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1564 | { |
| 1565 | /* do we have pending interrupts ? */ |
| 1566 | vhost_user_vring_t *rxvq = &vui->vrings[VHOST_VRING_IDX_RX (qid)]; |
| 1567 | f64 now = vlib_time_now (vm); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1568 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1569 | if ((txvq->n_since_last_int) && (txvq->int_deadline < now)) |
| 1570 | vhost_user_send_call (vm, txvq); |
| 1571 | |
| 1572 | if ((rxvq->n_since_last_int) && (rxvq->int_deadline < now)) |
| 1573 | vhost_user_send_call (vm, rxvq); |
| 1574 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1575 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 1576 | /* |
| 1577 | * For adaptive mode, it is optimized to reduce interrupts. |
| 1578 | * If the scheduler switches the input node to polling due |
| 1579 | * to burst of traffic, we tell the driver no interrupt. |
| 1580 | * When the traffic subsides, the scheduler switches the node back to |
| 1581 | * interrupt mode. We must tell the driver we want interrupt. |
| 1582 | */ |
| 1583 | if (PREDICT_FALSE (mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE)) |
| 1584 | { |
| 1585 | if ((node->flags & |
| 1586 | VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE) || |
| 1587 | !(node->flags & |
| 1588 | VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE)) |
| 1589 | /* Tell driver we want notification */ |
| 1590 | txvq->used->flags = 0; |
| 1591 | else |
| 1592 | /* Tell driver we don't want notification */ |
| 1593 | txvq->used->flags = VRING_USED_F_NO_NOTIFY; |
| 1594 | } |
| 1595 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1596 | if (PREDICT_FALSE (txvq->avail->flags & 0xFFFE)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1597 | return 0; |
| 1598 | |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 1599 | n_left = (u16) (txvq->avail->idx - txvq->last_avail_idx); |
| 1600 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1601 | /* nothing to do */ |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 1602 | if (PREDICT_FALSE (n_left == 0)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1603 | return 0; |
| 1604 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1605 | if (PREDICT_FALSE (!vui->admin_up || !(txvq->enabled))) |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 1606 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1607 | /* |
| 1608 | * Discard input packet if interface is admin down or vring is not |
| 1609 | * enabled. |
| 1610 | * "For example, for a networking device, in the disabled state |
| 1611 | * client must not supply any new RX packets, but must process |
| 1612 | * and discard any TX packets." |
| 1613 | */ |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1614 | vhost_user_rx_discard_packet (vm, vui, txvq, |
| 1615 | VHOST_USER_DOWN_DISCARD_COUNT); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1616 | return 0; |
| 1617 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1618 | |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 1619 | if (PREDICT_FALSE (n_left == (txvq->qsz_mask + 1))) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1620 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1621 | /* |
| 1622 | * Informational error logging when VPP is not |
| 1623 | * receiving packets fast enough. |
| 1624 | */ |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1625 | vlib_error_count (vm, node->node_index, |
| 1626 | VHOST_USER_INPUT_FUNC_ERROR_FULL_RX_QUEUE, 1); |
| 1627 | } |
| 1628 | |
Pierre Pfister | 328e99b | 2016-02-12 13:18:42 +0000 | [diff] [blame] | 1629 | if (n_left > VLIB_FRAME_SIZE) |
| 1630 | n_left = VLIB_FRAME_SIZE; |
| 1631 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1632 | /* |
| 1633 | * For small packets (<2kB), we will not need more than one vlib buffer |
| 1634 | * per packet. In case packets are bigger, we will just yeld at some point |
| 1635 | * in the loop and come back later. This is not an issue as for big packet, |
| 1636 | * processing cost really comes from the memory copy. |
Pierre Pfister | 56a8684 | 2017-10-05 14:24:05 +0200 | [diff] [blame] | 1637 | * The assumption is that big packets will fit in 40 buffers. |
Pierre Pfister | 328e99b | 2016-02-12 13:18:42 +0000 | [diff] [blame] | 1638 | */ |
Pierre Pfister | 56a8684 | 2017-10-05 14:24:05 +0200 | [diff] [blame] | 1639 | if (PREDICT_FALSE (vum->cpus[thread_index].rx_buffers_len < n_left + 1 || |
| 1640 | vum->cpus[thread_index].rx_buffers_len < 40)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1641 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1642 | u32 curr_len = vum->cpus[thread_index].rx_buffers_len; |
| 1643 | vum->cpus[thread_index].rx_buffers_len += |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1644 | vlib_buffer_alloc_from_free_list (vm, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1645 | vum->cpus[thread_index].rx_buffers + |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 1646 | curr_len, |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1647 | VHOST_USER_RX_BUFFERS_N - curr_len, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1648 | VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1649 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1650 | if (PREDICT_FALSE |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1651 | (vum->cpus[thread_index].rx_buffers_len < |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1652 | VHOST_USER_RX_BUFFER_STARVATION)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1653 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1654 | /* In case of buffer starvation, discard some packets from the queue |
| 1655 | * and log the event. |
| 1656 | * We keep doing best effort for the remaining packets. */ |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1657 | u32 flush = (n_left + 1 > vum->cpus[thread_index].rx_buffers_len) ? |
| 1658 | n_left + 1 - vum->cpus[thread_index].rx_buffers_len : 1; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1659 | flush = vhost_user_rx_discard_packet (vm, vui, txvq, flush); |
| 1660 | |
| 1661 | n_left -= flush; |
| 1662 | vlib_increment_simple_counter (vnet_main. |
| 1663 | interface_main.sw_if_counters + |
| 1664 | VNET_INTERFACE_COUNTER_DROP, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1665 | vlib_get_thread_index (), |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1666 | vui->sw_if_index, flush); |
| 1667 | |
| 1668 | vlib_error_count (vm, vhost_user_input_node.index, |
| 1669 | VHOST_USER_INPUT_FUNC_ERROR_NO_BUFFER, flush); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1670 | } |
| 1671 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1672 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1673 | while (n_left > 0) |
| 1674 | { |
| 1675 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1676 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1677 | while (n_left > 0 && n_left_to_next > 0) |
| 1678 | { |
| 1679 | vlib_buffer_t *b_head, *b_current; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1680 | u32 bi_current; |
| 1681 | u16 desc_current; |
| 1682 | u32 desc_data_offset; |
| 1683 | vring_desc_t *desc_table = txvq->desc; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1684 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1685 | if (PREDICT_FALSE (vum->cpus[thread_index].rx_buffers_len <= 1)) |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 1686 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1687 | /* Not enough rx_buffers |
| 1688 | * Note: We yeld on 1 so we don't need to do an additional |
| 1689 | * check for the next buffer prefetch. |
| 1690 | */ |
| 1691 | n_left = 0; |
| 1692 | break; |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 1693 | } |
| 1694 | |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 1695 | desc_current = |
| 1696 | txvq->avail->ring[txvq->last_avail_idx & txvq->qsz_mask]; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1697 | vum->cpus[thread_index].rx_buffers_len--; |
| 1698 | bi_current = (vum->cpus[thread_index].rx_buffers) |
| 1699 | [vum->cpus[thread_index].rx_buffers_len]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1700 | b_head = b_current = vlib_get_buffer (vm, bi_current); |
| 1701 | to_next[0] = bi_current; //We do that now so we can forget about bi_current |
| 1702 | to_next++; |
| 1703 | n_left_to_next--; |
| 1704 | |
| 1705 | vlib_prefetch_buffer_with_index (vm, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1706 | (vum-> |
| 1707 | cpus[thread_index].rx_buffers) |
| 1708 | [vum->cpus[thread_index]. |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1709 | rx_buffers_len - 1], LOAD); |
| 1710 | |
| 1711 | /* Just preset the used descriptor id and length for later */ |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 1712 | txvq->used->ring[txvq->last_used_idx & txvq->qsz_mask].id = |
| 1713 | desc_current; |
| 1714 | txvq->used->ring[txvq->last_used_idx & txvq->qsz_mask].len = 0; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1715 | vhost_user_log_dirty_ring (vui, txvq, |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 1716 | ring[txvq->last_used_idx & |
| 1717 | txvq->qsz_mask]); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1718 | |
| 1719 | /* The buffer should already be initialized */ |
| 1720 | b_head->total_length_not_including_first_buffer = 0; |
| 1721 | b_head->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID; |
| 1722 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1723 | if (PREDICT_FALSE (n_trace)) |
| 1724 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1725 | //TODO: next_index is not exactly known at that point |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1726 | vlib_trace_buffer (vm, node, next_index, b_head, |
| 1727 | /* follow_chain */ 0); |
| 1728 | vhost_trace_t *t0 = |
| 1729 | vlib_add_trace (vm, node, b_head, sizeof (t0[0])); |
| 1730 | vhost_user_rx_trace (t0, vui, qid, b_head, txvq); |
| 1731 | n_trace--; |
| 1732 | vlib_set_trace_count (vm, node, n_trace); |
| 1733 | } |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1734 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1735 | /* This depends on the setup but is very consistent |
| 1736 | * So I think the CPU branch predictor will make a pretty good job |
| 1737 | * at optimizing the decision. */ |
| 1738 | if (txvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT) |
| 1739 | { |
| 1740 | desc_table = map_guest_mem (vui, txvq->desc[desc_current].addr, |
| 1741 | &map_hint); |
| 1742 | desc_current = 0; |
| 1743 | if (PREDICT_FALSE (desc_table == 0)) |
| 1744 | { |
Steven | 95827e4 | 2017-05-18 21:22:00 -0700 | [diff] [blame] | 1745 | vlib_error_count (vm, node->node_index, |
| 1746 | VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1747 | goto out; |
| 1748 | } |
| 1749 | } |
| 1750 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1751 | if (PREDICT_TRUE (vui->is_any_layout) || |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1752 | (!(desc_table[desc_current].flags & VIRTQ_DESC_F_NEXT))) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1753 | { |
| 1754 | /* ANYLAYOUT or single buffer */ |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1755 | desc_data_offset = vui->virtio_net_hdr_sz; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1756 | } |
| 1757 | else |
| 1758 | { |
| 1759 | /* CSR case without ANYLAYOUT, skip 1st buffer */ |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1760 | desc_data_offset = desc_table[desc_current].len; |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 1761 | } |
| 1762 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1763 | while (1) |
| 1764 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1765 | /* Get more input if necessary. Or end of packet. */ |
| 1766 | if (desc_data_offset == desc_table[desc_current].len) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1767 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1768 | if (PREDICT_FALSE (desc_table[desc_current].flags & |
| 1769 | VIRTQ_DESC_F_NEXT)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1770 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1771 | desc_current = desc_table[desc_current].next; |
| 1772 | desc_data_offset = 0; |
| 1773 | } |
| 1774 | else |
| 1775 | { |
| 1776 | goto out; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1777 | } |
| 1778 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1779 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1780 | /* Get more output if necessary. Or end of packet. */ |
| 1781 | if (PREDICT_FALSE |
| 1782 | (b_current->current_length == VLIB_BUFFER_DATA_SIZE)) |
| 1783 | { |
| 1784 | if (PREDICT_FALSE |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1785 | (vum->cpus[thread_index].rx_buffers_len == 0)) |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1786 | { |
Steven | 62411e7 | 2017-02-03 09:30:37 -0800 | [diff] [blame] | 1787 | /* Cancel speculation */ |
| 1788 | to_next--; |
| 1789 | n_left_to_next++; |
| 1790 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1791 | /* |
| 1792 | * Checking if there are some left buffers. |
| 1793 | * If not, just rewind the used buffers and stop. |
| 1794 | * Note: Scheduled copies are not cancelled. This is |
| 1795 | * not an issue as they would still be valid. Useless, |
| 1796 | * but valid. |
| 1797 | */ |
| 1798 | vhost_user_input_rewind_buffers (vm, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1799 | &vum->cpus |
| 1800 | [thread_index], |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1801 | b_head); |
| 1802 | n_left = 0; |
| 1803 | goto stop; |
| 1804 | } |
| 1805 | |
| 1806 | /* Get next output */ |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1807 | vum->cpus[thread_index].rx_buffers_len--; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1808 | u32 bi_next = |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1809 | (vum->cpus[thread_index].rx_buffers)[vum->cpus |
| 1810 | [thread_index].rx_buffers_len]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1811 | b_current->next_buffer = bi_next; |
| 1812 | b_current->flags |= VLIB_BUFFER_NEXT_PRESENT; |
| 1813 | bi_current = bi_next; |
| 1814 | b_current = vlib_get_buffer (vm, bi_current); |
| 1815 | } |
| 1816 | |
| 1817 | /* Prepare a copy order executed later for the data */ |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1818 | vhost_copy_t *cpy = &vum->cpus[thread_index].copy[copy_len]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1819 | copy_len++; |
| 1820 | u32 desc_data_l = |
| 1821 | desc_table[desc_current].len - desc_data_offset; |
| 1822 | cpy->len = VLIB_BUFFER_DATA_SIZE - b_current->current_length; |
| 1823 | cpy->len = (cpy->len > desc_data_l) ? desc_data_l : cpy->len; |
Steven | 025d415 | 2017-05-16 21:26:13 -0700 | [diff] [blame] | 1824 | cpy->dst = (uword) (vlib_buffer_get_current (b_current) + |
| 1825 | b_current->current_length); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1826 | cpy->src = desc_table[desc_current].addr + desc_data_offset; |
| 1827 | |
| 1828 | desc_data_offset += cpy->len; |
| 1829 | |
| 1830 | b_current->current_length += cpy->len; |
| 1831 | b_head->total_length_not_including_first_buffer += cpy->len; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1832 | } |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1833 | |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 1834 | out: |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1835 | CLIB_PREFETCH (&n_left, sizeof (n_left), LOAD); |
| 1836 | |
| 1837 | n_rx_bytes += b_head->total_length_not_including_first_buffer; |
| 1838 | n_rx_packets++; |
| 1839 | |
| 1840 | b_head->total_length_not_including_first_buffer -= |
| 1841 | b_head->current_length; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1842 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1843 | /* consume the descriptor and return it as used */ |
| 1844 | txvq->last_avail_idx++; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1845 | txvq->last_used_idx++; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1846 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1847 | VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b_head); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1848 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1849 | vnet_buffer (b_head)->sw_if_index[VLIB_RX] = vui->sw_if_index; |
| 1850 | vnet_buffer (b_head)->sw_if_index[VLIB_TX] = (u32) ~ 0; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1851 | b_head->error = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1852 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1853 | { |
| 1854 | u32 next0 = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT; |
Pierre Pfister | 328e99b | 2016-02-12 13:18:42 +0000 | [diff] [blame] | 1855 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1856 | /* redirect if feature path enabled */ |
| 1857 | vnet_feature_start_device_input_x1 (vui->sw_if_index, &next0, |
Damjan Marion | 35af9e5 | 2017-03-06 12:02:50 +0100 | [diff] [blame] | 1858 | b_head); |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 1859 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1860 | u32 bi = to_next[-1]; //Cannot use to_next[-1] in the macro |
| 1861 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, |
| 1862 | to_next, n_left_to_next, |
| 1863 | bi, next0); |
| 1864 | } |
Damjan Marion | 2231150 | 2016-10-28 20:30:15 +0200 | [diff] [blame] | 1865 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1866 | n_left--; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1867 | |
| 1868 | /* |
| 1869 | * Although separating memory copies from virtio ring parsing |
| 1870 | * is beneficial, we can offer to perform the copies from time |
| 1871 | * to time in order to free some space in the ring. |
| 1872 | */ |
| 1873 | if (PREDICT_FALSE (copy_len >= VHOST_USER_RX_COPY_THRESHOLD)) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1874 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1875 | if (PREDICT_FALSE |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1876 | (vhost_user_input_copy (vui, vum->cpus[thread_index].copy, |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1877 | copy_len, &map_hint))) |
| 1878 | { |
Steven | 95827e4 | 2017-05-18 21:22:00 -0700 | [diff] [blame] | 1879 | vlib_error_count (vm, node->node_index, |
| 1880 | VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1881 | } |
| 1882 | copy_len = 0; |
| 1883 | |
| 1884 | /* give buffers back to driver */ |
| 1885 | CLIB_MEMORY_BARRIER (); |
| 1886 | txvq->used->idx = txvq->last_used_idx; |
| 1887 | vhost_user_log_dirty_ring (vui, txvq, idx); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1888 | } |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1889 | } |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1890 | stop: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1891 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1892 | } |
| 1893 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1894 | /* Do the memory copies */ |
| 1895 | if (PREDICT_FALSE |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1896 | (vhost_user_input_copy (vui, vum->cpus[thread_index].copy, |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1897 | copy_len, &map_hint))) |
| 1898 | { |
Steven | 95827e4 | 2017-05-18 21:22:00 -0700 | [diff] [blame] | 1899 | vlib_error_count (vm, node->node_index, |
| 1900 | VHOST_USER_INPUT_FUNC_ERROR_MMAP_FAIL, 1); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1901 | } |
Pierre Pfister | 328e99b | 2016-02-12 13:18:42 +0000 | [diff] [blame] | 1902 | |
| 1903 | /* give buffers back to driver */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1904 | CLIB_MEMORY_BARRIER (); |
Pierre Pfister | 328e99b | 2016-02-12 13:18:42 +0000 | [diff] [blame] | 1905 | txvq->used->idx = txvq->last_used_idx; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1906 | vhost_user_log_dirty_ring (vui, txvq, idx); |
Pierre Pfister | 328e99b | 2016-02-12 13:18:42 +0000 | [diff] [blame] | 1907 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1908 | /* interrupt (call) handling */ |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 1909 | if ((txvq->callfd_idx != ~0) && |
| 1910 | !(txvq->avail->flags & VRING_AVAIL_F_NO_INTERRUPT)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1911 | { |
| 1912 | txvq->n_since_last_int += n_rx_packets; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1913 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1914 | if (txvq->n_since_last_int > vum->coalesce_frames) |
| 1915 | vhost_user_send_call (vm, txvq); |
| 1916 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1917 | |
| 1918 | /* increase rx counters */ |
| 1919 | vlib_increment_combined_counter |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1920 | (vnet_main.interface_main.combined_sw_if_counters |
| 1921 | + VNET_INTERFACE_COUNTER_RX, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1922 | vlib_get_thread_index (), vui->sw_if_index, n_rx_packets, n_rx_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1923 | |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 1924 | vnet_device_increment_rx_packets (thread_index, n_rx_packets); |
Damjan Marion | b3bb101 | 2017-02-28 21:55:28 +0100 | [diff] [blame] | 1925 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1926 | return n_rx_packets; |
| 1927 | } |
| 1928 | |
| 1929 | static uword |
| 1930 | vhost_user_input (vlib_main_t * vm, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1931 | vlib_node_runtime_t * node, vlib_frame_t * f) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1932 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1933 | vhost_user_main_t *vum = &vhost_user_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1934 | uword n_rx_packets = 0; |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 1935 | vhost_user_intf_t *vui; |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 1936 | vnet_device_input_runtime_t *rt = |
| 1937 | (vnet_device_input_runtime_t *) node->runtime_data; |
| 1938 | vnet_device_and_queue_t *dq; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 1939 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 1940 | vec_foreach (dq, rt->devices_and_queues) |
| 1941 | { |
| 1942 | if (clib_smp_swap (&dq->interrupt_pending, 0) || |
| 1943 | (node->state == VLIB_NODE_STATE_POLLING)) |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 1944 | { |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 1945 | vui = |
| 1946 | pool_elt_at_index (vum->vhost_user_interfaces, dq->dev_instance); |
| 1947 | n_rx_packets = vhost_user_if_input (vm, vum, vui, dq->queue_id, node, |
| 1948 | dq->mode); |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 1949 | } |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 1950 | } |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 1951 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1952 | return n_rx_packets; |
| 1953 | } |
| 1954 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1955 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1956 | VLIB_REGISTER_NODE (vhost_user_input_node) = { |
| 1957 | .function = vhost_user_input, |
| 1958 | .type = VLIB_NODE_TYPE_INPUT, |
| 1959 | .name = "vhost-user-input", |
Damjan Marion | 51327ac | 2016-11-09 11:59:42 +0100 | [diff] [blame] | 1960 | .sibling_of = "device-input", |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1961 | |
| 1962 | /* Will be enabled if/when hardware is detected. */ |
| 1963 | .state = VLIB_NODE_STATE_DISABLED, |
| 1964 | |
| 1965 | .format_buffer = format_ethernet_header_with_length, |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1966 | .format_trace = format_vhost_trace, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1967 | |
| 1968 | .n_errors = VHOST_USER_INPUT_FUNC_N_ERROR, |
| 1969 | .error_strings = vhost_user_input_func_error_strings, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1970 | }; |
| 1971 | |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 1972 | VLIB_NODE_FUNCTION_MULTIARCH (vhost_user_input_node, vhost_user_input) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 1973 | /* *INDENT-ON* */ |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 1974 | |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1975 | |
| 1976 | void |
| 1977 | vhost_user_tx_trace (vhost_trace_t * t, |
| 1978 | vhost_user_intf_t * vui, u16 qid, |
| 1979 | vlib_buffer_t * b, vhost_user_vring_t * rxvq) |
| 1980 | { |
| 1981 | vhost_user_main_t *vum = &vhost_user_main; |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1982 | u32 last_avail_idx = rxvq->last_avail_idx; |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 1983 | u32 desc_current = rxvq->avail->ring[last_avail_idx & rxvq->qsz_mask]; |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1984 | vring_desc_t *hdr_desc = 0; |
| 1985 | u32 hint = 0; |
| 1986 | |
| 1987 | memset (t, 0, sizeof (*t)); |
| 1988 | t->device_index = vui - vum->vhost_user_interfaces; |
| 1989 | t->qid = qid; |
| 1990 | |
| 1991 | hdr_desc = &rxvq->desc[desc_current]; |
| 1992 | if (rxvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT) |
| 1993 | { |
| 1994 | t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_INDIRECT; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 1995 | /* Header is the first here */ |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 1996 | hdr_desc = map_guest_mem (vui, rxvq->desc[desc_current].addr, &hint); |
| 1997 | } |
| 1998 | if (rxvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT) |
| 1999 | { |
| 2000 | t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SIMPLE_CHAINED; |
| 2001 | } |
| 2002 | if (!(rxvq->desc[desc_current].flags & VIRTQ_DESC_F_NEXT) && |
| 2003 | !(rxvq->desc[desc_current].flags & VIRTQ_DESC_F_INDIRECT)) |
| 2004 | { |
| 2005 | t->virtio_ring_flags |= 1 << VIRTIO_TRACE_F_SINGLE_DESC; |
| 2006 | } |
| 2007 | |
| 2008 | t->first_desc_len = hdr_desc ? hdr_desc->len : 0; |
| 2009 | } |
| 2010 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2011 | static_always_inline u32 |
| 2012 | vhost_user_tx_copy (vhost_user_intf_t * vui, vhost_copy_t * cpy, |
| 2013 | u16 copy_len, u32 * map_hint) |
| 2014 | { |
| 2015 | void *dst0, *dst1, *dst2, *dst3; |
| 2016 | if (PREDICT_TRUE (copy_len >= 4)) |
| 2017 | { |
| 2018 | if (PREDICT_FALSE (!(dst2 = map_guest_mem (vui, cpy[0].dst, map_hint)))) |
| 2019 | return 1; |
| 2020 | if (PREDICT_FALSE (!(dst3 = map_guest_mem (vui, cpy[1].dst, map_hint)))) |
| 2021 | return 1; |
| 2022 | while (PREDICT_TRUE (copy_len >= 4)) |
| 2023 | { |
| 2024 | dst0 = dst2; |
| 2025 | dst1 = dst3; |
| 2026 | |
| 2027 | if (PREDICT_FALSE |
| 2028 | (!(dst2 = map_guest_mem (vui, cpy[2].dst, map_hint)))) |
| 2029 | return 1; |
| 2030 | if (PREDICT_FALSE |
| 2031 | (!(dst3 = map_guest_mem (vui, cpy[3].dst, map_hint)))) |
| 2032 | return 1; |
| 2033 | |
| 2034 | CLIB_PREFETCH ((void *) cpy[2].src, 64, LOAD); |
| 2035 | CLIB_PREFETCH ((void *) cpy[3].src, 64, LOAD); |
| 2036 | |
| 2037 | clib_memcpy (dst0, (void *) cpy[0].src, cpy[0].len); |
| 2038 | clib_memcpy (dst1, (void *) cpy[1].src, cpy[1].len); |
| 2039 | |
| 2040 | vhost_user_log_dirty_pages_2 (vui, cpy[0].dst, cpy[0].len, 1); |
| 2041 | vhost_user_log_dirty_pages_2 (vui, cpy[1].dst, cpy[1].len, 1); |
| 2042 | copy_len -= 2; |
| 2043 | cpy += 2; |
| 2044 | } |
| 2045 | } |
| 2046 | while (copy_len) |
| 2047 | { |
| 2048 | if (PREDICT_FALSE (!(dst0 = map_guest_mem (vui, cpy->dst, map_hint)))) |
| 2049 | return 1; |
| 2050 | clib_memcpy (dst0, (void *) cpy->src, cpy->len); |
| 2051 | vhost_user_log_dirty_pages_2 (vui, cpy->dst, cpy->len, 1); |
| 2052 | copy_len -= 1; |
| 2053 | cpy += 1; |
| 2054 | } |
| 2055 | return 0; |
| 2056 | } |
| 2057 | |
| 2058 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2059 | static uword |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2060 | vhost_user_tx (vlib_main_t * vm, |
| 2061 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2062 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2063 | u32 *buffers = vlib_frame_args (frame); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2064 | u32 n_left = frame->n_vectors; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2065 | vhost_user_main_t *vum = &vhost_user_main; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2066 | vnet_interface_output_runtime_t *rd = (void *) node->runtime_data; |
| 2067 | vhost_user_intf_t *vui = |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2068 | pool_elt_at_index (vum->vhost_user_interfaces, rd->dev_instance); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 2069 | u32 qid = ~0; |
| 2070 | vhost_user_vring_t *rxvq; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2071 | u8 error; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2072 | u32 thread_index = vlib_get_thread_index (); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2073 | u32 map_hint = 0; |
| 2074 | u8 retry = 8; |
| 2075 | u16 copy_len; |
| 2076 | u16 tx_headers_len; |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 2077 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2078 | if (PREDICT_FALSE (!vui->admin_up)) |
| 2079 | { |
| 2080 | error = VHOST_USER_TX_FUNC_ERROR_DOWN; |
| 2081 | goto done3; |
| 2082 | } |
| 2083 | |
| 2084 | if (PREDICT_FALSE (!vui->is_up)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2085 | { |
| 2086 | error = VHOST_USER_TX_FUNC_ERROR_NOT_READY; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 2087 | goto done3; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2088 | } |
Damjan Marion | 920ecc2 | 2016-01-12 18:34:24 +0100 | [diff] [blame] | 2089 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 2090 | qid = |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2091 | VHOST_VRING_IDX_RX (*vec_elt_at_index |
Steven | d772753 | 2017-06-09 18:49:17 -0700 | [diff] [blame] | 2092 | (vui->per_cpu_tx_qid, thread_index)); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 2093 | rxvq = &vui->vrings[qid]; |
| 2094 | if (PREDICT_FALSE (vui->use_tx_spinlock)) |
| 2095 | vhost_user_vring_lock (vui, qid); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2096 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2097 | retry: |
| 2098 | error = VHOST_USER_TX_FUNC_ERROR_NONE; |
| 2099 | tx_headers_len = 0; |
| 2100 | copy_len = 0; |
| 2101 | while (n_left > 0) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2102 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2103 | vlib_buffer_t *b0, *current_b0; |
| 2104 | u16 desc_head, desc_index, desc_len; |
| 2105 | vring_desc_t *desc_table; |
| 2106 | uword buffer_map_addr; |
| 2107 | u32 buffer_len; |
| 2108 | u16 bytes_left; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2109 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2110 | if (PREDICT_TRUE (n_left > 1)) |
| 2111 | vlib_prefetch_buffer_with_index (vm, buffers[1], LOAD); |
| 2112 | |
| 2113 | b0 = vlib_get_buffer (vm, buffers[0]); |
| 2114 | |
| 2115 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 2116 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2117 | vum->cpus[thread_index].current_trace = |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2118 | vlib_add_trace (vm, node, b0, |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2119 | sizeof (*vum->cpus[thread_index].current_trace)); |
| 2120 | vhost_user_tx_trace (vum->cpus[thread_index].current_trace, |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2121 | vui, qid / 2, b0, rxvq); |
| 2122 | } |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 2123 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2124 | if (PREDICT_FALSE (rxvq->last_avail_idx == rxvq->avail->idx)) |
| 2125 | { |
| 2126 | error = VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF; |
| 2127 | goto done; |
| 2128 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2129 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2130 | desc_table = rxvq->desc; |
| 2131 | desc_head = desc_index = |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 2132 | rxvq->avail->ring[rxvq->last_avail_idx & rxvq->qsz_mask]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2133 | |
| 2134 | /* Go deeper in case of indirect descriptor |
| 2135 | * I don't know of any driver providing indirect for RX. */ |
| 2136 | if (PREDICT_FALSE (rxvq->desc[desc_head].flags & VIRTQ_DESC_F_INDIRECT)) |
| 2137 | { |
| 2138 | if (PREDICT_FALSE |
| 2139 | (rxvq->desc[desc_head].len < sizeof (vring_desc_t))) |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 2140 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2141 | error = VHOST_USER_TX_FUNC_ERROR_INDIRECT_OVERFLOW; |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 2142 | goto done; |
| 2143 | } |
| 2144 | if (PREDICT_FALSE |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2145 | (!(desc_table = |
| 2146 | map_guest_mem (vui, rxvq->desc[desc_index].addr, |
| 2147 | &map_hint)))) |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 2148 | { |
| 2149 | error = VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL; |
| 2150 | goto done; |
| 2151 | } |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2152 | desc_index = 0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2153 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2154 | |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2155 | desc_len = vui->virtio_net_hdr_sz; |
| 2156 | buffer_map_addr = desc_table[desc_index].addr; |
| 2157 | buffer_len = desc_table[desc_index].len; |
| 2158 | |
| 2159 | { |
| 2160 | // Get a header from the header array |
| 2161 | virtio_net_hdr_mrg_rxbuf_t *hdr = |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2162 | &vum->cpus[thread_index].tx_headers[tx_headers_len]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2163 | tx_headers_len++; |
| 2164 | hdr->hdr.flags = 0; |
| 2165 | hdr->hdr.gso_type = 0; |
| 2166 | hdr->num_buffers = 1; //This is local, no need to check |
| 2167 | |
| 2168 | // Prepare a copy order executed later for the header |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2169 | vhost_copy_t *cpy = &vum->cpus[thread_index].copy[copy_len]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2170 | copy_len++; |
| 2171 | cpy->len = vui->virtio_net_hdr_sz; |
| 2172 | cpy->dst = buffer_map_addr; |
| 2173 | cpy->src = (uword) hdr; |
| 2174 | } |
| 2175 | |
| 2176 | buffer_map_addr += vui->virtio_net_hdr_sz; |
| 2177 | buffer_len -= vui->virtio_net_hdr_sz; |
| 2178 | bytes_left = b0->current_length; |
| 2179 | current_b0 = b0; |
| 2180 | while (1) |
| 2181 | { |
| 2182 | if (buffer_len == 0) |
| 2183 | { //Get new output |
| 2184 | if (desc_table[desc_index].flags & VIRTQ_DESC_F_NEXT) |
| 2185 | { |
| 2186 | //Next one is chained |
| 2187 | desc_index = desc_table[desc_index].next; |
| 2188 | buffer_map_addr = desc_table[desc_index].addr; |
| 2189 | buffer_len = desc_table[desc_index].len; |
| 2190 | } |
| 2191 | else if (vui->virtio_net_hdr_sz == 12) //MRG is available |
| 2192 | { |
| 2193 | virtio_net_hdr_mrg_rxbuf_t *hdr = |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2194 | &vum->cpus[thread_index].tx_headers[tx_headers_len - 1]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2195 | |
| 2196 | //Move from available to used buffer |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 2197 | rxvq->used->ring[rxvq->last_used_idx & rxvq->qsz_mask].id = |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2198 | desc_head; |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 2199 | rxvq->used->ring[rxvq->last_used_idx & rxvq->qsz_mask].len = |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2200 | desc_len; |
| 2201 | vhost_user_log_dirty_ring (vui, rxvq, |
| 2202 | ring[rxvq->last_used_idx & |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 2203 | rxvq->qsz_mask]); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2204 | |
| 2205 | rxvq->last_avail_idx++; |
| 2206 | rxvq->last_used_idx++; |
| 2207 | hdr->num_buffers++; |
| 2208 | desc_len = 0; |
| 2209 | |
| 2210 | if (PREDICT_FALSE |
| 2211 | (rxvq->last_avail_idx == rxvq->avail->idx)) |
| 2212 | { |
| 2213 | //Dequeue queued descriptors for this packet |
| 2214 | rxvq->last_used_idx -= hdr->num_buffers - 1; |
| 2215 | rxvq->last_avail_idx -= hdr->num_buffers - 1; |
| 2216 | error = VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF; |
| 2217 | goto done; |
| 2218 | } |
| 2219 | |
| 2220 | desc_table = rxvq->desc; |
| 2221 | desc_head = desc_index = |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 2222 | rxvq->avail->ring[rxvq->last_avail_idx & rxvq->qsz_mask]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2223 | if (PREDICT_FALSE |
| 2224 | (rxvq->desc[desc_head].flags & VIRTQ_DESC_F_INDIRECT)) |
| 2225 | { |
| 2226 | //It is seriously unlikely that a driver will put indirect descriptor |
| 2227 | //after non-indirect descriptor. |
| 2228 | if (PREDICT_FALSE |
| 2229 | (rxvq->desc[desc_head].len < sizeof (vring_desc_t))) |
| 2230 | { |
| 2231 | error = VHOST_USER_TX_FUNC_ERROR_INDIRECT_OVERFLOW; |
| 2232 | goto done; |
| 2233 | } |
| 2234 | if (PREDICT_FALSE |
| 2235 | (!(desc_table = |
| 2236 | map_guest_mem (vui, |
| 2237 | rxvq->desc[desc_index].addr, |
| 2238 | &map_hint)))) |
| 2239 | { |
| 2240 | error = VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL; |
| 2241 | goto done; |
| 2242 | } |
| 2243 | desc_index = 0; |
| 2244 | } |
| 2245 | buffer_map_addr = desc_table[desc_index].addr; |
| 2246 | buffer_len = desc_table[desc_index].len; |
| 2247 | } |
| 2248 | else |
| 2249 | { |
| 2250 | error = VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOMRG; |
| 2251 | goto done; |
| 2252 | } |
| 2253 | } |
| 2254 | |
| 2255 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2256 | vhost_copy_t *cpy = &vum->cpus[thread_index].copy[copy_len]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2257 | copy_len++; |
| 2258 | cpy->len = bytes_left; |
| 2259 | cpy->len = (cpy->len > buffer_len) ? buffer_len : cpy->len; |
| 2260 | cpy->dst = buffer_map_addr; |
| 2261 | cpy->src = (uword) vlib_buffer_get_current (current_b0) + |
| 2262 | current_b0->current_length - bytes_left; |
| 2263 | |
| 2264 | bytes_left -= cpy->len; |
| 2265 | buffer_len -= cpy->len; |
| 2266 | buffer_map_addr += cpy->len; |
| 2267 | desc_len += cpy->len; |
| 2268 | |
Pierre Pfister | 14ac801 | 2016-12-08 07:58:47 +0000 | [diff] [blame] | 2269 | CLIB_PREFETCH (&rxvq->desc, CLIB_CACHE_LINE_BYTES, LOAD); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2270 | } |
| 2271 | |
| 2272 | // Check if vlib buffer has more data. If not, get more or break. |
| 2273 | if (PREDICT_TRUE (!bytes_left)) |
| 2274 | { |
| 2275 | if (PREDICT_FALSE |
| 2276 | (current_b0->flags & VLIB_BUFFER_NEXT_PRESENT)) |
| 2277 | { |
| 2278 | current_b0 = vlib_get_buffer (vm, current_b0->next_buffer); |
| 2279 | bytes_left = current_b0->current_length; |
| 2280 | } |
| 2281 | else |
| 2282 | { |
| 2283 | //End of packet |
| 2284 | break; |
| 2285 | } |
| 2286 | } |
| 2287 | } |
| 2288 | |
| 2289 | //Move from available to used ring |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 2290 | rxvq->used->ring[rxvq->last_used_idx & rxvq->qsz_mask].id = desc_head; |
| 2291 | rxvq->used->ring[rxvq->last_used_idx & rxvq->qsz_mask].len = desc_len; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2292 | vhost_user_log_dirty_ring (vui, rxvq, |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 2293 | ring[rxvq->last_used_idx & rxvq->qsz_mask]); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2294 | rxvq->last_avail_idx++; |
| 2295 | rxvq->last_used_idx++; |
| 2296 | |
| 2297 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 2298 | { |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2299 | vum->cpus[thread_index].current_trace->hdr = |
| 2300 | vum->cpus[thread_index].tx_headers[tx_headers_len - 1]; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2301 | } |
| 2302 | |
| 2303 | n_left--; //At the end for error counting when 'goto done' is invoked |
Steven | d772753 | 2017-06-09 18:49:17 -0700 | [diff] [blame] | 2304 | |
| 2305 | /* |
| 2306 | * Do the copy periodically to prevent |
| 2307 | * vum->cpus[thread_index].copy array overflow and corrupt memory |
| 2308 | */ |
| 2309 | if (PREDICT_FALSE (copy_len >= VHOST_USER_TX_COPY_THRESHOLD)) |
| 2310 | { |
| 2311 | if (PREDICT_FALSE |
| 2312 | (vhost_user_tx_copy (vui, vum->cpus[thread_index].copy, |
| 2313 | copy_len, &map_hint))) |
| 2314 | { |
| 2315 | vlib_error_count (vm, node->node_index, |
| 2316 | VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1); |
| 2317 | } |
| 2318 | copy_len = 0; |
| 2319 | |
| 2320 | /* give buffers back to driver */ |
| 2321 | CLIB_MEMORY_BARRIER (); |
| 2322 | rxvq->used->idx = rxvq->last_used_idx; |
| 2323 | vhost_user_log_dirty_ring (vui, rxvq, idx); |
| 2324 | } |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2325 | buffers++; |
| 2326 | } |
| 2327 | |
| 2328 | done: |
| 2329 | //Do the memory copies |
| 2330 | if (PREDICT_FALSE |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2331 | (vhost_user_tx_copy (vui, vum->cpus[thread_index].copy, |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2332 | copy_len, &map_hint))) |
| 2333 | { |
Steven | 95827e4 | 2017-05-18 21:22:00 -0700 | [diff] [blame] | 2334 | vlib_error_count (vm, node->node_index, |
| 2335 | VHOST_USER_TX_FUNC_ERROR_MMAP_FAIL, 1); |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2336 | } |
| 2337 | |
| 2338 | CLIB_MEMORY_BARRIER (); |
| 2339 | rxvq->used->idx = rxvq->last_used_idx; |
| 2340 | vhost_user_log_dirty_ring (vui, rxvq, idx); |
| 2341 | |
| 2342 | /* |
| 2343 | * When n_left is set, error is always set to something too. |
| 2344 | * In case error is due to lack of remaining buffers, we go back up and |
| 2345 | * retry. |
| 2346 | * The idea is that it is better to waste some time on packets |
| 2347 | * that have been processed already than dropping them and get |
| 2348 | * more fresh packets with a good likelyhood that they will be dropped too. |
| 2349 | * This technique also gives more time to VM driver to pick-up packets. |
| 2350 | * In case the traffic flows from physical to virtual interfaces, this |
| 2351 | * technique will end-up leveraging the physical NIC buffer in order to |
| 2352 | * absorb the VM's CPU jitter. |
| 2353 | */ |
| 2354 | if (n_left && (error == VHOST_USER_TX_FUNC_ERROR_PKT_DROP_NOBUF) && retry) |
| 2355 | { |
| 2356 | retry--; |
| 2357 | goto retry; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2358 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2359 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2360 | /* interrupt (call) handling */ |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 2361 | if ((rxvq->callfd_idx != ~0) && |
| 2362 | !(rxvq->avail->flags & VRING_AVAIL_F_NO_INTERRUPT)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2363 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 2364 | rxvq->n_since_last_int += frame->n_vectors - n_left; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2365 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2366 | if (rxvq->n_since_last_int > vum->coalesce_frames) |
| 2367 | vhost_user_send_call (vm, rxvq); |
| 2368 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2369 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 2370 | vhost_user_vring_unlock (vui, qid); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2371 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 2372 | done3: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2373 | if (PREDICT_FALSE (n_left && error != VHOST_USER_TX_FUNC_ERROR_NONE)) |
| 2374 | { |
| 2375 | vlib_error_count (vm, node->node_index, error, n_left); |
| 2376 | vlib_increment_simple_counter |
| 2377 | (vnet_main.interface_main.sw_if_counters |
| 2378 | + VNET_INTERFACE_COUNTER_DROP, |
Steven | d772753 | 2017-06-09 18:49:17 -0700 | [diff] [blame] | 2379 | thread_index, vui->sw_if_index, n_left); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2380 | } |
Pierre Pfister | 328e99b | 2016-02-12 13:18:42 +0000 | [diff] [blame] | 2381 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2382 | vlib_buffer_free (vm, vlib_frame_args (frame), frame->n_vectors); |
| 2383 | return frame->n_vectors; |
| 2384 | } |
| 2385 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2386 | static uword |
| 2387 | vhost_user_send_interrupt_process (vlib_main_t * vm, |
| 2388 | vlib_node_runtime_t * rt, vlib_frame_t * f) |
| 2389 | { |
| 2390 | vhost_user_intf_t *vui; |
| 2391 | f64 timeout = 3153600000.0 /* 100 years */ ; |
| 2392 | uword event_type, *event_data = 0; |
| 2393 | vhost_user_main_t *vum = &vhost_user_main; |
| 2394 | u16 *queue; |
| 2395 | f64 now, poll_time_remaining; |
| 2396 | f64 next_timeout; |
| 2397 | u8 stop_timer = 0; |
| 2398 | |
| 2399 | while (1) |
| 2400 | { |
| 2401 | poll_time_remaining = |
| 2402 | vlib_process_wait_for_event_or_clock (vm, timeout); |
| 2403 | event_type = vlib_process_get_events (vm, &event_data); |
| 2404 | vec_reset_length (event_data); |
| 2405 | |
| 2406 | /* |
| 2407 | * Use the remaining timeout if it is less than coalesce time to avoid |
| 2408 | * resetting the existing timer in the middle of expiration |
| 2409 | */ |
| 2410 | timeout = poll_time_remaining; |
| 2411 | if (vlib_process_suspend_time_is_zero (timeout) || |
| 2412 | (timeout > vum->coalesce_time)) |
| 2413 | timeout = vum->coalesce_time; |
| 2414 | |
| 2415 | now = vlib_time_now (vm); |
| 2416 | switch (event_type) |
| 2417 | { |
| 2418 | case VHOST_USER_EVENT_STOP_TIMER: |
| 2419 | stop_timer = 1; |
| 2420 | break; |
| 2421 | |
| 2422 | case VHOST_USER_EVENT_START_TIMER: |
| 2423 | stop_timer = 0; |
| 2424 | if (!vlib_process_suspend_time_is_zero (poll_time_remaining)) |
| 2425 | break; |
| 2426 | /* fall through */ |
| 2427 | |
| 2428 | case ~0: |
| 2429 | /* *INDENT-OFF* */ |
| 2430 | pool_foreach (vui, vum->vhost_user_interfaces, { |
| 2431 | next_timeout = timeout; |
| 2432 | vec_foreach (queue, vui->rx_queues) |
| 2433 | { |
| 2434 | vhost_user_vring_t *rxvq = |
| 2435 | &vui->vrings[VHOST_VRING_IDX_RX (*queue)]; |
| 2436 | vhost_user_vring_t *txvq = |
| 2437 | &vui->vrings[VHOST_VRING_IDX_TX (*queue)]; |
| 2438 | |
| 2439 | if (txvq->n_since_last_int) |
| 2440 | { |
| 2441 | if (now >= txvq->int_deadline) |
| 2442 | vhost_user_send_call (vm, txvq); |
| 2443 | else |
| 2444 | next_timeout = txvq->int_deadline - now; |
| 2445 | } |
| 2446 | |
| 2447 | if (rxvq->n_since_last_int) |
| 2448 | { |
| 2449 | if (now >= rxvq->int_deadline) |
| 2450 | vhost_user_send_call (vm, rxvq); |
| 2451 | else |
| 2452 | next_timeout = rxvq->int_deadline - now; |
| 2453 | } |
| 2454 | |
| 2455 | if ((next_timeout < timeout) && (next_timeout > 0.0)) |
| 2456 | timeout = next_timeout; |
| 2457 | } |
| 2458 | }); |
| 2459 | /* *INDENT-ON* */ |
| 2460 | break; |
| 2461 | |
| 2462 | default: |
| 2463 | clib_warning ("BUG: unhandled event type %d", event_type); |
| 2464 | break; |
| 2465 | } |
| 2466 | /* No less than 1 millisecond */ |
| 2467 | if (timeout < 1e-3) |
| 2468 | timeout = 1e-3; |
| 2469 | if (stop_timer) |
| 2470 | timeout = 3153600000.0; |
| 2471 | } |
| 2472 | return 0; |
| 2473 | } |
| 2474 | |
| 2475 | /* *INDENT-OFF* */ |
| 2476 | VLIB_REGISTER_NODE (vhost_user_send_interrupt_node,static) = { |
| 2477 | .function = vhost_user_send_interrupt_process, |
| 2478 | .type = VLIB_NODE_TYPE_PROCESS, |
| 2479 | .name = "vhost-user-send-interrupt-process", |
| 2480 | }; |
| 2481 | /* *INDENT-ON* */ |
| 2482 | |
| 2483 | static clib_error_t * |
| 2484 | vhost_user_interface_rx_mode_change (vnet_main_t * vnm, u32 hw_if_index, |
| 2485 | u32 qid, vnet_hw_interface_rx_mode mode) |
| 2486 | { |
| 2487 | vlib_main_t *vm = vnm->vlib_main; |
| 2488 | vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index); |
| 2489 | vhost_user_main_t *vum = &vhost_user_main; |
| 2490 | vhost_user_intf_t *vui = |
| 2491 | pool_elt_at_index (vum->vhost_user_interfaces, hif->dev_instance); |
| 2492 | vhost_user_vring_t *txvq = &vui->vrings[VHOST_VRING_IDX_TX (qid)]; |
| 2493 | |
| 2494 | if ((mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT) || |
| 2495 | (mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE)) |
| 2496 | { |
Steven | 49a04b9 | 2017-07-29 08:56:08 -0700 | [diff] [blame] | 2497 | if (txvq->kickfd_idx == ~0) |
| 2498 | { |
| 2499 | // We cannot support interrupt mode if the driver opts out |
| 2500 | return clib_error_return (0, "Driver does not support interrupt"); |
| 2501 | } |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2502 | if (txvq->mode == VNET_HW_INTERFACE_RX_MODE_POLLING) |
| 2503 | { |
| 2504 | vum->ifq_count++; |
| 2505 | // Start the timer if this is the first encounter on interrupt |
| 2506 | // interface/queue |
| 2507 | if ((vum->ifq_count == 1) && |
| 2508 | (vum->coalesce_time > 0.0) && (vum->coalesce_frames > 0)) |
| 2509 | vlib_process_signal_event (vm, |
| 2510 | vhost_user_send_interrupt_node.index, |
| 2511 | VHOST_USER_EVENT_START_TIMER, 0); |
| 2512 | } |
| 2513 | } |
| 2514 | else if (mode == VNET_HW_INTERFACE_RX_MODE_POLLING) |
| 2515 | { |
| 2516 | if (((txvq->mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT) || |
| 2517 | (txvq->mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE)) && |
| 2518 | vum->ifq_count) |
| 2519 | { |
| 2520 | vum->ifq_count--; |
| 2521 | // Stop the timer if there is no more interrupt interface/queue |
| 2522 | if ((vum->ifq_count == 0) && |
| 2523 | (vum->coalesce_time > 0.0) && (vum->coalesce_frames > 0)) |
| 2524 | vlib_process_signal_event (vm, |
| 2525 | vhost_user_send_interrupt_node.index, |
| 2526 | VHOST_USER_EVENT_STOP_TIMER, 0); |
| 2527 | } |
| 2528 | } |
| 2529 | |
| 2530 | txvq->mode = mode; |
| 2531 | if (mode == VNET_HW_INTERFACE_RX_MODE_POLLING) |
| 2532 | txvq->used->flags = VRING_USED_F_NO_NOTIFY; |
| 2533 | else if ((mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE) || |
| 2534 | (mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT)) |
| 2535 | txvq->used->flags = 0; |
| 2536 | else |
| 2537 | { |
| 2538 | clib_warning ("BUG: unhandled mode %d changed for if %d queue %d", mode, |
| 2539 | hw_if_index, qid); |
| 2540 | return clib_error_return (0, "unsupported"); |
| 2541 | } |
| 2542 | |
| 2543 | return 0; |
| 2544 | } |
| 2545 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2546 | static clib_error_t * |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2547 | vhost_user_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, |
| 2548 | u32 flags) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2549 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2550 | vnet_hw_interface_t *hif = vnet_get_hw_interface (vnm, hw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2551 | uword is_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2552 | vhost_user_main_t *vum = &vhost_user_main; |
| 2553 | vhost_user_intf_t *vui = |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2554 | pool_elt_at_index (vum->vhost_user_interfaces, hif->dev_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2555 | |
| 2556 | vui->admin_up = is_up; |
| 2557 | |
Yoann Desmouceaux | 35df2e1 | 2017-09-20 11:00:42 +0200 | [diff] [blame] | 2558 | if (is_up && vui->is_up) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2559 | vnet_hw_interface_set_flags (vnm, vui->hw_if_index, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2560 | VNET_HW_INTERFACE_FLAG_LINK_UP); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2561 | |
| 2562 | return /* no error */ 0; |
| 2563 | } |
| 2564 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2565 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2566 | VNET_DEVICE_CLASS (vhost_user_dev_class,static) = { |
| 2567 | .name = "vhost-user", |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2568 | .tx_function = vhost_user_tx, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2569 | .tx_function_n_errors = VHOST_USER_TX_FUNC_N_ERROR, |
| 2570 | .tx_function_error_strings = vhost_user_tx_func_error_strings, |
| 2571 | .format_device_name = format_vhost_user_interface_name, |
| 2572 | .name_renumber = vhost_user_name_renumber, |
| 2573 | .admin_up_down_function = vhost_user_interface_admin_up_down, |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2574 | .rx_mode_change_function = vhost_user_interface_rx_mode_change, |
Pierre Pfister | 116ea4b | 2016-11-08 15:49:28 +0000 | [diff] [blame] | 2575 | .format_tx_trace = format_vhost_trace, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2576 | }; |
| 2577 | |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 2578 | VLIB_DEVICE_TX_FUNCTION_MULTIARCH (vhost_user_dev_class, |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2579 | vhost_user_tx) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2580 | /* *INDENT-ON* */ |
Damjan Marion | 1c80e83 | 2016-05-11 23:07:18 +0200 | [diff] [blame] | 2581 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2582 | static uword |
| 2583 | vhost_user_process (vlib_main_t * vm, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2584 | vlib_node_runtime_t * rt, vlib_frame_t * f) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2585 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2586 | vhost_user_main_t *vum = &vhost_user_main; |
| 2587 | vhost_user_intf_t *vui; |
| 2588 | struct sockaddr_un sun; |
| 2589 | int sockfd; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 2590 | clib_file_t template = { 0 }; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2591 | f64 timeout = 3153600000.0 /* 100 years */ ; |
| 2592 | uword *event_data = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2593 | |
Steven | 0d150bb | 2017-03-22 12:05:19 -0700 | [diff] [blame] | 2594 | sockfd = -1; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2595 | sun.sun_family = AF_UNIX; |
| 2596 | template.read_function = vhost_user_socket_read; |
| 2597 | template.error_function = vhost_user_socket_error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2598 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2599 | while (1) |
| 2600 | { |
| 2601 | vlib_process_wait_for_event_or_clock (vm, timeout); |
| 2602 | vlib_process_get_events (vm, &event_data); |
| 2603 | vec_reset_length (event_data); |
| 2604 | |
| 2605 | timeout = 3.0; |
| 2606 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2607 | /* *INDENT-OFF* */ |
| 2608 | pool_foreach (vui, vum->vhost_user_interfaces, { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2609 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2610 | if (vui->unix_server_index == ~0) { //Nothing to do for server sockets |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 2611 | if (vui->clib_file_index == ~0) |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2612 | { |
Steven | 0d150bb | 2017-03-22 12:05:19 -0700 | [diff] [blame] | 2613 | if ((sockfd < 0) && |
| 2614 | ((sockfd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0)) |
| 2615 | { |
| 2616 | /* |
| 2617 | * 1st time error or new error for this interface, |
| 2618 | * spit out the message and record the error |
| 2619 | */ |
| 2620 | if (!vui->sock_errno || (vui->sock_errno != errno)) |
| 2621 | { |
| 2622 | clib_unix_warning |
| 2623 | ("Error: Could not open unix socket for %s", |
| 2624 | vui->sock_filename); |
| 2625 | vui->sock_errno = errno; |
| 2626 | } |
| 2627 | continue; |
| 2628 | } |
| 2629 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2630 | /* try to connect */ |
| 2631 | strncpy (sun.sun_path, (char *) vui->sock_filename, |
| 2632 | sizeof (sun.sun_path) - 1); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2633 | |
Andrew Yourtchenko | 0c3d467 | 2017-01-03 16:52:22 +0000 | [diff] [blame] | 2634 | /* Avoid hanging VPP if the other end does not accept */ |
Dave Barach | 8f54496 | 2017-01-18 10:23:22 -0500 | [diff] [blame] | 2635 | if (fcntl(sockfd, F_SETFL, O_NONBLOCK) < 0) |
| 2636 | clib_unix_warning ("fcntl"); |
| 2637 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2638 | if (connect (sockfd, (struct sockaddr *) &sun, |
| 2639 | sizeof (struct sockaddr_un)) == 0) |
| 2640 | { |
Andrew Yourtchenko | 0c3d467 | 2017-01-03 16:52:22 +0000 | [diff] [blame] | 2641 | /* Set the socket to blocking as it was before */ |
Dave Barach | 8f54496 | 2017-01-18 10:23:22 -0500 | [diff] [blame] | 2642 | if (fcntl(sockfd, F_SETFL, 0) < 0) |
| 2643 | clib_unix_warning ("fcntl2"); |
| 2644 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2645 | vui->sock_errno = 0; |
| 2646 | template.file_descriptor = sockfd; |
| 2647 | template.private_data = |
| 2648 | vui - vhost_user_main.vhost_user_interfaces; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 2649 | vui->clib_file_index = clib_file_add (&file_main, &template); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2650 | |
Steven | 0d150bb | 2017-03-22 12:05:19 -0700 | [diff] [blame] | 2651 | /* This sockfd is considered consumed */ |
| 2652 | sockfd = -1; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2653 | } |
| 2654 | else |
| 2655 | { |
| 2656 | vui->sock_errno = errno; |
| 2657 | } |
| 2658 | } |
| 2659 | else |
| 2660 | { |
| 2661 | /* check if socket is alive */ |
| 2662 | int error = 0; |
| 2663 | socklen_t len = sizeof (error); |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 2664 | int fd = UNIX_GET_FD(vui->clib_file_index); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2665 | int retval = |
| 2666 | getsockopt (fd, SOL_SOCKET, SO_ERROR, &error, &len); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2667 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2668 | if (retval) |
| 2669 | { |
| 2670 | DBG_SOCK ("getsockopt returned %d", retval); |
| 2671 | vhost_user_if_disconnect (vui); |
| 2672 | } |
| 2673 | } |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2674 | } |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2675 | }); |
| 2676 | /* *INDENT-ON* */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2677 | } |
| 2678 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2679 | } |
| 2680 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2681 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2682 | VLIB_REGISTER_NODE (vhost_user_process_node,static) = { |
| 2683 | .function = vhost_user_process, |
| 2684 | .type = VLIB_NODE_TYPE_PROCESS, |
| 2685 | .name = "vhost-user-process", |
| 2686 | }; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2687 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2688 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2689 | /** |
| 2690 | * Disables and reset interface structure. |
| 2691 | * It can then be either init again, or removed from used interfaces. |
| 2692 | */ |
| 2693 | static void |
| 2694 | vhost_user_term_if (vhost_user_intf_t * vui) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2695 | { |
Ole Troan | 553a411 | 2017-01-10 10:07:04 +0100 | [diff] [blame] | 2696 | int q; |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 2697 | vhost_user_main_t *vum = &vhost_user_main; |
Ole Troan | 553a411 | 2017-01-10 10:07:04 +0100 | [diff] [blame] | 2698 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2699 | // disconnect interface sockets |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2700 | vhost_user_if_disconnect (vui); |
Pierre Pfister | fbb2ef6 | 2016-11-16 02:43:29 +0000 | [diff] [blame] | 2701 | vhost_user_update_iface_state (vui); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2702 | |
Ole Troan | 553a411 | 2017-01-10 10:07:04 +0100 | [diff] [blame] | 2703 | for (q = 0; q < VHOST_VRING_MAX_N; q++) |
| 2704 | { |
| 2705 | clib_mem_free ((void *) vui->vring_locks[q]); |
| 2706 | } |
| 2707 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2708 | if (vui->unix_server_index != ~0) |
| 2709 | { |
| 2710 | //Close server socket |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 2711 | clib_file_t *uf = pool_elt_at_index (file_main.file_pool, |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2712 | vui->unix_server_index); |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 2713 | clib_file_del (&file_main, uf); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2714 | vui->unix_server_index = ~0; |
Steven | 5312942 | 2017-04-21 13:31:50 -0700 | [diff] [blame] | 2715 | unlink (vui->sock_filename); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2716 | } |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 2717 | |
| 2718 | mhash_unset (&vum->if_index_by_sock_name, vui->sock_filename, |
| 2719 | &vui->if_index); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2720 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2721 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2722 | int |
| 2723 | vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm, u32 sw_if_index) |
| 2724 | { |
| 2725 | vhost_user_main_t *vum = &vhost_user_main; |
| 2726 | vhost_user_intf_t *vui; |
| 2727 | int rv = 0; |
| 2728 | vnet_hw_interface_t *hwif; |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2729 | u16 *queue; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2730 | |
| 2731 | if (!(hwif = vnet_get_sup_hw_interface (vnm, sw_if_index)) || |
| 2732 | hwif->dev_class_index != vhost_user_dev_class.index) |
| 2733 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 2734 | |
| 2735 | DBG_SOCK ("Deleting vhost-user interface %s (instance %d)", |
| 2736 | hwif->name, hwif->dev_instance); |
| 2737 | |
| 2738 | vui = pool_elt_at_index (vum->vhost_user_interfaces, hwif->dev_instance); |
| 2739 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2740 | vec_foreach (queue, vui->rx_queues) |
| 2741 | { |
| 2742 | vhost_user_vring_t *txvq; |
| 2743 | |
| 2744 | txvq = &vui->vrings[VHOST_VRING_IDX_TX (*queue)]; |
| 2745 | if ((vum->ifq_count > 0) && |
| 2746 | ((txvq->mode == VNET_HW_INTERFACE_RX_MODE_INTERRUPT) || |
| 2747 | (txvq->mode == VNET_HW_INTERFACE_RX_MODE_ADAPTIVE))) |
| 2748 | { |
| 2749 | vum->ifq_count--; |
| 2750 | // Stop the timer if there is no more interrupt interface/queue |
| 2751 | if ((vum->ifq_count == 0) && |
| 2752 | (vum->coalesce_time > 0.0) && (vum->coalesce_frames > 0)) |
| 2753 | { |
| 2754 | vlib_process_signal_event (vm, |
| 2755 | vhost_user_send_interrupt_node.index, |
| 2756 | VHOST_USER_EVENT_STOP_TIMER, 0); |
| 2757 | break; |
| 2758 | } |
| 2759 | } |
| 2760 | } |
| 2761 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2762 | // Disable and reset interface |
| 2763 | vhost_user_term_if (vui); |
| 2764 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2765 | // Reset renumbered iface |
| 2766 | if (hwif->dev_instance < |
| 2767 | vec_len (vum->show_dev_instance_by_real_dev_instance)) |
| 2768 | vum->show_dev_instance_by_real_dev_instance[hwif->dev_instance] = ~0; |
| 2769 | |
| 2770 | // Delete ethernet interface |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2771 | ethernet_delete_interface (vnm, vui->hw_if_index); |
Wojciech Dec | d8e4787 | 2017-01-17 21:45:11 +0100 | [diff] [blame] | 2772 | |
| 2773 | // Back to pool |
| 2774 | pool_put (vum->vhost_user_interfaces, vui); |
| 2775 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2776 | return rv; |
| 2777 | } |
| 2778 | |
Steven | 5312942 | 2017-04-21 13:31:50 -0700 | [diff] [blame] | 2779 | static clib_error_t * |
| 2780 | vhost_user_exit (vlib_main_t * vm) |
| 2781 | { |
| 2782 | vnet_main_t *vnm = vnet_get_main (); |
| 2783 | vhost_user_main_t *vum = &vhost_user_main; |
| 2784 | vhost_user_intf_t *vui; |
| 2785 | |
Steven | 4174886 | 2017-04-25 13:49:51 -0700 | [diff] [blame] | 2786 | vlib_worker_thread_barrier_sync (vlib_get_main ()); |
Steven | 5312942 | 2017-04-21 13:31:50 -0700 | [diff] [blame] | 2787 | /* *INDENT-OFF* */ |
| 2788 | pool_foreach (vui, vum->vhost_user_interfaces, { |
| 2789 | vhost_user_delete_if (vnm, vm, vui->sw_if_index); |
| 2790 | }); |
| 2791 | /* *INDENT-ON* */ |
Steven | 4174886 | 2017-04-25 13:49:51 -0700 | [diff] [blame] | 2792 | vlib_worker_thread_barrier_release (vlib_get_main ()); |
Steven | 5312942 | 2017-04-21 13:31:50 -0700 | [diff] [blame] | 2793 | return 0; |
| 2794 | } |
| 2795 | |
| 2796 | VLIB_MAIN_LOOP_EXIT_FUNCTION (vhost_user_exit); |
| 2797 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2798 | /** |
| 2799 | * Open server unix socket on specified sock_filename. |
| 2800 | */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2801 | static int |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2802 | vhost_user_init_server_sock (const char *sock_filename, int *sock_fd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2803 | { |
Pierre Pfister | 5afccb2 | 2016-07-25 14:32:02 +0100 | [diff] [blame] | 2804 | int rv = 0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2805 | struct sockaddr_un un = { }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2806 | int fd; |
| 2807 | /* create listening socket */ |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2808 | if ((fd = socket (AF_UNIX, SOCK_STREAM, 0)) < 0) |
| 2809 | return VNET_API_ERROR_SYSCALL_ERROR_1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2810 | |
| 2811 | un.sun_family = AF_UNIX; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2812 | strncpy ((char *) un.sun_path, (char *) sock_filename, |
| 2813 | sizeof (un.sun_path) - 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2814 | |
| 2815 | /* remove if exists */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2816 | unlink ((char *) sock_filename); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2817 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2818 | if (bind (fd, (struct sockaddr *) &un, sizeof (un)) == -1) |
| 2819 | { |
| 2820 | rv = VNET_API_ERROR_SYSCALL_ERROR_2; |
| 2821 | goto error; |
| 2822 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2823 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2824 | if (listen (fd, 1) == -1) |
| 2825 | { |
| 2826 | rv = VNET_API_ERROR_SYSCALL_ERROR_3; |
| 2827 | goto error; |
| 2828 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2829 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2830 | *sock_fd = fd; |
| 2831 | return 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2832 | |
| 2833 | error: |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2834 | close (fd); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2835 | return rv; |
| 2836 | } |
| 2837 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2838 | /** |
| 2839 | * Create ethernet interface for vhost user interface. |
| 2840 | */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2841 | static void |
| 2842 | vhost_user_create_ethernet (vnet_main_t * vnm, vlib_main_t * vm, |
| 2843 | vhost_user_intf_t * vui, u8 * hwaddress) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2844 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2845 | vhost_user_main_t *vum = &vhost_user_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2846 | u8 hwaddr[6]; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2847 | clib_error_t *error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2848 | |
| 2849 | /* create hw and sw interface */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2850 | if (hwaddress) |
| 2851 | { |
| 2852 | clib_memcpy (hwaddr, hwaddress, 6); |
| 2853 | } |
| 2854 | else |
| 2855 | { |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2856 | random_u32 (&vum->random); |
| 2857 | clib_memcpy (hwaddr + 2, &vum->random, sizeof (vum->random)); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2858 | hwaddr[0] = 2; |
| 2859 | hwaddr[1] = 0xfe; |
| 2860 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2861 | |
| 2862 | error = ethernet_register_interface |
| 2863 | (vnm, |
| 2864 | vhost_user_dev_class.index, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2865 | vui - vum->vhost_user_interfaces /* device instance */ , |
| 2866 | hwaddr /* ethernet address */ , |
| 2867 | &vui->hw_if_index, 0 /* flag change */ ); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2868 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2869 | if (error) |
| 2870 | clib_error_report (error); |
Pierre Pfister | 328e99b | 2016-02-12 13:18:42 +0000 | [diff] [blame] | 2871 | |
| 2872 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, vui->hw_if_index); |
| 2873 | hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] = 9000; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2874 | } |
| 2875 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2876 | /* |
| 2877 | * Initialize vui with specified attributes |
| 2878 | */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2879 | static void |
| 2880 | vhost_user_vui_init (vnet_main_t * vnm, |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2881 | vhost_user_intf_t * vui, |
| 2882 | int server_sock_fd, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2883 | const char *sock_filename, |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2884 | u64 feature_mask, u32 * sw_if_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2885 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2886 | vnet_sw_interface_t *sw; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 2887 | int q; |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 2888 | vhost_user_main_t *vum = &vhost_user_main; |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2889 | vnet_hw_interface_t *hw; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2890 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2891 | hw = vnet_get_hw_interface (vnm, vui->hw_if_index); |
| 2892 | sw = vnet_get_hw_sw_interface (vnm, vui->hw_if_index); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2893 | if (server_sock_fd != -1) |
| 2894 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 2895 | clib_file_t template = { 0 }; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2896 | template.read_function = vhost_user_socksvr_accept_ready; |
| 2897 | template.file_descriptor = server_sock_fd; |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 2898 | template.private_data = vui - vum->vhost_user_interfaces; //hw index |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 2899 | vui->unix_server_index = clib_file_add (&file_main, &template); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2900 | } |
| 2901 | else |
| 2902 | { |
| 2903 | vui->unix_server_index = ~0; |
| 2904 | } |
| 2905 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2906 | vui->sw_if_index = sw->sw_if_index; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2907 | strncpy (vui->sock_filename, sock_filename, |
| 2908 | ARRAY_LEN (vui->sock_filename) - 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2909 | vui->sock_errno = 0; |
| 2910 | vui->is_up = 0; |
| 2911 | vui->feature_mask = feature_mask; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 2912 | vui->clib_file_index = ~0; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 2913 | vui->log_base_addr = 0; |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 2914 | vui->if_index = vui - vum->vhost_user_interfaces; |
| 2915 | mhash_set_mem (&vum->if_index_by_sock_name, vui->sock_filename, |
| 2916 | &vui->if_index, 0); |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 2917 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 2918 | for (q = 0; q < VHOST_VRING_MAX_N; q++) |
| 2919 | vhost_user_vring_init (vui, q); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2920 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2921 | hw->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2922 | vnet_hw_interface_set_flags (vnm, vui->hw_if_index, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2923 | |
| 2924 | if (sw_if_index) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2925 | *sw_if_index = vui->sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2926 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 2927 | for (q = 0; q < VHOST_VRING_MAX_N; q++) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2928 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 2929 | vui->vring_locks[q] = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES, |
| 2930 | CLIB_CACHE_LINE_BYTES); |
| 2931 | memset ((void *) vui->vring_locks[q], 0, CLIB_CACHE_LINE_BYTES); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2932 | } |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 2933 | |
| 2934 | vec_validate (vui->per_cpu_tx_qid, |
| 2935 | vlib_get_thread_main ()->n_vlib_mains - 1); |
| 2936 | vhost_user_tx_thread_placement (vui); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2937 | } |
| 2938 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2939 | int |
| 2940 | vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm, |
| 2941 | const char *sock_filename, |
| 2942 | u8 is_server, |
| 2943 | u32 * sw_if_index, |
| 2944 | u64 feature_mask, |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2945 | u8 renumber, u32 custom_dev_instance, u8 * hwaddr) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2946 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2947 | vhost_user_intf_t *vui = NULL; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2948 | u32 sw_if_idx = ~0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2949 | int rv = 0; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2950 | int server_sock_fd = -1; |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 2951 | vhost_user_main_t *vum = &vhost_user_main; |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 2952 | uword *if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2953 | |
Wojciech Dec | 3cd9eed | 2017-01-03 10:38:37 +0100 | [diff] [blame] | 2954 | if (sock_filename == NULL || !(strlen (sock_filename) > 0)) |
| 2955 | { |
| 2956 | return VNET_API_ERROR_INVALID_ARGUMENT; |
| 2957 | } |
| 2958 | |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 2959 | if_index = mhash_get (&vum->if_index_by_sock_name, (void *) sock_filename); |
| 2960 | if (if_index) |
| 2961 | { |
| 2962 | if (sw_if_index) |
| 2963 | { |
| 2964 | vui = &vum->vhost_user_interfaces[*if_index]; |
| 2965 | *sw_if_index = vui->sw_if_index; |
| 2966 | } |
| 2967 | return VNET_API_ERROR_IF_ALREADY_EXISTS; |
| 2968 | } |
| 2969 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2970 | if (is_server) |
| 2971 | { |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2972 | if ((rv = |
| 2973 | vhost_user_init_server_sock (sock_filename, &server_sock_fd)) != 0) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2974 | { |
| 2975 | return rv; |
| 2976 | } |
| 2977 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2978 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2979 | pool_get (vhost_user_main.vhost_user_interfaces, vui); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2980 | |
Pierre Pfister | ef65cb0 | 2016-02-19 13:52:44 +0000 | [diff] [blame] | 2981 | vhost_user_create_ethernet (vnm, vm, vui, hwaddr); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2982 | vhost_user_vui_init (vnm, vui, server_sock_fd, sock_filename, |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 2983 | feature_mask, &sw_if_idx); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2984 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2985 | if (renumber) |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2986 | vnet_interface_name_renumber (sw_if_idx, custom_dev_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2987 | |
| 2988 | if (sw_if_index) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2989 | *sw_if_index = sw_if_idx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2990 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 2991 | // Process node must connect |
| 2992 | vlib_process_signal_event (vm, vhost_user_process_node.index, 0, 0); |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 2993 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 2994 | return rv; |
| 2995 | } |
| 2996 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 2997 | int |
| 2998 | vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm, |
| 2999 | const char *sock_filename, |
| 3000 | u8 is_server, |
| 3001 | u32 sw_if_index, |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 3002 | u64 feature_mask, u8 renumber, u32 custom_dev_instance) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3003 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3004 | vhost_user_main_t *vum = &vhost_user_main; |
| 3005 | vhost_user_intf_t *vui = NULL; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3006 | u32 sw_if_idx = ~0; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3007 | int server_sock_fd = -1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3008 | int rv = 0; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3009 | vnet_hw_interface_t *hwif; |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 3010 | uword *if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3011 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3012 | if (!(hwif = vnet_get_sup_hw_interface (vnm, sw_if_index)) || |
| 3013 | hwif->dev_class_index != vhost_user_dev_class.index) |
| 3014 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3015 | |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 3016 | if (sock_filename == NULL || !(strlen (sock_filename) > 0)) |
| 3017 | return VNET_API_ERROR_INVALID_ARGUMENT; |
| 3018 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3019 | vui = vec_elt_at_index (vum->vhost_user_interfaces, hwif->dev_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3020 | |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 3021 | /* |
| 3022 | * Disallow changing the interface to have the same path name |
| 3023 | * as other interface |
| 3024 | */ |
| 3025 | if_index = mhash_get (&vum->if_index_by_sock_name, (void *) sock_filename); |
| 3026 | if (if_index && (*if_index != vui->if_index)) |
| 3027 | return VNET_API_ERROR_IF_ALREADY_EXISTS; |
| 3028 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3029 | // First try to open server socket |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3030 | if (is_server) |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3031 | if ((rv = vhost_user_init_server_sock (sock_filename, |
| 3032 | &server_sock_fd)) != 0) |
| 3033 | return rv; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3034 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3035 | vhost_user_term_if (vui); |
| 3036 | vhost_user_vui_init (vnm, vui, server_sock_fd, |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 3037 | sock_filename, feature_mask, &sw_if_idx); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3038 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3039 | if (renumber) |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3040 | vnet_interface_name_renumber (sw_if_idx, custom_dev_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3041 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3042 | // Process node must connect |
| 3043 | vlib_process_signal_event (vm, vhost_user_process_node.index, 0, 0); |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 3044 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3045 | return rv; |
| 3046 | } |
| 3047 | |
| 3048 | clib_error_t * |
| 3049 | vhost_user_connect_command_fn (vlib_main_t * vm, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3050 | unformat_input_t * input, |
| 3051 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3052 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3053 | unformat_input_t _line_input, *line_input = &_line_input; |
| 3054 | u8 *sock_filename = NULL; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3055 | u32 sw_if_index; |
| 3056 | u8 is_server = 0; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3057 | u64 feature_mask = (u64) ~ (0ULL); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3058 | u8 renumber = 0; |
| 3059 | u32 custom_dev_instance = ~0; |
Pierre Pfister | ef65cb0 | 2016-02-19 13:52:44 +0000 | [diff] [blame] | 3060 | u8 hwaddr[6]; |
| 3061 | u8 *hw = NULL; |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 3062 | clib_error_t *error = NULL; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3063 | |
| 3064 | /* Get a line of input. */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3065 | if (!unformat_user (input, unformat_line_input, line_input)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3066 | return 0; |
| 3067 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3068 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 3069 | { |
| 3070 | if (unformat (line_input, "socket %s", &sock_filename)) |
| 3071 | ; |
| 3072 | else if (unformat (line_input, "server")) |
| 3073 | is_server = 1; |
| 3074 | else if (unformat (line_input, "feature-mask 0x%llx", &feature_mask)) |
| 3075 | ; |
| 3076 | else |
| 3077 | if (unformat |
| 3078 | (line_input, "hwaddr %U", unformat_ethernet_address, hwaddr)) |
| 3079 | hw = hwaddr; |
| 3080 | else if (unformat (line_input, "renumber %d", &custom_dev_instance)) |
| 3081 | { |
| 3082 | renumber = 1; |
| 3083 | } |
| 3084 | else |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 3085 | { |
| 3086 | error = clib_error_return (0, "unknown input `%U'", |
| 3087 | format_unformat_error, line_input); |
| 3088 | goto done; |
| 3089 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3090 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3091 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3092 | vnet_main_t *vnm = vnet_get_main (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3093 | |
Pierre Pfister | 5afccb2 | 2016-07-25 14:32:02 +0100 | [diff] [blame] | 3094 | int rv; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3095 | if ((rv = vhost_user_create_if (vnm, vm, (char *) sock_filename, |
| 3096 | is_server, &sw_if_index, feature_mask, |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 3097 | renumber, custom_dev_instance, hw))) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3098 | { |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 3099 | error = clib_error_return (0, "vhost_user_create_if returned %d", rv); |
| 3100 | goto done; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3101 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3102 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3103 | vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (), |
| 3104 | sw_if_index); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 3105 | |
| 3106 | done: |
| 3107 | vec_free (sock_filename); |
| 3108 | unformat_free (line_input); |
| 3109 | |
| 3110 | return error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3111 | } |
| 3112 | |
| 3113 | clib_error_t * |
| 3114 | vhost_user_delete_command_fn (vlib_main_t * vm, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3115 | unformat_input_t * input, |
| 3116 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3117 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3118 | unformat_input_t _line_input, *line_input = &_line_input; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3119 | u32 sw_if_index = ~0; |
Pierre Pfister | ece983d | 2016-11-21 12:52:22 +0000 | [diff] [blame] | 3120 | vnet_main_t *vnm = vnet_get_main (); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 3121 | clib_error_t *error = NULL; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3122 | |
| 3123 | /* Get a line of input. */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3124 | if (!unformat_user (input, unformat_line_input, line_input)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3125 | return 0; |
| 3126 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3127 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 3128 | { |
| 3129 | if (unformat (line_input, "sw_if_index %d", &sw_if_index)) |
| 3130 | ; |
Pierre Pfister | ece983d | 2016-11-21 12:52:22 +0000 | [diff] [blame] | 3131 | else if (unformat |
| 3132 | (line_input, "%U", unformat_vnet_sw_interface, vnm, |
| 3133 | &sw_if_index)) |
| 3134 | { |
| 3135 | vnet_hw_interface_t *hwif = |
| 3136 | vnet_get_sup_hw_interface (vnm, sw_if_index); |
| 3137 | if (hwif == NULL || |
| 3138 | vhost_user_dev_class.index != hwif->dev_class_index) |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 3139 | { |
| 3140 | error = clib_error_return (0, "Not a vhost interface"); |
| 3141 | goto done; |
| 3142 | } |
Pierre Pfister | ece983d | 2016-11-21 12:52:22 +0000 | [diff] [blame] | 3143 | } |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3144 | else |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 3145 | { |
| 3146 | error = clib_error_return (0, "unknown input `%U'", |
| 3147 | format_unformat_error, line_input); |
| 3148 | goto done; |
| 3149 | } |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3150 | } |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 3151 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3152 | vhost_user_delete_if (vnm, vm, sw_if_index); |
Billy McFall | a9a20e7 | 2017-02-15 11:39:12 -0500 | [diff] [blame] | 3153 | |
| 3154 | done: |
| 3155 | unformat_free (line_input); |
| 3156 | |
| 3157 | return error; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3158 | } |
| 3159 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3160 | int |
| 3161 | vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm, |
| 3162 | vhost_user_intf_details_t ** out_vuids) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3163 | { |
| 3164 | int rv = 0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3165 | vhost_user_main_t *vum = &vhost_user_main; |
| 3166 | vhost_user_intf_t *vui; |
| 3167 | vhost_user_intf_details_t *r_vuids = NULL; |
| 3168 | vhost_user_intf_details_t *vuid = NULL; |
| 3169 | u32 *hw_if_indices = 0; |
| 3170 | vnet_hw_interface_t *hi; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3171 | u8 *s = NULL; |
| 3172 | int i; |
| 3173 | |
| 3174 | if (!out_vuids) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3175 | return -1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3176 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3177 | pool_foreach (vui, vum->vhost_user_interfaces, |
| 3178 | vec_add1 (hw_if_indices, vui->hw_if_index); |
| 3179 | ); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3180 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3181 | for (i = 0; i < vec_len (hw_if_indices); i++) |
| 3182 | { |
| 3183 | hi = vnet_get_hw_interface (vnm, hw_if_indices[i]); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3184 | vui = pool_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3185 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3186 | vec_add2 (r_vuids, vuid, 1); |
| 3187 | vuid->sw_if_index = vui->sw_if_index; |
| 3188 | vuid->virtio_net_hdr_sz = vui->virtio_net_hdr_sz; |
| 3189 | vuid->features = vui->features; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3190 | vuid->num_regions = vui->nregions; |
Marek Gradzki | 0578cd1 | 2017-02-13 14:19:51 +0100 | [diff] [blame] | 3191 | vuid->is_server = vui->unix_server_index != ~0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3192 | vuid->sock_errno = vui->sock_errno; |
| 3193 | strncpy ((char *) vuid->sock_filename, (char *) vui->sock_filename, |
| 3194 | ARRAY_LEN (vuid->sock_filename) - 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3195 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3196 | s = format (s, "%v%c", hi->name, 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3197 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3198 | strncpy ((char *) vuid->if_name, (char *) s, |
| 3199 | ARRAY_LEN (vuid->if_name) - 1); |
| 3200 | _vec_len (s) = 0; |
| 3201 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3202 | |
| 3203 | vec_free (s); |
| 3204 | vec_free (hw_if_indices); |
| 3205 | |
| 3206 | *out_vuids = r_vuids; |
| 3207 | |
| 3208 | return rv; |
| 3209 | } |
| 3210 | |
| 3211 | clib_error_t * |
| 3212 | show_vhost_user_command_fn (vlib_main_t * vm, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3213 | unformat_input_t * input, |
| 3214 | vlib_cli_command_t * cmd) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3215 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3216 | clib_error_t *error = 0; |
| 3217 | vnet_main_t *vnm = vnet_get_main (); |
| 3218 | vhost_user_main_t *vum = &vhost_user_main; |
| 3219 | vhost_user_intf_t *vui; |
| 3220 | u32 hw_if_index, *hw_if_indices = 0; |
| 3221 | vnet_hw_interface_t *hi; |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 3222 | u16 *queue; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3223 | u32 ci; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3224 | int i, j, q; |
| 3225 | int show_descr = 0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3226 | struct feat_struct |
| 3227 | { |
| 3228 | u8 bit; |
| 3229 | char *str; |
| 3230 | }; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3231 | struct feat_struct *feat_entry; |
| 3232 | |
| 3233 | static struct feat_struct feat_array[] = { |
| 3234 | #define _(s,b) { .str = #s, .bit = b, }, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3235 | foreach_virtio_net_feature |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3236 | #undef _ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3237 | {.str = NULL} |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3238 | }; |
| 3239 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3240 | #define foreach_protocol_feature \ |
| 3241 | _(VHOST_USER_PROTOCOL_F_MQ) \ |
| 3242 | _(VHOST_USER_PROTOCOL_F_LOG_SHMFD) |
| 3243 | |
| 3244 | static struct feat_struct proto_feat_array[] = { |
| 3245 | #define _(s) { .str = #s, .bit = s}, |
| 3246 | foreach_protocol_feature |
| 3247 | #undef _ |
| 3248 | {.str = NULL} |
| 3249 | }; |
| 3250 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3251 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 3252 | { |
| 3253 | if (unformat |
| 3254 | (input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) |
| 3255 | { |
| 3256 | vec_add1 (hw_if_indices, hw_if_index); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3257 | } |
| 3258 | else if (unformat (input, "descriptors") || unformat (input, "desc")) |
| 3259 | show_descr = 1; |
| 3260 | else |
| 3261 | { |
| 3262 | error = clib_error_return (0, "unknown input `%U'", |
| 3263 | format_unformat_error, input); |
| 3264 | goto done; |
| 3265 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3266 | } |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3267 | if (vec_len (hw_if_indices) == 0) |
| 3268 | { |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3269 | pool_foreach (vui, vum->vhost_user_interfaces, |
| 3270 | vec_add1 (hw_if_indices, vui->hw_if_index); |
| 3271 | ); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3272 | } |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3273 | vlib_cli_output (vm, "Virtio vhost-user interfaces"); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3274 | vlib_cli_output (vm, "Global:\n coalesce frames %d time %e", |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3275 | vum->coalesce_frames, vum->coalesce_time); |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 3276 | vlib_cli_output (vm, " number of rx virtqueues in interrupt mode: %d", |
| 3277 | vum->ifq_count); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3278 | |
| 3279 | for (i = 0; i < vec_len (hw_if_indices); i++) |
| 3280 | { |
| 3281 | hi = vnet_get_hw_interface (vnm, hw_if_indices[i]); |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3282 | vui = pool_elt_at_index (vum->vhost_user_interfaces, hi->dev_instance); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3283 | vlib_cli_output (vm, "Interface: %s (ifindex %d)", |
| 3284 | hi->name, hw_if_indices[i]); |
| 3285 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3286 | vlib_cli_output (vm, "virtio_net_hdr_sz %d\n" |
| 3287 | " features mask (0x%llx): \n" |
| 3288 | " features (0x%llx): \n", |
| 3289 | vui->virtio_net_hdr_sz, vui->feature_mask, |
| 3290 | vui->features); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3291 | |
| 3292 | feat_entry = (struct feat_struct *) &feat_array; |
| 3293 | while (feat_entry->str) |
| 3294 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3295 | if (vui->features & (1ULL << feat_entry->bit)) |
| 3296 | vlib_cli_output (vm, " %s (%d)", feat_entry->str, |
| 3297 | feat_entry->bit); |
| 3298 | feat_entry++; |
| 3299 | } |
| 3300 | |
| 3301 | vlib_cli_output (vm, " protocol features (0x%llx)", |
| 3302 | vui->protocol_features); |
| 3303 | feat_entry = (struct feat_struct *) &proto_feat_array; |
| 3304 | while (feat_entry->str) |
| 3305 | { |
| 3306 | if (vui->protocol_features & (1ULL << feat_entry->bit)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3307 | vlib_cli_output (vm, " %s (%d)", feat_entry->str, |
| 3308 | feat_entry->bit); |
| 3309 | feat_entry++; |
| 3310 | } |
| 3311 | |
| 3312 | vlib_cli_output (vm, "\n"); |
| 3313 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3314 | vlib_cli_output (vm, " socket filename %s type %s errno \"%s\"\n\n", |
| 3315 | vui->sock_filename, |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3316 | (vui->unix_server_index != ~0) ? "server" : "client", |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3317 | strerror (vui->sock_errno)); |
| 3318 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3319 | vlib_cli_output (vm, " rx placement: "); |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 3320 | |
| 3321 | vec_foreach (queue, vui->rx_queues) |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3322 | { |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 3323 | vnet_main_t *vnm = vnet_get_main (); |
| 3324 | uword thread_index; |
| 3325 | vnet_hw_interface_rx_mode mode; |
| 3326 | |
| 3327 | thread_index = vnet_get_device_input_thread_index (vnm, |
| 3328 | vui->hw_if_index, |
| 3329 | *queue); |
| 3330 | vnet_hw_interface_get_rx_mode (vnm, vui->hw_if_index, *queue, &mode); |
| 3331 | vlib_cli_output (vm, " thread %d on vring %d, %U\n", |
| 3332 | thread_index, VHOST_VRING_IDX_TX (*queue), |
| 3333 | format_vnet_hw_interface_rx_mode, mode); |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3334 | } |
| 3335 | |
| 3336 | vlib_cli_output (vm, " tx placement: %s\n", |
| 3337 | vui->use_tx_spinlock ? "spin-lock" : "lock-free"); |
| 3338 | |
| 3339 | vec_foreach_index (ci, vui->per_cpu_tx_qid) |
| 3340 | { |
| 3341 | vlib_cli_output (vm, " thread %d on vring %d\n", ci, |
| 3342 | VHOST_VRING_IDX_RX (vui->per_cpu_tx_qid[ci])); |
| 3343 | } |
| 3344 | |
| 3345 | vlib_cli_output (vm, "\n"); |
| 3346 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3347 | vlib_cli_output (vm, " Memory regions (total %d)\n", vui->nregions); |
| 3348 | |
| 3349 | if (vui->nregions) |
| 3350 | { |
| 3351 | vlib_cli_output (vm, |
| 3352 | " region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr\n"); |
| 3353 | vlib_cli_output (vm, |
| 3354 | " ====== ===== ================== ================== ================== ================== ==================\n"); |
| 3355 | } |
| 3356 | for (j = 0; j < vui->nregions; j++) |
| 3357 | { |
| 3358 | vlib_cli_output (vm, |
| 3359 | " %d %-5d 0x%016lx 0x%016lx 0x%016lx 0x%016lx 0x%016lx\n", |
| 3360 | j, vui->region_mmap_fd[j], |
| 3361 | vui->regions[j].guest_phys_addr, |
| 3362 | vui->regions[j].memory_size, |
| 3363 | vui->regions[j].userspace_addr, |
| 3364 | vui->regions[j].mmap_offset, |
| 3365 | pointer_to_uword (vui->region_mmap_addr[j])); |
| 3366 | } |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3367 | for (q = 0; q < VHOST_VRING_MAX_N; q++) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3368 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 3369 | if (!vui->vrings[q].started) |
| 3370 | continue; |
| 3371 | |
| 3372 | vlib_cli_output (vm, "\n Virtqueue %d (%s%s)\n", q, |
| 3373 | (q & 1) ? "RX" : "TX", |
| 3374 | vui->vrings[q].enabled ? "" : " disabled"); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3375 | |
| 3376 | vlib_cli_output (vm, |
| 3377 | " qsz %d last_avail_idx %d last_used_idx %d\n", |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 3378 | vui->vrings[q].qsz_mask + 1, |
| 3379 | vui->vrings[q].last_avail_idx, |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3380 | vui->vrings[q].last_used_idx); |
| 3381 | |
| 3382 | if (vui->vrings[q].avail && vui->vrings[q].used) |
| 3383 | vlib_cli_output (vm, |
| 3384 | " avail.flags %x avail.idx %d used.flags %x used.idx %d\n", |
| 3385 | vui->vrings[q].avail->flags, |
| 3386 | vui->vrings[q].avail->idx, |
| 3387 | vui->vrings[q].used->flags, |
| 3388 | vui->vrings[q].used->idx); |
| 3389 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3390 | int kickfd = UNIX_GET_FD (vui->vrings[q].kickfd_idx); |
| 3391 | int callfd = UNIX_GET_FD (vui->vrings[q].callfd_idx); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3392 | vlib_cli_output (vm, " kickfd %d callfd %d errfd %d\n", |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3393 | kickfd, callfd, vui->vrings[q].errfd); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3394 | |
| 3395 | if (show_descr) |
| 3396 | { |
| 3397 | vlib_cli_output (vm, "\n descriptor table:\n"); |
| 3398 | vlib_cli_output (vm, |
| 3399 | " id addr len flags next user_addr\n"); |
| 3400 | vlib_cli_output (vm, |
| 3401 | " ===== ================== ===== ====== ===== ==================\n"); |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 3402 | for (j = 0; j < vui->vrings[q].qsz_mask + 1; j++) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3403 | { |
Pierre Pfister | 11f9205 | 2016-09-21 08:08:55 +0100 | [diff] [blame] | 3404 | u32 mem_hint = 0; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3405 | vlib_cli_output (vm, |
| 3406 | " %-5d 0x%016lx %-5d 0x%04x %-5d 0x%016lx\n", |
| 3407 | j, vui->vrings[q].desc[j].addr, |
| 3408 | vui->vrings[q].desc[j].len, |
| 3409 | vui->vrings[q].desc[j].flags, |
| 3410 | vui->vrings[q].desc[j].next, |
| 3411 | pointer_to_uword (map_guest_mem |
| 3412 | (vui, |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 3413 | vui->vrings[q].desc[j]. |
Pierre Pfister | 11f9205 | 2016-09-21 08:08:55 +0100 | [diff] [blame] | 3414 | addr, &mem_hint))); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3415 | } |
| 3416 | } |
| 3417 | } |
| 3418 | vlib_cli_output (vm, "\n"); |
| 3419 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3420 | done: |
| 3421 | vec_free (hw_if_indices); |
| 3422 | return error; |
| 3423 | } |
| 3424 | |
Damjan Marion | 8d281b3 | 2016-08-24 14:32:39 +0200 | [diff] [blame] | 3425 | /* |
| 3426 | * CLI functions |
| 3427 | */ |
| 3428 | |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3429 | /*? |
| 3430 | * Create a vHost User interface. Once created, a new virtual interface |
| 3431 | * will exist with the name '<em>VirtualEthernet0/0/x</em>', where '<em>x</em>' |
| 3432 | * is the next free index. |
| 3433 | * |
| 3434 | * There are several parameters associated with a vHost interface: |
| 3435 | * |
Billy McFall | 28cf3b7 | 2018-01-15 17:54:52 -0500 | [diff] [blame] | 3436 | * - <b>socket <socket-filename></b> - Name of the linux socket used by hypervisor |
| 3437 | * and VPP to manage the vHost interface. If in '<em>server</em>' mode, VPP will |
| 3438 | * create the socket if it does not already exist. If in '<em>client</em>' mode, |
| 3439 | * hypervisor will create the socket if it does not already exist. The VPP code |
| 3440 | * is indifferent to the file location. However, if SELinux is enabled, then the |
| 3441 | * socket needs to be created in '<em>/var/run/vpp/</em>'. |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3442 | * |
Billy McFall | 28cf3b7 | 2018-01-15 17:54:52 -0500 | [diff] [blame] | 3443 | * - <b>server</b> - Optional flag to indicate that VPP should be the server for |
| 3444 | * the linux socket. If not provided, VPP will be the client. In '<em>server</em>' |
| 3445 | * mode, the VM can be reset without tearing down the vHost Interface. In |
| 3446 | * '<em>client</em>' mode, VPP can be reset without bringing down the VM and |
| 3447 | * tearing down the vHost Interface. |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3448 | * |
| 3449 | * - <b>feature-mask <hex></b> - Optional virtio/vhost feature set negotiated at |
Billy McFall | 28cf3b7 | 2018-01-15 17:54:52 -0500 | [diff] [blame] | 3450 | * startup. <b>This is intended for degugging only.</b> It is recommended that this |
| 3451 | * parameter not be used except by experienced users. By default, all supported |
| 3452 | * features will be advertised. Otherwise, provide the set of features desired. |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3453 | * - 0x000008000 (15) - VIRTIO_NET_F_MRG_RXBUF |
| 3454 | * - 0x000020000 (17) - VIRTIO_NET_F_CTRL_VQ |
| 3455 | * - 0x000200000 (21) - VIRTIO_NET_F_GUEST_ANNOUNCE |
| 3456 | * - 0x000400000 (22) - VIRTIO_NET_F_MQ |
| 3457 | * - 0x004000000 (26) - VHOST_F_LOG_ALL |
| 3458 | * - 0x008000000 (27) - VIRTIO_F_ANY_LAYOUT |
| 3459 | * - 0x010000000 (28) - VIRTIO_F_INDIRECT_DESC |
| 3460 | * - 0x040000000 (30) - VHOST_USER_F_PROTOCOL_FEATURES |
| 3461 | * - 0x100000000 (32) - VIRTIO_F_VERSION_1 |
| 3462 | * |
| 3463 | * - <b>hwaddr <mac-addr></b> - Optional ethernet address, can be in either |
| 3464 | * X:X:X:X:X:X unix or X.X.X cisco format. |
| 3465 | * |
| 3466 | * - <b>renumber <dev_instance></b> - Optional parameter which allows the instance |
| 3467 | * in the name to be specified. If instance already exists, name will be used |
| 3468 | * anyway and multiple instances will have the same name. Use with caution. |
| 3469 | * |
| 3470 | * @cliexpar |
| 3471 | * Example of how to create a vhost interface with VPP as the client and all features enabled: |
Billy McFall | 28cf3b7 | 2018-01-15 17:54:52 -0500 | [diff] [blame] | 3472 | * @cliexstart{create vhost-user socket /var/run/vpp/vhost1.sock} |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3473 | * VirtualEthernet0/0/0 |
| 3474 | * @cliexend |
| 3475 | * Example of how to create a vhost interface with VPP as the server and with just |
| 3476 | * multiple queues enabled: |
Billy McFall | 28cf3b7 | 2018-01-15 17:54:52 -0500 | [diff] [blame] | 3477 | * @cliexstart{create vhost-user socket /var/run/vpp/vhost2.sock server feature-mask 0x40400000} |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3478 | * VirtualEthernet0/0/1 |
| 3479 | * @cliexend |
| 3480 | * Once the vHost interface is created, enable the interface using: |
| 3481 | * @cliexcmd{set interface state VirtualEthernet0/0/0 up} |
| 3482 | ?*/ |
Damjan Marion | 8d281b3 | 2016-08-24 14:32:39 +0200 | [diff] [blame] | 3483 | /* *INDENT-OFF* */ |
| 3484 | VLIB_CLI_COMMAND (vhost_user_connect_command, static) = { |
| 3485 | .path = "create vhost-user", |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 3486 | .short_help = "create vhost-user socket <socket-filename> [server] " |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 3487 | "[feature-mask <hex>] [hwaddr <mac-addr>] [renumber <dev_instance>] ", |
Damjan Marion | 8d281b3 | 2016-08-24 14:32:39 +0200 | [diff] [blame] | 3488 | .function = vhost_user_connect_command_fn, |
| 3489 | }; |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3490 | /* *INDENT-ON* */ |
Damjan Marion | 8d281b3 | 2016-08-24 14:32:39 +0200 | [diff] [blame] | 3491 | |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3492 | /*? |
| 3493 | * Delete a vHost User interface using the interface name or the |
Dave Barach | 13ad1f0 | 2017-03-26 19:36:18 -0400 | [diff] [blame] | 3494 | * software interface index. Use the '<em>show interface</em>' |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3495 | * command to determine the software interface index. On deletion, |
| 3496 | * the linux socket will not be deleted. |
| 3497 | * |
| 3498 | * @cliexpar |
| 3499 | * Example of how to delete a vhost interface by name: |
| 3500 | * @cliexcmd{delete vhost-user VirtualEthernet0/0/1} |
| 3501 | * Example of how to delete a vhost interface by software interface index: |
| 3502 | * @cliexcmd{delete vhost-user sw_if_index 1} |
| 3503 | ?*/ |
| 3504 | /* *INDENT-OFF* */ |
Damjan Marion | 8d281b3 | 2016-08-24 14:32:39 +0200 | [diff] [blame] | 3505 | VLIB_CLI_COMMAND (vhost_user_delete_command, static) = { |
| 3506 | .path = "delete vhost-user", |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3507 | .short_help = "delete vhost-user {<interface> | sw_if_index <sw_idx>}", |
Damjan Marion | 8d281b3 | 2016-08-24 14:32:39 +0200 | [diff] [blame] | 3508 | .function = vhost_user_delete_command_fn, |
| 3509 | }; |
| 3510 | |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3511 | /*? |
| 3512 | * Display the attributes of a single vHost User interface (provide interface |
| 3513 | * name), multiple vHost User interfaces (provide a list of interface names seperated |
| 3514 | * by spaces) or all Vhost User interfaces (omit an interface name to display all |
| 3515 | * vHost interfaces). |
| 3516 | * |
| 3517 | * @cliexpar |
| 3518 | * @parblock |
| 3519 | * Example of how to display a vhost interface: |
| 3520 | * @cliexstart{show vhost-user VirtualEthernet0/0/0} |
| 3521 | * Virtio vhost-user interfaces |
| 3522 | * Global: |
| 3523 | * coalesce frames 32 time 1e-3 |
| 3524 | * Interface: VirtualEthernet0/0/0 (ifindex 1) |
| 3525 | * virtio_net_hdr_sz 12 |
| 3526 | * features mask (0xffffffffffffffff): |
| 3527 | * features (0x50408000): |
| 3528 | * VIRTIO_NET_F_MRG_RXBUF (15) |
| 3529 | * VIRTIO_NET_F_MQ (22) |
| 3530 | * VIRTIO_F_INDIRECT_DESC (28) |
| 3531 | * VHOST_USER_F_PROTOCOL_FEATURES (30) |
| 3532 | * protocol features (0x3) |
| 3533 | * VHOST_USER_PROTOCOL_F_MQ (0) |
| 3534 | * VHOST_USER_PROTOCOL_F_LOG_SHMFD (1) |
| 3535 | * |
Billy McFall | 28cf3b7 | 2018-01-15 17:54:52 -0500 | [diff] [blame] | 3536 | * socket filename /var/run/vpp/vhost1.sock type client errno "Success" |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3537 | * |
| 3538 | * rx placement: |
| 3539 | * thread 1 on vring 1 |
| 3540 | * thread 1 on vring 5 |
| 3541 | * thread 2 on vring 3 |
| 3542 | * thread 2 on vring 7 |
| 3543 | * tx placement: spin-lock |
| 3544 | * thread 0 on vring 0 |
| 3545 | * thread 1 on vring 2 |
| 3546 | * thread 2 on vring 0 |
| 3547 | * |
| 3548 | * Memory regions (total 2) |
| 3549 | * region fd guest_phys_addr memory_size userspace_addr mmap_offset mmap_addr |
| 3550 | * ====== ===== ================== ================== ================== ================== ================== |
| 3551 | * 0 60 0x0000000000000000 0x00000000000a0000 0x00002aaaaac00000 0x0000000000000000 0x00002aab2b400000 |
| 3552 | * 1 61 0x00000000000c0000 0x000000003ff40000 0x00002aaaaacc0000 0x00000000000c0000 0x00002aababcc0000 |
| 3553 | * |
| 3554 | * Virtqueue 0 (TX) |
| 3555 | * qsz 256 last_avail_idx 0 last_used_idx 0 |
| 3556 | * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0 |
| 3557 | * kickfd 62 callfd 64 errfd -1 |
| 3558 | * |
| 3559 | * Virtqueue 1 (RX) |
| 3560 | * qsz 256 last_avail_idx 0 last_used_idx 0 |
| 3561 | * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0 |
| 3562 | * kickfd 65 callfd 66 errfd -1 |
| 3563 | * |
| 3564 | * Virtqueue 2 (TX) |
| 3565 | * qsz 256 last_avail_idx 0 last_used_idx 0 |
| 3566 | * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0 |
| 3567 | * kickfd 63 callfd 70 errfd -1 |
| 3568 | * |
| 3569 | * Virtqueue 3 (RX) |
| 3570 | * qsz 256 last_avail_idx 0 last_used_idx 0 |
| 3571 | * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0 |
| 3572 | * kickfd 72 callfd 74 errfd -1 |
| 3573 | * |
| 3574 | * Virtqueue 4 (TX disabled) |
| 3575 | * qsz 256 last_avail_idx 0 last_used_idx 0 |
| 3576 | * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0 |
| 3577 | * kickfd 76 callfd 78 errfd -1 |
| 3578 | * |
| 3579 | * Virtqueue 5 (RX disabled) |
| 3580 | * qsz 256 last_avail_idx 0 last_used_idx 0 |
| 3581 | * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0 |
| 3582 | * kickfd 80 callfd 82 errfd -1 |
| 3583 | * |
| 3584 | * Virtqueue 6 (TX disabled) |
| 3585 | * qsz 256 last_avail_idx 0 last_used_idx 0 |
| 3586 | * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0 |
| 3587 | * kickfd 84 callfd 86 errfd -1 |
| 3588 | * |
| 3589 | * Virtqueue 7 (RX disabled) |
| 3590 | * qsz 256 last_avail_idx 0 last_used_idx 0 |
| 3591 | * avail.flags 1 avail.idx 0 used.flags 1 used.idx 0 |
| 3592 | * kickfd 88 callfd 90 errfd -1 |
| 3593 | * |
| 3594 | * @cliexend |
| 3595 | * |
| 3596 | * The optional '<em>descriptors</em>' parameter will display the same output as |
| 3597 | * the previous example but will include the descriptor table for each queue. |
| 3598 | * The output is truncated below: |
| 3599 | * @cliexstart{show vhost-user VirtualEthernet0/0/0 descriptors} |
| 3600 | * Virtio vhost-user interfaces |
| 3601 | * Global: |
| 3602 | * coalesce frames 32 time 1e-3 |
| 3603 | * Interface: VirtualEthernet0/0/0 (ifindex 1) |
| 3604 | * virtio_net_hdr_sz 12 |
| 3605 | * features mask (0xffffffffffffffff): |
| 3606 | * features (0x50408000): |
| 3607 | * VIRTIO_NET_F_MRG_RXBUF (15) |
| 3608 | * VIRTIO_NET_F_MQ (22) |
| 3609 | * : |
| 3610 | * Virtqueue 0 (TX) |
| 3611 | * qsz 256 last_avail_idx 0 last_used_idx 0 |
| 3612 | * avail.flags 1 avail.idx 128 used.flags 1 used.idx 0 |
| 3613 | * kickfd 62 callfd 64 errfd -1 |
| 3614 | * |
| 3615 | * descriptor table: |
| 3616 | * id addr len flags next user_addr |
| 3617 | * ===== ================== ===== ====== ===== ================== |
| 3618 | * 0 0x0000000010b6e974 2060 0x0002 1 0x00002aabbc76e974 |
| 3619 | * 1 0x0000000010b6e034 2060 0x0002 2 0x00002aabbc76e034 |
| 3620 | * 2 0x0000000010b6d6f4 2060 0x0002 3 0x00002aabbc76d6f4 |
| 3621 | * 3 0x0000000010b6cdb4 2060 0x0002 4 0x00002aabbc76cdb4 |
| 3622 | * 4 0x0000000010b6c474 2060 0x0002 5 0x00002aabbc76c474 |
| 3623 | * 5 0x0000000010b6bb34 2060 0x0002 6 0x00002aabbc76bb34 |
| 3624 | * 6 0x0000000010b6b1f4 2060 0x0002 7 0x00002aabbc76b1f4 |
| 3625 | * 7 0x0000000010b6a8b4 2060 0x0002 8 0x00002aabbc76a8b4 |
| 3626 | * 8 0x0000000010b69f74 2060 0x0002 9 0x00002aabbc769f74 |
| 3627 | * 9 0x0000000010b69634 2060 0x0002 10 0x00002aabbc769634 |
| 3628 | * 10 0x0000000010b68cf4 2060 0x0002 11 0x00002aabbc768cf4 |
| 3629 | * : |
| 3630 | * 249 0x0000000000000000 0 0x0000 250 0x00002aab2b400000 |
| 3631 | * 250 0x0000000000000000 0 0x0000 251 0x00002aab2b400000 |
| 3632 | * 251 0x0000000000000000 0 0x0000 252 0x00002aab2b400000 |
| 3633 | * 252 0x0000000000000000 0 0x0000 253 0x00002aab2b400000 |
| 3634 | * 253 0x0000000000000000 0 0x0000 254 0x00002aab2b400000 |
| 3635 | * 254 0x0000000000000000 0 0x0000 255 0x00002aab2b400000 |
| 3636 | * 255 0x0000000000000000 0 0x0000 32768 0x00002aab2b400000 |
| 3637 | * |
| 3638 | * Virtqueue 1 (RX) |
| 3639 | * qsz 256 last_avail_idx 0 last_used_idx 0 |
| 3640 | * : |
| 3641 | * @cliexend |
| 3642 | * @endparblock |
| 3643 | ?*/ |
| 3644 | /* *INDENT-OFF* */ |
Damjan Marion | 8d281b3 | 2016-08-24 14:32:39 +0200 | [diff] [blame] | 3645 | VLIB_CLI_COMMAND (show_vhost_user_command, static) = { |
| 3646 | .path = "show vhost-user", |
Billy McFall | a92501a | 2016-11-23 12:45:29 -0500 | [diff] [blame] | 3647 | .short_help = "show vhost-user [<interface> [<interface> [..]]] [descriptors]", |
Damjan Marion | 8d281b3 | 2016-08-24 14:32:39 +0200 | [diff] [blame] | 3648 | .function = show_vhost_user_command_fn, |
| 3649 | }; |
| 3650 | /* *INDENT-ON* */ |
Damjan Marion | 8d281b3 | 2016-08-24 14:32:39 +0200 | [diff] [blame] | 3651 | |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 3652 | clib_error_t * |
| 3653 | debug_vhost_user_command_fn (vlib_main_t * vm, |
| 3654 | unformat_input_t * input, |
| 3655 | vlib_cli_command_t * cmd) |
| 3656 | { |
| 3657 | unformat_input_t _line_input, *line_input = &_line_input; |
| 3658 | clib_error_t *error = NULL; |
| 3659 | vhost_user_main_t *vum = &vhost_user_main; |
Steven | 2ee2d57 | 2017-07-21 16:38:41 -0700 | [diff] [blame] | 3660 | u8 onoff = 0; |
| 3661 | u8 input_found = 0; |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 3662 | |
| 3663 | /* Get a line of input. */ |
| 3664 | if (!unformat_user (input, unformat_line_input, line_input)) |
Steven | 2ee2d57 | 2017-07-21 16:38:41 -0700 | [diff] [blame] | 3665 | return clib_error_return (0, "missing argument"); |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 3666 | |
| 3667 | while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) |
| 3668 | { |
Steven | 2ee2d57 | 2017-07-21 16:38:41 -0700 | [diff] [blame] | 3669 | if (input_found) |
| 3670 | { |
| 3671 | error = clib_error_return (0, "unknown input `%U'", |
| 3672 | format_unformat_error, line_input); |
| 3673 | goto done; |
| 3674 | } |
| 3675 | |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 3676 | if (unformat (line_input, "on")) |
Steven | 2ee2d57 | 2017-07-21 16:38:41 -0700 | [diff] [blame] | 3677 | { |
| 3678 | input_found = 1; |
| 3679 | onoff = 1; |
| 3680 | } |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 3681 | else if (unformat (line_input, "off")) |
Steven | 2ee2d57 | 2017-07-21 16:38:41 -0700 | [diff] [blame] | 3682 | { |
| 3683 | input_found = 1; |
| 3684 | onoff = 0; |
| 3685 | } |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 3686 | else |
Steven | 2ee2d57 | 2017-07-21 16:38:41 -0700 | [diff] [blame] | 3687 | { |
| 3688 | error = clib_error_return (0, "unknown input `%U'", |
| 3689 | format_unformat_error, line_input); |
| 3690 | goto done; |
| 3691 | } |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 3692 | } |
| 3693 | |
Steven | 2ee2d57 | 2017-07-21 16:38:41 -0700 | [diff] [blame] | 3694 | vum->debug = onoff; |
| 3695 | |
| 3696 | done: |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 3697 | unformat_free (line_input); |
| 3698 | |
| 3699 | return error; |
| 3700 | } |
| 3701 | |
| 3702 | /* *INDENT-OFF* */ |
| 3703 | VLIB_CLI_COMMAND (debug_vhost_user_command, static) = { |
| 3704 | .path = "debug vhost-user", |
| 3705 | .short_help = "debug vhost-user <on | off>", |
| 3706 | .function = debug_vhost_user_command_fn, |
| 3707 | }; |
| 3708 | /* *INDENT-ON* */ |
| 3709 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3710 | static clib_error_t * |
| 3711 | vhost_user_config (vlib_main_t * vm, unformat_input_t * input) |
| 3712 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3713 | vhost_user_main_t *vum = &vhost_user_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3714 | |
| 3715 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 3716 | { |
| 3717 | if (unformat (input, "coalesce-frames %d", &vum->coalesce_frames)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3718 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3719 | else if (unformat (input, "coalesce-time %f", &vum->coalesce_time)) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3720 | ; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3721 | else if (unformat (input, "dont-dump-memory")) |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3722 | vum->dont_dump_vhost_user_memory = 1; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3723 | else |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3724 | return clib_error_return (0, "unknown input `%U'", |
| 3725 | format_unformat_error, input); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3726 | } |
| 3727 | |
| 3728 | return 0; |
| 3729 | } |
| 3730 | |
| 3731 | /* vhost-user { ... } configuration. */ |
| 3732 | VLIB_CONFIG_FUNCTION (vhost_user_config, "vhost-user"); |
| 3733 | |
| 3734 | void |
| 3735 | vhost_user_unmap_all (void) |
| 3736 | { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3737 | vhost_user_main_t *vum = &vhost_user_main; |
| 3738 | vhost_user_intf_t *vui; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3739 | |
| 3740 | if (vum->dont_dump_vhost_user_memory) |
| 3741 | { |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 3742 | pool_foreach (vui, vum->vhost_user_interfaces, |
| 3743 | unmap_all_mem_regions (vui); |
| 3744 | ); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 3745 | } |
| 3746 | } |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 3747 | |
| 3748 | /* |
| 3749 | * fd.io coding-style-patch-verification: ON |
| 3750 | * |
| 3751 | * Local Variables: |
| 3752 | * eval: (c-set-style "gnu") |
| 3753 | * End: |
| 3754 | */ |