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 | |
| 26 | #define VIRTQ_DESC_F_NEXT 1 |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 27 | #define VIRTQ_DESC_F_INDIRECT 4 |
Shesha Sreenivasamurthy | b8f45b3 | 2016-02-03 09:38:36 -0800 | [diff] [blame] | 28 | #define VHOST_USER_REPLY_MASK (0x1 << 2) |
| 29 | |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 30 | #define VHOST_USER_PROTOCOL_F_MQ 0 |
| 31 | #define VHOST_USER_PROTOCOL_F_LOG_SHMFD 1 |
Yoann Desmouceaux | fe2da0e | 2016-03-08 14:54:28 +0100 | [diff] [blame] | 32 | #define VHOST_VRING_F_LOG 0 |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 33 | |
Shesha Sreenivasamurthy | 9f50b0b | 2016-02-23 13:52:31 -0800 | [diff] [blame] | 34 | #define VHOST_USER_F_PROTOCOL_FEATURES 30 |
Shesha Sreenivasamurthy | 0666dc4 | 2016-04-18 16:38:20 -0400 | [diff] [blame] | 35 | #define VHOST_USER_PROTOCOL_FEATURES ((1ULL << VHOST_USER_PROTOCOL_F_MQ) | \ |
| 36 | (1ULL << VHOST_USER_PROTOCOL_F_LOG_SHMFD)) |
Shesha Sreenivasamurthy | b8f45b3 | 2016-02-03 09:38:36 -0800 | [diff] [blame] | 37 | |
| 38 | /* If multiqueue is provided by host, then we suppport it. */ |
| 39 | #define VIRTIO_NET_CTRL_MQ 4 |
| 40 | #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET 0 |
| 41 | #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN 1 |
| 42 | #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX 0x8000 |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 43 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 44 | #define VRING_USED_F_NO_NOTIFY 1 |
| 45 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 46 | #define foreach_virtio_net_feature \ |
| 47 | _ (VIRTIO_NET_F_MRG_RXBUF, 15) \ |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 48 | _ (VIRTIO_NET_F_CTRL_VQ, 17) \ |
| 49 | _ (VIRTIO_NET_F_GUEST_ANNOUNCE, 21) \ |
| 50 | _ (VIRTIO_NET_F_MQ, 22) \ |
| 51 | _ (VHOST_F_LOG_ALL, 26) \ |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 52 | _ (VIRTIO_F_ANY_LAYOUT, 27) \ |
Pierre Pfister | ba1d046 | 2016-07-27 16:38:20 +0100 | [diff] [blame] | 53 | _ (VIRTIO_F_INDIRECT_DESC, 28) \ |
Damjan Marion | e83b7d5 | 2016-09-19 14:31:34 +0200 | [diff] [blame] | 54 | _ (VHOST_USER_F_PROTOCOL_FEATURES, 30) \ |
| 55 | _ (VIRTIO_F_VERSION_1, 32) |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 56 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 57 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 58 | typedef enum |
| 59 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 60 | #define _(f,n) FEAT_##f = (n), |
| 61 | foreach_virtio_net_feature |
| 62 | #undef _ |
| 63 | } virtio_net_feature_t; |
| 64 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 65 | int vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm, |
| 66 | const char *sock_filename, u8 is_server, |
| 67 | u32 * sw_if_index, u64 feature_mask, |
| 68 | u8 renumber, u32 custom_dev_instance, u8 * hwaddr); |
| 69 | int vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm, |
| 70 | const char *sock_filename, u8 is_server, |
| 71 | u32 sw_if_index, u64 feature_mask, |
| 72 | u8 renumber, u32 custom_dev_instance); |
| 73 | int vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm, |
| 74 | u32 sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 75 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 76 | /* *INDENT-OFF* */ |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 77 | typedef struct vhost_user_memory_region |
| 78 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 79 | u64 guest_phys_addr; |
| 80 | u64 memory_size; |
| 81 | u64 userspace_addr; |
| 82 | u64 mmap_offset; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 83 | } __attribute ((packed)) vhost_user_memory_region_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 84 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 85 | typedef struct vhost_user_memory |
| 86 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | u32 nregions; |
| 88 | u32 padding; |
| 89 | vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS]; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 90 | } __attribute ((packed)) vhost_user_memory_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 91 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 92 | typedef struct |
| 93 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 94 | u32 index, num; |
| 95 | } __attribute ((packed)) vhost_vring_state_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 96 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 97 | typedef struct |
| 98 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 99 | u32 index, flags; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 100 | 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] | 101 | } __attribute ((packed)) vhost_vring_addr_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 102 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 103 | typedef struct vhost_user_log |
| 104 | { |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 105 | u64 size; |
| 106 | u64 offset; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 107 | } __attribute ((packed)) vhost_user_log_t; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 108 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 109 | typedef enum vhost_user_req |
| 110 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 111 | VHOST_USER_NONE = 0, |
| 112 | VHOST_USER_GET_FEATURES = 1, |
| 113 | VHOST_USER_SET_FEATURES = 2, |
| 114 | VHOST_USER_SET_OWNER = 3, |
| 115 | VHOST_USER_RESET_OWNER = 4, |
| 116 | VHOST_USER_SET_MEM_TABLE = 5, |
| 117 | VHOST_USER_SET_LOG_BASE = 6, |
| 118 | VHOST_USER_SET_LOG_FD = 7, |
| 119 | VHOST_USER_SET_VRING_NUM = 8, |
| 120 | VHOST_USER_SET_VRING_ADDR = 9, |
| 121 | VHOST_USER_SET_VRING_BASE = 10, |
| 122 | VHOST_USER_GET_VRING_BASE = 11, |
| 123 | VHOST_USER_SET_VRING_KICK = 12, |
| 124 | VHOST_USER_SET_VRING_CALL = 13, |
| 125 | VHOST_USER_SET_VRING_ERR = 14, |
Shesha Sreenivasamurthy | b8f45b3 | 2016-02-03 09:38:36 -0800 | [diff] [blame] | 126 | VHOST_USER_GET_PROTOCOL_FEATURES = 15, |
| 127 | VHOST_USER_SET_PROTOCOL_FEATURES = 16, |
| 128 | VHOST_USER_GET_QUEUE_NUM = 17, |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 129 | VHOST_USER_SET_VRING_ENABLE = 18, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | VHOST_USER_MAX |
| 131 | } vhost_user_req_t; |
| 132 | |
| 133 | // vring_desc I/O buffer descriptor |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 134 | typedef struct |
| 135 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | uint64_t addr; // packet data buffer address |
| 137 | uint32_t len; // packet data buffer size |
| 138 | uint16_t flags; // (see below) |
| 139 | uint16_t next; // optional index next descriptor in chain |
| 140 | } __attribute ((packed)) vring_desc_t; |
| 141 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 142 | typedef struct |
| 143 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 144 | uint16_t flags; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 145 | volatile uint16_t idx; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 146 | uint16_t ring[VHOST_VRING_MAX_SIZE]; |
| 147 | } __attribute ((packed)) vring_avail_t; |
| 148 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 149 | typedef struct |
| 150 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 151 | uint16_t flags; |
| 152 | uint16_t idx; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 153 | struct /* vring_used_elem */ |
| 154 | { |
| 155 | uint32_t id; |
| 156 | uint32_t len; |
| 157 | } ring[VHOST_VRING_MAX_SIZE]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 158 | } __attribute ((packed)) vring_used_t; |
| 159 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 160 | typedef struct |
| 161 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 162 | u8 flags; |
| 163 | u8 gso_type; |
| 164 | u16 hdr_len; |
| 165 | u16 gso_size; |
| 166 | u16 csum_start; |
| 167 | u16 csum_offset; |
| 168 | } __attribute ((packed)) virtio_net_hdr_t; |
| 169 | |
| 170 | typedef struct { |
| 171 | virtio_net_hdr_t hdr; |
| 172 | u16 num_buffers; |
| 173 | } __attribute ((packed)) virtio_net_hdr_mrg_rxbuf_t; |
| 174 | |
| 175 | typedef struct vhost_user_msg { |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 176 | vhost_user_req_t request; |
| 177 | u32 flags; |
| 178 | u32 size; |
| 179 | union |
| 180 | { |
| 181 | u64 u64; |
| 182 | vhost_vring_state_t state; |
| 183 | vhost_vring_addr_t addr; |
| 184 | vhost_user_memory_t memory; |
| 185 | vhost_user_log_t log; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 186 | }; |
| 187 | } __attribute ((packed)) vhost_user_msg_t; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 188 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 189 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 190 | typedef struct |
| 191 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 192 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
| 193 | u16 qsz; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 194 | u16 last_avail_idx; |
| 195 | u16 last_used_idx; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 196 | u16 n_since_last_int; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 197 | vring_desc_t *desc; |
| 198 | vring_avail_t *avail; |
| 199 | vring_used_t *used; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 200 | f64 int_deadline; |
| 201 | u8 started; |
| 202 | u8 enabled; |
| 203 | u8 log_used; |
| 204 | //Put non-runtime in a different cache line |
| 205 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 206 | int errfd; |
| 207 | u32 callfd_idx; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 208 | u32 kickfd_idx; |
| 209 | u64 log_guest_addr; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 210 | } vhost_user_vring_t; |
| 211 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 212 | typedef struct |
| 213 | { |
| 214 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 215 | u32 is_up; |
| 216 | u32 admin_up; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 217 | u32 unix_server_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 218 | u32 unix_file_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 219 | char sock_filename[256]; |
| 220 | int sock_errno; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 221 | u32 hw_if_index, sw_if_index; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 222 | |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 223 | //Feature negotiation |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 224 | u64 features; |
| 225 | u64 feature_mask; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 226 | u64 protocol_features; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 227 | |
| 228 | //Memory region information |
| 229 | u32 nregions; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 230 | vhost_user_memory_region_t regions[VHOST_MEMORY_MAX_NREGIONS]; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 231 | void *region_mmap_addr[VHOST_MEMORY_MAX_NREGIONS]; |
Damjan Marion | 3762370 | 2016-09-20 11:25:27 +0200 | [diff] [blame] | 232 | u64 region_guest_addr_lo[VHOST_MEMORY_MAX_NREGIONS]; |
| 233 | u64 region_guest_addr_hi[VHOST_MEMORY_MAX_NREGIONS]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 234 | u32 region_mmap_fd[VHOST_MEMORY_MAX_NREGIONS]; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 235 | |
| 236 | //Virtual rings |
| 237 | vhost_user_vring_t vrings[VHOST_VRING_MAX_N]; |
| 238 | volatile u32 *vring_locks[VHOST_VRING_MAX_N]; |
| 239 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 240 | int virtio_net_hdr_sz; |
| 241 | int is_any_layout; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 242 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 243 | void *log_base_addr; |
Yoann Desmouceaux | 4667c22 | 2016-02-24 22:51:00 +0100 | [diff] [blame] | 244 | u64 log_size; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 245 | |
| 246 | /* Whether to use spinlock or per_cpu_tx_qid assignment */ |
| 247 | u8 use_tx_spinlock; |
| 248 | u16 *per_cpu_tx_qid; |
| 249 | |
| 250 | /* Vector of workers for this interface */ |
| 251 | u32 *workers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | } vhost_user_intf_t; |
| 253 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 254 | typedef struct |
| 255 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 256 | u16 vhost_iface_index; |
| 257 | u16 qid; |
| 258 | } vhost_iface_and_queue_t; |
| 259 | |
| 260 | typedef struct |
| 261 | { |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 262 | uword dst; |
| 263 | uword src; |
| 264 | u32 len; |
| 265 | } vhost_copy_t; |
| 266 | |
| 267 | typedef struct |
| 268 | { |
| 269 | u16 qid; /** The interface queue index (Not the virtio vring idx) */ |
| 270 | u16 device_index; /** The device index */ |
| 271 | u32 virtio_ring_flags; /** Runtime queue flags **/ |
| 272 | u16 first_desc_len; /** Length of the first data descriptor **/ |
| 273 | virtio_net_hdr_mrg_rxbuf_t hdr; /** Virtio header **/ |
| 274 | } vhost_trace_t; |
| 275 | |
| 276 | |
| 277 | #define VHOST_USER_RX_BUFFERS_N (2 * VLIB_FRAME_SIZE + 2) |
| 278 | #define VHOST_USER_COPY_ARRAY_N (4 * VLIB_FRAME_SIZE) |
| 279 | |
| 280 | typedef struct |
| 281 | { |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 282 | vhost_iface_and_queue_t *rx_queues; |
Pierre Pfister | d3eb90e | 2016-11-29 15:36:14 +0000 | [diff] [blame] | 283 | u32 rx_buffers_len; |
| 284 | u32 rx_buffers[VHOST_USER_RX_BUFFERS_N]; |
| 285 | |
| 286 | virtio_net_hdr_mrg_rxbuf_t tx_headers[VLIB_FRAME_SIZE]; |
| 287 | vhost_copy_t copy[VHOST_USER_COPY_ARRAY_N]; |
| 288 | |
| 289 | /* This is here so it doesn't end-up |
| 290 | * using stack or registers. */ |
| 291 | vhost_trace_t *current_trace; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 292 | } vhost_cpu_t; |
| 293 | |
| 294 | typedef struct |
| 295 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 296 | u32 mtu_bytes; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 297 | vhost_user_intf_t *vhost_user_interfaces; |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 298 | u32 *show_dev_instance_by_real_dev_instance; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 299 | u32 coalesce_frames; |
| 300 | f64 coalesce_time; |
| 301 | int dont_dump_vhost_user_memory; |
Damjan Marion | 0dafaa7 | 2016-09-20 23:21:02 +0200 | [diff] [blame] | 302 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 303 | /** first cpu index */ |
Damjan Marion | 0dafaa7 | 2016-09-20 23:21:02 +0200 | [diff] [blame] | 304 | u32 input_cpu_first_index; |
| 305 | |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 306 | /** total cpu count */ |
Damjan Marion | 0dafaa7 | 2016-09-20 23:21:02 +0200 | [diff] [blame] | 307 | u32 input_cpu_count; |
Pierre Pfister | e21c528 | 2016-09-21 08:04:59 +0100 | [diff] [blame] | 308 | |
| 309 | /** Per-CPU data for vhost-user */ |
| 310 | vhost_cpu_t *cpus; |
Pierre Pfister | dbb3c25 | 2016-11-22 10:33:34 +0000 | [diff] [blame] | 311 | |
| 312 | /** Pseudo random iterator */ |
| 313 | u32 random; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 314 | } vhost_user_main_t; |
| 315 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 316 | typedef struct |
| 317 | { |
| 318 | u8 if_name[64]; |
| 319 | u32 sw_if_index; |
| 320 | u32 virtio_net_hdr_sz; |
| 321 | u64 features; |
| 322 | u8 is_server; |
| 323 | u8 sock_filename[256]; |
| 324 | u32 num_regions; |
| 325 | int sock_errno; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 326 | } vhost_user_intf_details_t; |
| 327 | |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 328 | int vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm, |
| 329 | vhost_user_intf_details_t ** out_vuids); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 330 | |
| 331 | // CLI commands to be used from dpdk |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 332 | clib_error_t *vhost_user_connect_command_fn (vlib_main_t * vm, |
| 333 | unformat_input_t * input, |
| 334 | vlib_cli_command_t * cmd); |
| 335 | clib_error_t *vhost_user_delete_command_fn (vlib_main_t * vm, |
| 336 | unformat_input_t * input, |
| 337 | vlib_cli_command_t * cmd); |
| 338 | clib_error_t *show_vhost_user_command_fn (vlib_main_t * vm, |
| 339 | unformat_input_t * input, |
| 340 | vlib_cli_command_t * cmd); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 341 | |
| 342 | #endif |
Damjan Marion | 00a9dca | 2016-08-17 17:05:46 +0200 | [diff] [blame] | 343 | |
| 344 | /* |
| 345 | * fd.io coding-style-patch-verification: ON |
| 346 | * |
| 347 | * Local Variables: |
| 348 | * eval: (c-set-style "gnu") |
| 349 | * End: |
| 350 | */ |