Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | #ifndef __VIRTIO_VHOST_USER_H__ |
| 16 | #define __VIRTIO_VHOST_USER_H__ |
| 17 | /* vhost-user data structures */ |
| 18 | |
| 19 | #define VHOST_MEMORY_MAX_NREGIONS 8 |
| 20 | #define VHOST_USER_MSG_HDR_SZ 12 |
| 21 | #define VHOST_VRING_MAX_SIZE 32768 |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 22 | #define VHOST_VRING_MAX_N 16 //8TX + 8RX |
| 23 | #define VHOST_VRING_IDX_RX(qid) (2*qid) |
| 24 | #define VHOST_VRING_IDX_TX(qid) (2*qid + 1) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 25 | |
Steven | 49a04b9 | 2017-07-29 08:56:08 -0700 | [diff] [blame] | 26 | #define VHOST_USER_VRING_NOFD_MASK 0x100 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 27 | #define VIRTQ_DESC_F_NEXT 1 |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 28 | #define VIRTQ_DESC_F_INDIRECT 4 |
Shesha Sreenivasamurthy | b8f45b3 | 2016-02-03 09:38:36 -0800 | [diff] [blame] | 29 | #define VHOST_USER_REPLY_MASK (0x1 << 2) |
| 30 | |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 31 | #define VHOST_USER_PROTOCOL_F_MQ 0 |
| 32 | #define VHOST_USER_PROTOCOL_F_LOG_SHMFD 1 |
Yoann Desmouceaux | fe2da0e | 2016-03-08 14:54:28 +0100 | [diff] [blame] | 33 | #define VHOST_VRING_F_LOG 0 |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 34 | |
Shesha Sreenivasamurthy | 9f50b0b | 2016-02-23 13:52:31 -0800 | [diff] [blame] | 35 | #define VHOST_USER_F_PROTOCOL_FEATURES 30 |
Shesha Sreenivasamurthy | 0666dc4 | 2016-04-18 16:38:20 -0400 | [diff] [blame] | 36 | #define VHOST_USER_PROTOCOL_FEATURES ((1ULL << VHOST_USER_PROTOCOL_F_MQ) | \ |
| 37 | (1ULL << VHOST_USER_PROTOCOL_F_LOG_SHMFD)) |
Shesha Sreenivasamurthy | b8f45b3 | 2016-02-03 09:38:36 -0800 | [diff] [blame] | 38 | |
Paul Vinciguerra | 97c998c | 2019-10-29 16:11:09 -0400 | [diff] [blame] | 39 | /* If multiqueue is provided by host, then we support it. */ |
Shesha Sreenivasamurthy | b8f45b3 | 2016-02-03 09:38:36 -0800 | [diff] [blame] | 40 | #define VIRTIO_NET_CTRL_MQ 4 |
| 41 | #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET 0 |
| 42 | #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN 1 |
| 43 | #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX 0x8000 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 44 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 45 | #define VRING_USED_F_NO_NOTIFY 1 |
Steven | a1a0901 | 2017-03-08 00:23:13 -0800 | [diff] [blame] | 46 | #define VRING_AVAIL_F_NO_INTERRUPT 1 |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 47 | |
Jerome Tollet | 2f54c27 | 2018-10-02 11:41:11 +0200 | [diff] [blame] | 48 | #define vu_log_debug(dev, f, ...) \ |
| 49 | { \ |
| 50 | vlib_log(VLIB_LOG_LEVEL_DEBUG, vhost_user_main.log_default, "%U: " f, \ |
| 51 | format_vnet_hw_if_index_name, vnet_get_main(), \ |
| 52 | dev->hw_if_index, ##__VA_ARGS__); \ |
| 53 | }; |
Mohsin Kazmi | e7cde31 | 2018-06-26 17:20:11 +0200 | [diff] [blame] | 54 | |
Jerome Tollet | 2f54c27 | 2018-10-02 11:41:11 +0200 | [diff] [blame] | 55 | #define vu_log_warn(dev, f, ...) \ |
| 56 | { \ |
| 57 | vlib_log(VLIB_LOG_LEVEL_WARNING, vhost_user_main.log_default, "%U: " f, \ |
| 58 | format_vnet_hw_if_index_name, vnet_get_main(), \ |
| 59 | dev->hw_if_index, ##__VA_ARGS__); \ |
| 60 | }; |
| 61 | #define vu_log_err(dev, f, ...) \ |
| 62 | { \ |
| 63 | vlib_log(VLIB_LOG_LEVEL_ERR, vhost_user_main.log_default, "%U: " f, \ |
| 64 | format_vnet_hw_if_index_name, vnet_get_main(), \ |
| 65 | dev->hw_if_index, ##__VA_ARGS__); \ |
| 66 | }; |
Mohsin Kazmi | e7cde31 | 2018-06-26 17:20:11 +0200 | [diff] [blame] | 67 | |
| 68 | #define UNIX_GET_FD(unixfd_idx) ({ \ |
| 69 | typeof(unixfd_idx) __unixfd_idx = (unixfd_idx); \ |
| 70 | (__unixfd_idx != ~0) ? \ |
| 71 | pool_elt_at_index (file_main.file_pool, \ |
| 72 | __unixfd_idx)->file_descriptor : -1; }) |
| 73 | |
| 74 | #define foreach_virtio_trace_flags \ |
| 75 | _ (SIMPLE_CHAINED, 0, "Simple descriptor chaining") \ |
| 76 | _ (SINGLE_DESC, 1, "Single descriptor packet") \ |
| 77 | _ (INDIRECT, 2, "Indirect descriptor") \ |
| 78 | _ (MAP_ERROR, 4, "Memory mapping error") |
| 79 | |
| 80 | typedef enum |
| 81 | { |
| 82 | #define _(n,i,s) VIRTIO_TRACE_F_##n, |
| 83 | foreach_virtio_trace_flags |
| 84 | #undef _ |
| 85 | } virtio_trace_flag_t; |
| 86 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | #define foreach_virtio_net_feature \ |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 88 | _ (VIRTIO_NET_F_CSUM, 0) \ |
| 89 | _ (VIRTIO_NET_F_GUEST_CSUM, 1) \ |
| 90 | _ (VIRTIO_NET_F_GUEST_TSO4, 7) \ |
| 91 | _ (VIRTIO_NET_F_GUEST_TSO6, 8) \ |
| 92 | _ (VIRTIO_NET_F_GUEST_UFO, 10) \ |
| 93 | _ (VIRTIO_NET_F_HOST_TSO4, 11) \ |
| 94 | _ (VIRTIO_NET_F_HOST_TSO6, 12) \ |
| 95 | _ (VIRTIO_NET_F_HOST_UFO, 14) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 96 | _ (VIRTIO_NET_F_MRG_RXBUF, 15) \ |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 97 | _ (VIRTIO_NET_F_CTRL_VQ, 17) \ |
| 98 | _ (VIRTIO_NET_F_GUEST_ANNOUNCE, 21) \ |
| 99 | _ (VIRTIO_NET_F_MQ, 22) \ |
| 100 | _ (VHOST_F_LOG_ALL, 26) \ |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 101 | _ (VIRTIO_F_ANY_LAYOUT, 27) \ |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 102 | _ (VIRTIO_F_INDIRECT_DESC, 28) \ |
Damjan Marion | e83b7d5 | 2016-09-19 14:31:34 +0200 | [diff] [blame] | 103 | _ (VHOST_USER_F_PROTOCOL_FEATURES, 30) \ |
| 104 | _ (VIRTIO_F_VERSION_1, 32) |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 105 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 106 | typedef enum |
| 107 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 108 | #define _(f,n) FEAT_##f = (n), |
| 109 | foreach_virtio_net_feature |
| 110 | #undef _ |
| 111 | } virtio_net_feature_t; |
| 112 | |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 113 | #define FEATURE_VIRTIO_NET_F_HOST_TSO_FEATURE_BITS \ |
| 114 | ((1ULL << FEAT_VIRTIO_NET_F_CSUM) | \ |
| 115 | (1ULL << FEAT_VIRTIO_NET_F_HOST_UFO) | \ |
| 116 | (1ULL << FEAT_VIRTIO_NET_F_HOST_TSO4) | \ |
| 117 | (1ULL << FEAT_VIRTIO_NET_F_HOST_TSO6)) |
| 118 | |
| 119 | #define FEATURE_VIRTIO_NET_F_GUEST_TSO_FEATURE_BITS \ |
| 120 | ((1ULL << FEAT_VIRTIO_NET_F_GUEST_CSUM) | \ |
| 121 | (1ULL << FEAT_VIRTIO_NET_F_GUEST_UFO) | \ |
| 122 | (1ULL << FEAT_VIRTIO_NET_F_GUEST_TSO4) | \ |
| 123 | (1ULL << FEAT_VIRTIO_NET_F_GUEST_TSO6)) |
| 124 | |
| 125 | #define FEATURE_VIRTIO_NET_F_HOST_GUEST_TSO_FEATURE_BITS \ |
| 126 | (FEATURE_VIRTIO_NET_F_HOST_TSO_FEATURE_BITS | \ |
| 127 | FEATURE_VIRTIO_NET_F_GUEST_TSO_FEATURE_BITS) |
| 128 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 129 | int vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm, |
| 130 | const char *sock_filename, u8 is_server, |
| 131 | u32 * sw_if_index, u64 feature_mask, |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 132 | u8 renumber, u32 custom_dev_instance, u8 * hwaddr, |
| 133 | u8 enable_gso); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 134 | int vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm, |
| 135 | const char *sock_filename, u8 is_server, |
| 136 | u32 sw_if_index, u64 feature_mask, |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 137 | u8 renumber, u32 custom_dev_instance, |
| 138 | u8 enable_gso); |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 139 | int vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm, |
| 140 | u32 sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 142 | /* *INDENT-OFF* */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 143 | typedef struct vhost_user_memory_region |
| 144 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 145 | u64 guest_phys_addr; |
| 146 | u64 memory_size; |
| 147 | u64 userspace_addr; |
| 148 | u64 mmap_offset; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 149 | } __attribute ((packed)) vhost_user_memory_region_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 151 | typedef struct vhost_user_memory |
| 152 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 153 | u32 nregions; |
| 154 | u32 padding; |
| 155 | vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS]; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 156 | } __attribute ((packed)) vhost_user_memory_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 157 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 158 | typedef struct |
| 159 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 160 | u32 index, num; |
| 161 | } __attribute ((packed)) vhost_vring_state_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 162 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 163 | typedef struct |
| 164 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 165 | u32 index, flags; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 166 | u64 desc_user_addr, used_user_addr, avail_user_addr, log_guest_addr; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 167 | } __attribute ((packed)) vhost_vring_addr_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 168 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 169 | typedef struct vhost_user_log |
| 170 | { |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 171 | u64 size; |
| 172 | u64 offset; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 173 | } __attribute ((packed)) vhost_user_log_t; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 174 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 175 | typedef enum vhost_user_req |
| 176 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 177 | VHOST_USER_NONE = 0, |
| 178 | VHOST_USER_GET_FEATURES = 1, |
| 179 | VHOST_USER_SET_FEATURES = 2, |
| 180 | VHOST_USER_SET_OWNER = 3, |
| 181 | VHOST_USER_RESET_OWNER = 4, |
| 182 | VHOST_USER_SET_MEM_TABLE = 5, |
| 183 | VHOST_USER_SET_LOG_BASE = 6, |
| 184 | VHOST_USER_SET_LOG_FD = 7, |
| 185 | VHOST_USER_SET_VRING_NUM = 8, |
| 186 | VHOST_USER_SET_VRING_ADDR = 9, |
| 187 | VHOST_USER_SET_VRING_BASE = 10, |
| 188 | VHOST_USER_GET_VRING_BASE = 11, |
| 189 | VHOST_USER_SET_VRING_KICK = 12, |
| 190 | VHOST_USER_SET_VRING_CALL = 13, |
| 191 | VHOST_USER_SET_VRING_ERR = 14, |
Shesha Sreenivasamurthy | b8f45b3 | 2016-02-03 09:38:36 -0800 | [diff] [blame] | 192 | VHOST_USER_GET_PROTOCOL_FEATURES = 15, |
| 193 | VHOST_USER_SET_PROTOCOL_FEATURES = 16, |
| 194 | VHOST_USER_GET_QUEUE_NUM = 17, |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 195 | VHOST_USER_SET_VRING_ENABLE = 18, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 196 | VHOST_USER_MAX |
| 197 | } vhost_user_req_t; |
| 198 | |
| 199 | // vring_desc I/O buffer descriptor |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 200 | typedef struct |
| 201 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 202 | uint64_t addr; // packet data buffer address |
| 203 | uint32_t len; // packet data buffer size |
| 204 | uint16_t flags; // (see below) |
| 205 | uint16_t next; // optional index next descriptor in chain |
| 206 | } __attribute ((packed)) vring_desc_t; |
| 207 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 208 | typedef struct |
| 209 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 210 | uint16_t flags; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 211 | volatile uint16_t idx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 212 | uint16_t ring[VHOST_VRING_MAX_SIZE]; |
| 213 | } __attribute ((packed)) vring_avail_t; |
| 214 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 215 | typedef struct |
| 216 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 217 | uint16_t flags; |
| 218 | uint16_t idx; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 219 | struct /* vring_used_elem */ |
| 220 | { |
| 221 | uint32_t id; |
| 222 | uint32_t len; |
| 223 | } ring[VHOST_VRING_MAX_SIZE]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 224 | } __attribute ((packed)) vring_used_t; |
| 225 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 226 | typedef struct |
| 227 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 228 | u8 flags; |
| 229 | u8 gso_type; |
| 230 | u16 hdr_len; |
| 231 | u16 gso_size; |
| 232 | u16 csum_start; |
| 233 | u16 csum_offset; |
| 234 | } __attribute ((packed)) virtio_net_hdr_t; |
| 235 | |
| 236 | typedef struct { |
| 237 | virtio_net_hdr_t hdr; |
| 238 | u16 num_buffers; |
| 239 | } __attribute ((packed)) virtio_net_hdr_mrg_rxbuf_t; |
| 240 | |
| 241 | typedef struct vhost_user_msg { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 242 | vhost_user_req_t request; |
| 243 | u32 flags; |
| 244 | u32 size; |
| 245 | union |
| 246 | { |
| 247 | u64 u64; |
| 248 | vhost_vring_state_t state; |
| 249 | vhost_vring_addr_t addr; |
| 250 | vhost_user_memory_t memory; |
| 251 | vhost_user_log_t log; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | }; |
| 253 | } __attribute ((packed)) vhost_user_msg_t; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 254 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 255 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 256 | typedef struct |
| 257 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 258 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Steven | 9787889 | 2017-08-29 09:23:26 -0700 | [diff] [blame] | 259 | u16 qsz_mask; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 260 | u16 last_avail_idx; |
| 261 | u16 last_used_idx; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 262 | u16 n_since_last_int; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 263 | vring_desc_t *desc; |
| 264 | vring_avail_t *avail; |
| 265 | vring_used_t *used; |
Steven Luong | 4442f7c | 2019-10-02 07:33:48 -0700 | [diff] [blame] | 266 | uword desc_user_addr; |
| 267 | uword used_user_addr; |
| 268 | uword avail_user_addr; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 269 | f64 int_deadline; |
| 270 | u8 started; |
| 271 | u8 enabled; |
| 272 | u8 log_used; |
| 273 | //Put non-runtime in a different cache line |
| 274 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 275 | int errfd; |
| 276 | u32 callfd_idx; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 277 | u32 kickfd_idx; |
| 278 | u64 log_guest_addr; |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 279 | |
| 280 | /* The rx queue policy (interrupt/adaptive/polling) for this queue */ |
| 281 | u32 mode; |
Steven Luong | 67f935e | 2019-02-01 10:23:56 -0800 | [diff] [blame] | 282 | |
| 283 | /* |
| 284 | * It contains the device queue number. -1 if it does not. The idea is |
| 285 | * to not invoke vnet_hw_interface_assign_rx_thread and |
| 286 | * vnet_hw_interface_unassign_rx_thread more than once for the duration of |
| 287 | * the interface even if it is disconnected and reconnected. |
| 288 | */ |
| 289 | i16 qid; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 290 | } vhost_user_vring_t; |
| 291 | |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 292 | #define VHOST_USER_EVENT_START_TIMER 1 |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 293 | #define VHOST_USER_EVENT_STOP_TIMER 2 |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 294 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 295 | typedef struct |
| 296 | { |
| 297 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Juraj Sloboda | b192feb | 2018-10-01 12:42:07 +0200 | [diff] [blame] | 298 | u32 is_ready; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 299 | u32 admin_up; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 300 | u32 unix_server_index; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 301 | u32 clib_file_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 302 | char sock_filename[256]; |
| 303 | int sock_errno; |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 304 | uword if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 305 | u32 hw_if_index, sw_if_index; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 306 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 307 | //Feature negotiation |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 308 | u64 features; |
| 309 | u64 feature_mask; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 310 | u64 protocol_features; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 311 | |
| 312 | //Memory region information |
| 313 | u32 nregions; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 314 | vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS]; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 315 | void *region_mmap_addr[VHOST_MEMORY_MAX_NREGIONS]; |
Damjan Marion | 3762370 | 2016-09-20 11:25:27 +0200 | [diff] [blame] | 316 | u64 region_guest_addr_lo[VHOST_MEMORY_MAX_NREGIONS]; |
| 317 | u64 region_guest_addr_hi[VHOST_MEMORY_MAX_NREGIONS]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 318 | u32 region_mmap_fd[VHOST_MEMORY_MAX_NREGIONS]; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 319 | |
| 320 | //Virtual rings |
| 321 | vhost_user_vring_t vrings[VHOST_VRING_MAX_N]; |
| 322 | volatile u32 *vring_locks[VHOST_VRING_MAX_N]; |
| 323 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 324 | int virtio_net_hdr_sz; |
| 325 | int is_any_layout; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 326 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 327 | void *log_base_addr; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 328 | u64 log_size; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 329 | |
| 330 | /* Whether to use spinlock or per_cpu_tx_qid assignment */ |
| 331 | u8 use_tx_spinlock; |
| 332 | u16 *per_cpu_tx_qid; |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 333 | |
| 334 | u8 enable_gso; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 335 | } vhost_user_intf_t; |
| 336 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 337 | typedef struct |
| 338 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 339 | uword dst; |
| 340 | uword src; |
| 341 | u32 len; |
| 342 | } vhost_copy_t; |
| 343 | |
| 344 | typedef struct |
| 345 | { |
| 346 | u16 qid; /** The interface queue index (Not the virtio vring idx) */ |
| 347 | u16 device_index; /** The device index */ |
| 348 | u32 virtio_ring_flags; /** Runtime queue flags **/ |
| 349 | u16 first_desc_len; /** Length of the first data descriptor **/ |
| 350 | virtio_net_hdr_mrg_rxbuf_t hdr; /** Virtio header **/ |
| 351 | } vhost_trace_t; |
| 352 | |
| 353 | |
| 354 | #define VHOST_USER_RX_BUFFERS_N (2 * VLIB_FRAME_SIZE + 2) |
| 355 | #define VHOST_USER_COPY_ARRAY_N (4 * VLIB_FRAME_SIZE) |
| 356 | |
| 357 | typedef struct |
| 358 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 359 | u32 rx_buffers_len; |
| 360 | u32 rx_buffers[VHOST_USER_RX_BUFFERS_N]; |
| 361 | |
| 362 | virtio_net_hdr_mrg_rxbuf_t tx_headers[VLIB_FRAME_SIZE]; |
| 363 | vhost_copy_t copy[VHOST_USER_COPY_ARRAY_N]; |
| 364 | |
| 365 | /* This is here so it doesn't end-up |
| 366 | * using stack or registers. */ |
| 367 | vhost_trace_t *current_trace; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 368 | } vhost_cpu_t; |
| 369 | |
| 370 | typedef struct |
| 371 | { |
Steven | 5445f5f | 2017-04-25 16:16:00 -0700 | [diff] [blame] | 372 | mhash_t if_index_by_sock_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 373 | u32 mtu_bytes; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 374 | vhost_user_intf_t *vhost_user_interfaces; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 375 | u32 *show_dev_instance_by_real_dev_instance; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 376 | u32 coalesce_frames; |
| 377 | f64 coalesce_time; |
| 378 | int dont_dump_vhost_user_memory; |
Damjan Marion | 0dafaa7 | 2016-09-20 23:21:02 +0200 | [diff] [blame] | 379 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 380 | /** Per-CPU data for vhost-user */ |
| 381 | vhost_cpu_t *cpus; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 382 | |
| 383 | /** Pseudo random iterator */ |
| 384 | u32 random; |
Steven | 7312cc7 | 2017-03-15 21:18:55 -0700 | [diff] [blame] | 385 | |
Steven | f3b5364 | 2017-05-01 14:03:02 -0700 | [diff] [blame] | 386 | /* The number of rx interface/queue pairs in interrupt mode */ |
| 387 | u32 ifq_count; |
Steven | 388e51a | 2017-06-01 12:49:23 -0700 | [diff] [blame] | 388 | |
Jerome Tollet | 2f54c27 | 2018-10-02 11:41:11 +0200 | [diff] [blame] | 389 | /* logging */ |
| 390 | vlib_log_class_t log_default; |
Steven Luong | 4208a4c | 2019-05-06 08:51:56 -0700 | [diff] [blame] | 391 | |
| 392 | /* gso interface count */ |
| 393 | u32 gso_count; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 394 | } vhost_user_main_t; |
| 395 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 396 | typedef struct |
| 397 | { |
| 398 | u8 if_name[64]; |
| 399 | u32 sw_if_index; |
| 400 | u32 virtio_net_hdr_sz; |
| 401 | u64 features; |
| 402 | u8 is_server; |
| 403 | u8 sock_filename[256]; |
| 404 | u32 num_regions; |
| 405 | int sock_errno; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 406 | } vhost_user_intf_details_t; |
| 407 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 408 | int vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm, |
| 409 | vhost_user_intf_details_t ** out_vuids); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 410 | |
Mohsin Kazmi | e7cde31 | 2018-06-26 17:20:11 +0200 | [diff] [blame] | 411 | extern vlib_node_registration_t vhost_user_send_interrupt_node; |
| 412 | extern vnet_device_class_t vhost_user_device_class; |
| 413 | extern vlib_node_registration_t vhost_user_input_node; |
| 414 | extern vhost_user_main_t vhost_user_main; |
| 415 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 416 | #endif |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 417 | |
| 418 | /* |
| 419 | * fd.io coding-style-patch-verification: ON |
| 420 | * |
| 421 | * Local Variables: |
| 422 | * eval: (c-set-style "gnu") |
| 423 | * End: |
| 424 | */ |