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