K. Y. Srinivasan | 5ca7252 | 2011-05-12 19:34:37 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Copyright (c) 2011, Microsoft Corporation. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms and conditions of the GNU General Public License, |
| 7 | * version 2, as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
Jeff Kirsher | adf8d3f | 2013-12-06 06:28:47 -0800 | [diff] [blame] | 15 | * this program; if not, see <http://www.gnu.org/licenses/>. |
K. Y. Srinivasan | 5ca7252 | 2011-05-12 19:34:37 -0700 | [diff] [blame] | 16 | * |
| 17 | * Authors: |
| 18 | * Haiyang Zhang <haiyangz@microsoft.com> |
| 19 | * Hank Janssen <hjanssen@microsoft.com> |
| 20 | * K. Y. Srinivasan <kys@microsoft.com> |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #ifndef _HYPERV_NET_H |
| 25 | #define _HYPERV_NET_H |
| 26 | |
K. Y. Srinivasan | 8a07941 | 2011-05-12 19:34:42 -0700 | [diff] [blame] | 27 | #include <linux/list.h> |
Greg Kroah-Hartman | 46a9719 | 2011-10-04 12:29:52 -0700 | [diff] [blame] | 28 | #include <linux/hyperv.h> |
Linus Walleij | 7591157 | 2012-05-11 22:15:50 +0000 | [diff] [blame] | 29 | #include <linux/rndis.h> |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 30 | |
| 31 | /* Fwd declaration */ |
| 32 | struct hv_netvsc_packet; |
KY Srinivasan | e3d605e | 2014-03-08 19:23:16 -0800 | [diff] [blame] | 33 | struct ndis_tcp_ip_checksum_info; |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 34 | |
| 35 | /* Represent the xfer page packet which contains 1 or more netvsc packet */ |
| 36 | struct xferpage_packet { |
| 37 | struct list_head list_ent; |
Haiyang Zhang | 63f6921 | 2012-10-02 05:30:23 +0000 | [diff] [blame] | 38 | u32 status; |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 39 | |
| 40 | /* # of netvsc packets this xfer packet contains */ |
| 41 | u32 count; |
| 42 | }; |
| 43 | |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 44 | /* |
| 45 | * Represent netvsc packet which contains 1 RNDIS and 1 ethernet frame |
| 46 | * within the RNDIS |
| 47 | */ |
| 48 | struct hv_netvsc_packet { |
| 49 | /* Bookkeeping stuff */ |
| 50 | struct list_head list_ent; |
Haiyang Zhang | 63f6921 | 2012-10-02 05:30:23 +0000 | [diff] [blame] | 51 | u32 status; |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 52 | |
| 53 | struct hv_device *device; |
| 54 | bool is_data_pkt; |
Haiyang Zhang | 1f5f3a7 | 2012-03-12 10:20:50 +0000 | [diff] [blame] | 55 | u16 vlan_tci; |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 56 | |
| 57 | /* |
| 58 | * Valid only for receives when we break a xfer page packet |
| 59 | * into multiple netvsc packets |
| 60 | */ |
| 61 | struct xferpage_packet *xfer_page_pkt; |
| 62 | |
| 63 | union { |
| 64 | struct { |
| 65 | u64 recv_completion_tid; |
| 66 | void *recv_completion_ctx; |
| 67 | void (*recv_completion)(void *context); |
| 68 | } recv; |
| 69 | struct { |
| 70 | u64 send_completion_tid; |
| 71 | void *send_completion_ctx; |
| 72 | void (*send_completion)(void *context); |
| 73 | } send; |
| 74 | } completion; |
| 75 | |
| 76 | /* This points to the memory after page_buf */ |
KY Srinivasan | 8a00251 | 2014-03-08 19:23:14 -0800 | [diff] [blame] | 77 | struct rndis_message *rndis_msg; |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 78 | |
| 79 | u32 total_data_buflen; |
| 80 | /* Points to the send/receive buffer where the ethernet frame is */ |
Haiyang Zhang | 4532634 | 2011-12-15 13:45:15 -0800 | [diff] [blame] | 81 | void *data; |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 82 | u32 page_buf_cnt; |
Haiyang Zhang | 4532634 | 2011-12-15 13:45:15 -0800 | [diff] [blame] | 83 | struct hv_page_buffer page_buf[0]; |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 84 | }; |
| 85 | |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 86 | struct netvsc_device_info { |
Jianjun Kong | 9a4c831 | 2013-01-18 16:52:09 +0000 | [diff] [blame] | 87 | unsigned char mac_adr[ETH_ALEN]; |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 88 | bool link_state; /* 0 - link up, 1 - link down */ |
K. Y. Srinivasan | 78001df | 2011-05-12 19:35:04 -0700 | [diff] [blame] | 89 | int ring_size; |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 90 | }; |
| 91 | |
Haiyang Zhang | d426b2e | 2011-11-30 07:19:08 -0800 | [diff] [blame] | 92 | enum rndis_device_state { |
| 93 | RNDIS_DEV_UNINITIALIZED = 0, |
| 94 | RNDIS_DEV_INITIALIZING, |
| 95 | RNDIS_DEV_INITIALIZED, |
| 96 | RNDIS_DEV_DATAINITIALIZED, |
| 97 | }; |
| 98 | |
| 99 | struct rndis_device { |
| 100 | struct netvsc_device *net_dev; |
| 101 | |
| 102 | enum rndis_device_state state; |
| 103 | bool link_state; |
| 104 | atomic_t new_req_id; |
| 105 | |
| 106 | spinlock_t request_lock; |
| 107 | struct list_head req_list; |
| 108 | |
| 109 | unsigned char hw_mac_adr[ETH_ALEN]; |
| 110 | }; |
| 111 | |
| 112 | |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 113 | /* Interface */ |
| 114 | int netvsc_device_add(struct hv_device *device, void *additional_info); |
| 115 | int netvsc_device_remove(struct hv_device *device); |
K. Y. Srinivasan | f9819f0 | 2011-05-12 19:34:49 -0700 | [diff] [blame] | 116 | int netvsc_send(struct hv_device *device, |
| 117 | struct hv_netvsc_packet *packet); |
K. Y. Srinivasan | 90ef117 | 2011-05-12 19:34:50 -0700 | [diff] [blame] | 118 | void netvsc_linkstatus_callback(struct hv_device *device_obj, |
| 119 | unsigned int status); |
K. Y. Srinivasan | f79adf8 | 2011-05-12 19:34:51 -0700 | [diff] [blame] | 120 | int netvsc_recv_callback(struct hv_device *device_obj, |
KY Srinivasan | e3d605e | 2014-03-08 19:23:16 -0800 | [diff] [blame] | 121 | struct hv_netvsc_packet *packet, |
| 122 | struct ndis_tcp_ip_checksum_info *csum_info); |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 123 | int rndis_filter_open(struct hv_device *dev); |
| 124 | int rndis_filter_close(struct hv_device *dev); |
Haiyang Zhang | bdbad57 | 2011-05-23 09:03:49 -0700 | [diff] [blame] | 125 | int rndis_filter_device_add(struct hv_device *dev, |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 126 | void *additional_info); |
Haiyang Zhang | df06bcf | 2011-05-23 09:03:47 -0700 | [diff] [blame] | 127 | void rndis_filter_device_remove(struct hv_device *dev); |
K. Y. Srinivasan | 5fcc411 | 2011-05-12 19:34:52 -0700 | [diff] [blame] | 128 | int rndis_filter_receive(struct hv_device *dev, |
| 129 | struct hv_netvsc_packet *pkt); |
K. Y. Srinivasan | 4130886 | 2011-05-12 19:34:38 -0700 | [diff] [blame] | 130 | |
Haiyang Zhang | d426b2e | 2011-11-30 07:19:08 -0800 | [diff] [blame] | 131 | int rndis_filter_set_packet_filter(struct rndis_device *dev, u32 new_filter); |
Haiyang Zhang | 1ce09e8 | 2012-07-10 07:19:22 +0000 | [diff] [blame] | 132 | int rndis_filter_set_device_mac(struct hv_device *hdev, char *mac); |
Haiyang Zhang | d426b2e | 2011-11-30 07:19:08 -0800 | [diff] [blame] | 133 | |
| 134 | |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 135 | #define NVSP_INVALID_PROTOCOL_VERSION ((u32)0xFFFFFFFF) |
| 136 | |
| 137 | #define NVSP_PROTOCOL_VERSION_1 2 |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 138 | #define NVSP_PROTOCOL_VERSION_2 0x30002 |
Haiyang Zhang | a1eabb0 | 2014-02-19 15:49:45 -0800 | [diff] [blame] | 139 | #define NVSP_PROTOCOL_VERSION_4 0x40000 |
| 140 | #define NVSP_PROTOCOL_VERSION_5 0x50000 |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 141 | |
| 142 | enum { |
| 143 | NVSP_MSG_TYPE_NONE = 0, |
| 144 | |
| 145 | /* Init Messages */ |
| 146 | NVSP_MSG_TYPE_INIT = 1, |
| 147 | NVSP_MSG_TYPE_INIT_COMPLETE = 2, |
| 148 | |
| 149 | NVSP_VERSION_MSG_START = 100, |
| 150 | |
| 151 | /* Version 1 Messages */ |
| 152 | NVSP_MSG1_TYPE_SEND_NDIS_VER = NVSP_VERSION_MSG_START, |
| 153 | |
| 154 | NVSP_MSG1_TYPE_SEND_RECV_BUF, |
| 155 | NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE, |
| 156 | NVSP_MSG1_TYPE_REVOKE_RECV_BUF, |
| 157 | |
| 158 | NVSP_MSG1_TYPE_SEND_SEND_BUF, |
| 159 | NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE, |
| 160 | NVSP_MSG1_TYPE_REVOKE_SEND_BUF, |
| 161 | |
| 162 | NVSP_MSG1_TYPE_SEND_RNDIS_PKT, |
| 163 | NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE, |
| 164 | |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 165 | /* Version 2 messages */ |
| 166 | NVSP_MSG2_TYPE_SEND_CHIMNEY_DELEGATED_BUF, |
| 167 | NVSP_MSG2_TYPE_SEND_CHIMNEY_DELEGATED_BUF_COMP, |
| 168 | NVSP_MSG2_TYPE_REVOKE_CHIMNEY_DELEGATED_BUF, |
| 169 | |
| 170 | NVSP_MSG2_TYPE_RESUME_CHIMNEY_RX_INDICATION, |
| 171 | |
| 172 | NVSP_MSG2_TYPE_TERMINATE_CHIMNEY, |
| 173 | NVSP_MSG2_TYPE_TERMINATE_CHIMNEY_COMP, |
| 174 | |
| 175 | NVSP_MSG2_TYPE_INDICATE_CHIMNEY_EVENT, |
| 176 | |
| 177 | NVSP_MSG2_TYPE_SEND_CHIMNEY_PKT, |
| 178 | NVSP_MSG2_TYPE_SEND_CHIMNEY_PKT_COMP, |
| 179 | |
| 180 | NVSP_MSG2_TYPE_POST_CHIMNEY_RECV_REQ, |
| 181 | NVSP_MSG2_TYPE_POST_CHIMNEY_RECV_REQ_COMP, |
| 182 | |
| 183 | NVSP_MSG2_TYPE_ALLOC_RXBUF, |
| 184 | NVSP_MSG2_TYPE_ALLOC_RXBUF_COMP, |
| 185 | |
| 186 | NVSP_MSG2_TYPE_FREE_RXBUF, |
| 187 | |
| 188 | NVSP_MSG2_TYPE_SEND_VMQ_RNDIS_PKT, |
| 189 | NVSP_MSG2_TYPE_SEND_VMQ_RNDIS_PKT_COMP, |
| 190 | |
| 191 | NVSP_MSG2_TYPE_SEND_NDIS_CONFIG, |
| 192 | |
| 193 | NVSP_MSG2_TYPE_ALLOC_CHIMNEY_HANDLE, |
| 194 | NVSP_MSG2_TYPE_ALLOC_CHIMNEY_HANDLE_COMP, |
Haiyang Zhang | a1eabb0 | 2014-02-19 15:49:45 -0800 | [diff] [blame] | 195 | |
| 196 | NVSP_MSG2_MAX = NVSP_MSG2_TYPE_ALLOC_CHIMNEY_HANDLE_COMP, |
| 197 | |
| 198 | /* Version 4 messages */ |
| 199 | NVSP_MSG4_TYPE_SEND_VF_ASSOCIATION, |
| 200 | NVSP_MSG4_TYPE_SWITCH_DATA_PATH, |
| 201 | NVSP_MSG4_TYPE_UPLINK_CONNECT_STATE_DEPRECATED, |
| 202 | |
| 203 | NVSP_MSG4_MAX = NVSP_MSG4_TYPE_UPLINK_CONNECT_STATE_DEPRECATED, |
| 204 | |
| 205 | /* Version 5 messages */ |
| 206 | NVSP_MSG5_TYPE_OID_QUERY_EX, |
| 207 | NVSP_MSG5_TYPE_OID_QUERY_EX_COMP, |
| 208 | NVSP_MSG5_TYPE_SUBCHANNEL, |
| 209 | NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE, |
| 210 | |
| 211 | NVSP_MSG5_MAX = NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE, |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 212 | }; |
| 213 | |
| 214 | enum { |
| 215 | NVSP_STAT_NONE = 0, |
| 216 | NVSP_STAT_SUCCESS, |
| 217 | NVSP_STAT_FAIL, |
| 218 | NVSP_STAT_PROTOCOL_TOO_NEW, |
| 219 | NVSP_STAT_PROTOCOL_TOO_OLD, |
| 220 | NVSP_STAT_INVALID_RNDIS_PKT, |
| 221 | NVSP_STAT_BUSY, |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 222 | NVSP_STAT_PROTOCOL_UNSUPPORTED, |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 223 | NVSP_STAT_MAX, |
| 224 | }; |
| 225 | |
| 226 | struct nvsp_message_header { |
| 227 | u32 msg_type; |
| 228 | }; |
| 229 | |
| 230 | /* Init Messages */ |
| 231 | |
| 232 | /* |
| 233 | * This message is used by the VSC to initialize the channel after the channels |
| 234 | * has been opened. This message should never include anything other then |
| 235 | * versioning (i.e. this message will be the same for ever). |
| 236 | */ |
| 237 | struct nvsp_message_init { |
| 238 | u32 min_protocol_ver; |
| 239 | u32 max_protocol_ver; |
| 240 | } __packed; |
| 241 | |
| 242 | /* |
| 243 | * This message is used by the VSP to complete the initialization of the |
| 244 | * channel. This message should never include anything other then versioning |
| 245 | * (i.e. this message will be the same for ever). |
| 246 | */ |
| 247 | struct nvsp_message_init_complete { |
| 248 | u32 negotiated_protocol_ver; |
| 249 | u32 max_mdl_chain_len; |
| 250 | u32 status; |
| 251 | } __packed; |
| 252 | |
| 253 | union nvsp_message_init_uber { |
| 254 | struct nvsp_message_init init; |
| 255 | struct nvsp_message_init_complete init_complete; |
| 256 | } __packed; |
| 257 | |
| 258 | /* Version 1 Messages */ |
| 259 | |
| 260 | /* |
| 261 | * This message is used by the VSC to send the NDIS version to the VSP. The VSP |
| 262 | * can use this information when handling OIDs sent by the VSC. |
| 263 | */ |
| 264 | struct nvsp_1_message_send_ndis_version { |
| 265 | u32 ndis_major_ver; |
| 266 | u32 ndis_minor_ver; |
| 267 | } __packed; |
| 268 | |
| 269 | /* |
| 270 | * This message is used by the VSC to send a receive buffer to the VSP. The VSP |
| 271 | * can then use the receive buffer to send data to the VSC. |
| 272 | */ |
| 273 | struct nvsp_1_message_send_receive_buffer { |
| 274 | u32 gpadl_handle; |
| 275 | u16 id; |
| 276 | } __packed; |
| 277 | |
| 278 | struct nvsp_1_receive_buffer_section { |
| 279 | u32 offset; |
| 280 | u32 sub_alloc_size; |
| 281 | u32 num_sub_allocs; |
| 282 | u32 end_offset; |
| 283 | } __packed; |
| 284 | |
| 285 | /* |
| 286 | * This message is used by the VSP to acknowledge a receive buffer send by the |
| 287 | * VSC. This message must be sent by the VSP before the VSP uses the receive |
| 288 | * buffer. |
| 289 | */ |
| 290 | struct nvsp_1_message_send_receive_buffer_complete { |
| 291 | u32 status; |
| 292 | u32 num_sections; |
| 293 | |
| 294 | /* |
| 295 | * The receive buffer is split into two parts, a large suballocation |
| 296 | * section and a small suballocation section. These sections are then |
| 297 | * suballocated by a certain size. |
| 298 | */ |
| 299 | |
| 300 | /* |
| 301 | * For example, the following break up of the receive buffer has 6 |
| 302 | * large suballocations and 10 small suballocations. |
| 303 | */ |
| 304 | |
| 305 | /* |
| 306 | * | Large Section | | Small Section | |
| 307 | * ------------------------------------------------------------ |
| 308 | * | | | | | | | | | | | | | | | | | | |
| 309 | * | | |
| 310 | * LargeOffset SmallOffset |
| 311 | */ |
| 312 | |
| 313 | struct nvsp_1_receive_buffer_section sections[1]; |
| 314 | } __packed; |
| 315 | |
| 316 | /* |
| 317 | * This message is sent by the VSC to revoke the receive buffer. After the VSP |
| 318 | * completes this transaction, the vsp should never use the receive buffer |
| 319 | * again. |
| 320 | */ |
| 321 | struct nvsp_1_message_revoke_receive_buffer { |
| 322 | u16 id; |
| 323 | }; |
| 324 | |
| 325 | /* |
| 326 | * This message is used by the VSC to send a send buffer to the VSP. The VSC |
| 327 | * can then use the send buffer to send data to the VSP. |
| 328 | */ |
| 329 | struct nvsp_1_message_send_send_buffer { |
| 330 | u32 gpadl_handle; |
| 331 | u16 id; |
| 332 | } __packed; |
| 333 | |
| 334 | /* |
| 335 | * This message is used by the VSP to acknowledge a send buffer sent by the |
| 336 | * VSC. This message must be sent by the VSP before the VSP uses the sent |
| 337 | * buffer. |
| 338 | */ |
| 339 | struct nvsp_1_message_send_send_buffer_complete { |
| 340 | u32 status; |
| 341 | |
| 342 | /* |
| 343 | * The VSC gets to choose the size of the send buffer and the VSP gets |
| 344 | * to choose the sections size of the buffer. This was done to enable |
| 345 | * dynamic reconfigurations when the cost of GPA-direct buffers |
| 346 | * decreases. |
| 347 | */ |
| 348 | u32 section_size; |
| 349 | } __packed; |
| 350 | |
| 351 | /* |
| 352 | * This message is sent by the VSC to revoke the send buffer. After the VSP |
| 353 | * completes this transaction, the vsp should never use the send buffer again. |
| 354 | */ |
| 355 | struct nvsp_1_message_revoke_send_buffer { |
| 356 | u16 id; |
| 357 | }; |
| 358 | |
| 359 | /* |
| 360 | * This message is used by both the VSP and the VSC to send a RNDIS message to |
| 361 | * the opposite channel endpoint. |
| 362 | */ |
| 363 | struct nvsp_1_message_send_rndis_packet { |
| 364 | /* |
| 365 | * This field is specified by RNIDS. They assume there's two different |
| 366 | * channels of communication. However, the Network VSP only has one. |
| 367 | * Therefore, the channel travels with the RNDIS packet. |
| 368 | */ |
| 369 | u32 channel_type; |
| 370 | |
| 371 | /* |
| 372 | * This field is used to send part or all of the data through a send |
| 373 | * buffer. This values specifies an index into the send buffer. If the |
| 374 | * index is 0xFFFFFFFF, then the send buffer is not being used and all |
| 375 | * of the data was sent through other VMBus mechanisms. |
| 376 | */ |
| 377 | u32 send_buf_section_index; |
| 378 | u32 send_buf_section_size; |
| 379 | } __packed; |
| 380 | |
| 381 | /* |
| 382 | * This message is used by both the VSP and the VSC to complete a RNDIS message |
| 383 | * to the opposite channel endpoint. At this point, the initiator of this |
| 384 | * message cannot use any resources associated with the original RNDIS packet. |
| 385 | */ |
| 386 | struct nvsp_1_message_send_rndis_packet_complete { |
| 387 | u32 status; |
| 388 | }; |
| 389 | |
| 390 | union nvsp_1_message_uber { |
| 391 | struct nvsp_1_message_send_ndis_version send_ndis_ver; |
| 392 | |
| 393 | struct nvsp_1_message_send_receive_buffer send_recv_buf; |
| 394 | struct nvsp_1_message_send_receive_buffer_complete |
| 395 | send_recv_buf_complete; |
| 396 | struct nvsp_1_message_revoke_receive_buffer revoke_recv_buf; |
| 397 | |
| 398 | struct nvsp_1_message_send_send_buffer send_send_buf; |
| 399 | struct nvsp_1_message_send_send_buffer_complete send_send_buf_complete; |
| 400 | struct nvsp_1_message_revoke_send_buffer revoke_send_buf; |
| 401 | |
| 402 | struct nvsp_1_message_send_rndis_packet send_rndis_pkt; |
| 403 | struct nvsp_1_message_send_rndis_packet_complete |
| 404 | send_rndis_pkt_complete; |
| 405 | } __packed; |
| 406 | |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 407 | |
| 408 | /* |
| 409 | * Network VSP protocol version 2 messages: |
| 410 | */ |
| 411 | struct nvsp_2_vsc_capability { |
| 412 | union { |
| 413 | u64 data; |
| 414 | struct { |
| 415 | u64 vmq:1; |
| 416 | u64 chimney:1; |
| 417 | u64 sriov:1; |
| 418 | u64 ieee8021q:1; |
| 419 | u64 correlation_id:1; |
| 420 | }; |
| 421 | }; |
| 422 | } __packed; |
| 423 | |
| 424 | struct nvsp_2_send_ndis_config { |
| 425 | u32 mtu; |
| 426 | u32 reserved; |
| 427 | struct nvsp_2_vsc_capability capability; |
| 428 | } __packed; |
| 429 | |
| 430 | /* Allocate receive buffer */ |
| 431 | struct nvsp_2_alloc_rxbuf { |
| 432 | /* Allocation ID to match the allocation request and response */ |
| 433 | u32 alloc_id; |
| 434 | |
| 435 | /* Length of the VM shared memory receive buffer that needs to |
| 436 | * be allocated |
| 437 | */ |
| 438 | u32 len; |
| 439 | } __packed; |
| 440 | |
| 441 | /* Allocate receive buffer complete */ |
| 442 | struct nvsp_2_alloc_rxbuf_comp { |
| 443 | /* The NDIS_STATUS code for buffer allocation */ |
| 444 | u32 status; |
| 445 | |
| 446 | u32 alloc_id; |
| 447 | |
| 448 | /* GPADL handle for the allocated receive buffer */ |
| 449 | u32 gpadl_handle; |
| 450 | |
| 451 | /* Receive buffer ID */ |
| 452 | u64 recv_buf_id; |
| 453 | } __packed; |
| 454 | |
| 455 | struct nvsp_2_free_rxbuf { |
| 456 | u64 recv_buf_id; |
| 457 | } __packed; |
| 458 | |
| 459 | union nvsp_2_message_uber { |
| 460 | struct nvsp_2_send_ndis_config send_ndis_config; |
| 461 | struct nvsp_2_alloc_rxbuf alloc_rxbuf; |
| 462 | struct nvsp_2_alloc_rxbuf_comp alloc_rxbuf_comp; |
| 463 | struct nvsp_2_free_rxbuf free_rxbuf; |
| 464 | } __packed; |
| 465 | |
Haiyang Zhang | a1eabb0 | 2014-02-19 15:49:45 -0800 | [diff] [blame] | 466 | enum nvsp_subchannel_operation { |
| 467 | NVSP_SUBCHANNEL_NONE = 0, |
| 468 | NVSP_SUBCHANNEL_ALLOCATE, |
| 469 | NVSP_SUBCHANNEL_MAX |
| 470 | }; |
| 471 | |
| 472 | struct nvsp_5_subchannel_request { |
| 473 | u32 op; |
| 474 | u32 num_subchannels; |
| 475 | } __packed; |
| 476 | |
| 477 | struct nvsp_5_subchannel_complete { |
| 478 | u32 status; |
| 479 | u32 num_subchannels; /* Actual number of subchannels allocated */ |
| 480 | } __packed; |
| 481 | |
| 482 | struct nvsp_5_send_indirect_table { |
| 483 | /* The number of entries in the send indirection table */ |
| 484 | u32 count; |
| 485 | |
| 486 | /* The offset of the send indireciton table from top of this struct. |
| 487 | * The send indirection table tells which channel to put the send |
| 488 | * traffic on. Each entry is a channel number. |
| 489 | */ |
| 490 | u32 offset; |
| 491 | } __packed; |
| 492 | |
| 493 | union nvsp_5_message_uber { |
| 494 | struct nvsp_5_subchannel_request subchn_req; |
| 495 | struct nvsp_5_subchannel_complete subchn_comp; |
| 496 | struct nvsp_5_send_indirect_table send_table; |
| 497 | } __packed; |
| 498 | |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 499 | union nvsp_all_messages { |
| 500 | union nvsp_message_init_uber init_msg; |
| 501 | union nvsp_1_message_uber v1_msg; |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 502 | union nvsp_2_message_uber v2_msg; |
Haiyang Zhang | a1eabb0 | 2014-02-19 15:49:45 -0800 | [diff] [blame] | 503 | union nvsp_5_message_uber v5_msg; |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 504 | } __packed; |
| 505 | |
| 506 | /* ALL Messages */ |
| 507 | struct nvsp_message { |
| 508 | struct nvsp_message_header hdr; |
| 509 | union nvsp_all_messages msg; |
| 510 | } __packed; |
| 511 | |
| 512 | |
Haiyang Zhang | 4d447c9 | 2011-12-15 13:45:17 -0800 | [diff] [blame] | 513 | #define NETVSC_MTU 65536 |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 514 | |
Haiyang Zhang | b679ef7 | 2014-01-27 15:03:42 -0800 | [diff] [blame] | 515 | #define NETVSC_RECEIVE_BUFFER_SIZE (1024*1024*16) /* 16MB */ |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 516 | |
| 517 | #define NETVSC_RECEIVE_BUFFER_ID 0xcafe |
| 518 | |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 519 | /* Preallocated receive packets */ |
| 520 | #define NETVSC_RECEIVE_PACKETLIST_COUNT 256 |
| 521 | |
| 522 | #define NETVSC_PACKET_SIZE 2048 |
| 523 | |
| 524 | /* Per netvsc channel-specific */ |
| 525 | struct netvsc_device { |
| 526 | struct hv_device *dev; |
| 527 | |
Haiyang Zhang | f157e78 | 2011-12-15 13:45:16 -0800 | [diff] [blame] | 528 | u32 nvsp_version; |
| 529 | |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 530 | atomic_t num_outstanding_sends; |
Haiyang Zhang | dc5cd89 | 2012-06-04 06:42:38 +0000 | [diff] [blame] | 531 | wait_queue_head_t wait_drain; |
Haiyang Zhang | 4d447c9 | 2011-12-15 13:45:17 -0800 | [diff] [blame] | 532 | bool start_remove; |
K. Y. Srinivasan | c38b9c7 | 2011-08-27 11:31:12 -0700 | [diff] [blame] | 533 | bool destroy; |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 534 | /* |
| 535 | * List of free preallocated hv_netvsc_packet to represent receive |
| 536 | * packet |
| 537 | */ |
| 538 | struct list_head recv_pkt_list; |
| 539 | spinlock_t recv_pkt_list_lock; |
| 540 | |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 541 | /* Receive buffer allocated by us but manages by NetVSP */ |
| 542 | void *recv_buf; |
| 543 | u32 recv_buf_size; |
| 544 | u32 recv_buf_gpadl_handle; |
| 545 | u32 recv_section_cnt; |
| 546 | struct nvsp_1_receive_buffer_section *recv_section; |
| 547 | |
| 548 | /* Used for NetVSP initialization protocol */ |
| 549 | struct completion channel_init_wait; |
| 550 | struct nvsp_message channel_init_pkt; |
| 551 | |
| 552 | struct nvsp_message revoke_packet; |
| 553 | /* unsigned char HwMacAddr[HW_MACADDR_LEN]; */ |
| 554 | |
K. Y. Srinivasan | 2ddd5e5 | 2011-09-13 10:59:49 -0700 | [diff] [blame] | 555 | struct net_device *ndev; |
| 556 | |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 557 | /* Holds rndis device info */ |
| 558 | void *extension; |
KY Srinivasan | ee0c4c3 | 2014-02-16 16:38:45 -0800 | [diff] [blame] | 559 | /* The recive buffer for this device */ |
| 560 | unsigned char cb_buffer[NETVSC_PACKET_SIZE]; |
K. Y. Srinivasan | 5258490 | 2011-05-12 19:34:39 -0700 | [diff] [blame] | 561 | }; |
| 562 | |
K. Y. Srinivasan | 4a5cea3 | 2011-05-12 19:34:40 -0700 | [diff] [blame] | 563 | /* NdisInitialize message */ |
| 564 | struct rndis_initialize_request { |
| 565 | u32 req_id; |
| 566 | u32 major_ver; |
| 567 | u32 minor_ver; |
| 568 | u32 max_xfer_size; |
| 569 | }; |
| 570 | |
| 571 | /* Response to NdisInitialize */ |
| 572 | struct rndis_initialize_complete { |
| 573 | u32 req_id; |
| 574 | u32 status; |
| 575 | u32 major_ver; |
| 576 | u32 minor_ver; |
| 577 | u32 dev_flags; |
| 578 | u32 medium; |
| 579 | u32 max_pkt_per_msg; |
| 580 | u32 max_xfer_size; |
| 581 | u32 pkt_alignment_factor; |
| 582 | u32 af_list_offset; |
| 583 | u32 af_list_size; |
| 584 | }; |
| 585 | |
| 586 | /* Call manager devices only: Information about an address family */ |
| 587 | /* supported by the device is appended to the response to NdisInitialize. */ |
| 588 | struct rndis_co_address_family { |
| 589 | u32 address_family; |
| 590 | u32 major_ver; |
| 591 | u32 minor_ver; |
| 592 | }; |
| 593 | |
| 594 | /* NdisHalt message */ |
| 595 | struct rndis_halt_request { |
| 596 | u32 req_id; |
| 597 | }; |
| 598 | |
| 599 | /* NdisQueryRequest message */ |
| 600 | struct rndis_query_request { |
| 601 | u32 req_id; |
| 602 | u32 oid; |
| 603 | u32 info_buflen; |
| 604 | u32 info_buf_offset; |
| 605 | u32 dev_vc_handle; |
| 606 | }; |
| 607 | |
| 608 | /* Response to NdisQueryRequest */ |
| 609 | struct rndis_query_complete { |
| 610 | u32 req_id; |
| 611 | u32 status; |
| 612 | u32 info_buflen; |
| 613 | u32 info_buf_offset; |
| 614 | }; |
| 615 | |
| 616 | /* NdisSetRequest message */ |
| 617 | struct rndis_set_request { |
| 618 | u32 req_id; |
| 619 | u32 oid; |
| 620 | u32 info_buflen; |
| 621 | u32 info_buf_offset; |
| 622 | u32 dev_vc_handle; |
| 623 | }; |
| 624 | |
| 625 | /* Response to NdisSetRequest */ |
| 626 | struct rndis_set_complete { |
| 627 | u32 req_id; |
| 628 | u32 status; |
| 629 | }; |
| 630 | |
| 631 | /* NdisReset message */ |
| 632 | struct rndis_reset_request { |
| 633 | u32 reserved; |
| 634 | }; |
| 635 | |
| 636 | /* Response to NdisReset */ |
| 637 | struct rndis_reset_complete { |
| 638 | u32 status; |
| 639 | u32 addressing_reset; |
| 640 | }; |
| 641 | |
| 642 | /* NdisMIndicateStatus message */ |
| 643 | struct rndis_indicate_status { |
| 644 | u32 status; |
| 645 | u32 status_buflen; |
| 646 | u32 status_buf_offset; |
| 647 | }; |
| 648 | |
| 649 | /* Diagnostic information passed as the status buffer in */ |
| 650 | /* struct rndis_indicate_status messages signifying error conditions. */ |
| 651 | struct rndis_diagnostic_info { |
| 652 | u32 diag_status; |
| 653 | u32 error_offset; |
| 654 | }; |
| 655 | |
| 656 | /* NdisKeepAlive message */ |
| 657 | struct rndis_keepalive_request { |
| 658 | u32 req_id; |
| 659 | }; |
| 660 | |
| 661 | /* Response to NdisKeepAlive */ |
| 662 | struct rndis_keepalive_complete { |
| 663 | u32 req_id; |
| 664 | u32 status; |
| 665 | }; |
| 666 | |
| 667 | /* |
| 668 | * Data message. All Offset fields contain byte offsets from the beginning of |
| 669 | * struct rndis_packet. All Length fields are in bytes. VcHandle is set |
| 670 | * to 0 for connectionless data, otherwise it contains the VC handle. |
| 671 | */ |
| 672 | struct rndis_packet { |
| 673 | u32 data_offset; |
| 674 | u32 data_len; |
| 675 | u32 oob_data_offset; |
| 676 | u32 oob_data_len; |
| 677 | u32 num_oob_data_elements; |
| 678 | u32 per_pkt_info_offset; |
| 679 | u32 per_pkt_info_len; |
| 680 | u32 vc_handle; |
| 681 | u32 reserved; |
| 682 | }; |
| 683 | |
| 684 | /* Optional Out of Band data associated with a Data message. */ |
| 685 | struct rndis_oobd { |
| 686 | u32 size; |
| 687 | u32 type; |
| 688 | u32 class_info_offset; |
| 689 | }; |
| 690 | |
| 691 | /* Packet extension field contents associated with a Data message. */ |
| 692 | struct rndis_per_packet_info { |
| 693 | u32 size; |
| 694 | u32 type; |
Haiyang Zhang | 1f5f3a7 | 2012-03-12 10:20:50 +0000 | [diff] [blame] | 695 | u32 ppi_offset; |
K. Y. Srinivasan | 4a5cea3 | 2011-05-12 19:34:40 -0700 | [diff] [blame] | 696 | }; |
| 697 | |
Haiyang Zhang | 1f5f3a7 | 2012-03-12 10:20:50 +0000 | [diff] [blame] | 698 | enum ndis_per_pkt_info_type { |
| 699 | TCPIP_CHKSUM_PKTINFO, |
| 700 | IPSEC_PKTINFO, |
| 701 | TCP_LARGESEND_PKTINFO, |
| 702 | CLASSIFICATION_HANDLE_PKTINFO, |
| 703 | NDIS_RESERVED, |
| 704 | SG_LIST_PKTINFO, |
| 705 | IEEE_8021Q_INFO, |
| 706 | ORIGINAL_PKTINFO, |
| 707 | PACKET_CANCEL_ID, |
| 708 | ORIGINAL_NET_BUFLIST, |
| 709 | CACHED_NET_BUFLIST, |
| 710 | SHORT_PKT_PADINFO, |
| 711 | MAX_PER_PKT_INFO |
| 712 | }; |
| 713 | |
| 714 | struct ndis_pkt_8021q_info { |
| 715 | union { |
| 716 | struct { |
| 717 | u32 pri:3; /* User Priority */ |
| 718 | u32 cfi:1; /* Canonical Format ID */ |
| 719 | u32 vlanid:12; /* VLAN ID */ |
| 720 | u32 reserved:16; |
| 721 | }; |
| 722 | u32 value; |
| 723 | }; |
| 724 | }; |
| 725 | |
KY Srinivasan | 4a0e70a | 2014-03-08 19:23:15 -0800 | [diff] [blame] | 726 | struct ndis_oject_header { |
| 727 | u8 type; |
| 728 | u8 revision; |
| 729 | u16 size; |
| 730 | }; |
| 731 | |
| 732 | #define NDIS_OBJECT_TYPE_DEFAULT 0x80 |
| 733 | #define NDIS_OFFLOAD_PARAMETERS_REVISION_3 3 |
| 734 | #define NDIS_OFFLOAD_PARAMETERS_NO_CHANGE 0 |
| 735 | #define NDIS_OFFLOAD_PARAMETERS_LSOV2_DISABLED 1 |
| 736 | #define NDIS_OFFLOAD_PARAMETERS_LSOV2_ENABLED 2 |
| 737 | #define NDIS_OFFLOAD_PARAMETERS_LSOV1_ENABLED 2 |
| 738 | #define NDIS_OFFLOAD_PARAMETERS_RSC_DISABLED 1 |
| 739 | #define NDIS_OFFLOAD_PARAMETERS_RSC_ENABLED 2 |
| 740 | #define NDIS_OFFLOAD_PARAMETERS_TX_RX_DISABLED 1 |
| 741 | #define NDIS_OFFLOAD_PARAMETERS_TX_ENABLED_RX_DISABLED 2 |
| 742 | #define NDIS_OFFLOAD_PARAMETERS_RX_ENABLED_TX_DISABLED 3 |
| 743 | #define NDIS_OFFLOAD_PARAMETERS_TX_RX_ENABLED 4 |
| 744 | |
| 745 | /* |
| 746 | * New offload OIDs for NDIS 6 |
| 747 | */ |
| 748 | #define OID_TCP_OFFLOAD_CURRENT_CONFIG 0xFC01020B /* query only */ |
| 749 | #define OID_TCP_OFFLOAD_PARAMETERS 0xFC01020C /* set only */ |
| 750 | #define OID_TCP_OFFLOAD_HARDWARE_CAPABILITIES 0xFC01020D/* query only */ |
| 751 | #define OID_TCP_CONNECTION_OFFLOAD_CURRENT_CONFIG 0xFC01020E /* query only */ |
| 752 | #define OID_TCP_CONNECTION_OFFLOAD_HARDWARE_CAPABILITIES 0xFC01020F /* query */ |
| 753 | #define OID_OFFLOAD_ENCAPSULATION 0x0101010A /* set/query */ |
| 754 | |
| 755 | struct ndis_offload_params { |
| 756 | struct ndis_oject_header header; |
| 757 | u8 ip_v4_csum; |
| 758 | u8 tcp_ip_v4_csum; |
| 759 | u8 udp_ip_v4_csum; |
| 760 | u8 tcp_ip_v6_csum; |
| 761 | u8 udp_ip_v6_csum; |
| 762 | u8 lso_v1; |
| 763 | u8 ip_sec_v1; |
| 764 | u8 lso_v2_ipv4; |
| 765 | u8 lso_v2_ipv6; |
| 766 | u8 tcp_connection_ip_v4; |
| 767 | u8 tcp_connection_ip_v6; |
| 768 | u32 flags; |
| 769 | u8 ip_sec_v2; |
| 770 | u8 ip_sec_v2_ip_v4; |
| 771 | struct { |
| 772 | u8 rsc_ip_v4; |
| 773 | u8 rsc_ip_v6; |
| 774 | }; |
| 775 | struct { |
| 776 | u8 encapsulated_packet_task_offload; |
| 777 | u8 encapsulation_types; |
| 778 | }; |
| 779 | }; |
| 780 | |
KY Srinivasan | e3d605e | 2014-03-08 19:23:16 -0800 | [diff] [blame] | 781 | struct ndis_tcp_ip_checksum_info { |
| 782 | union { |
| 783 | struct { |
| 784 | u32 is_ipv4:1; |
| 785 | u32 is_ipv6:1; |
| 786 | u32 tcp_checksum:1; |
| 787 | u32 udp_checksum:1; |
| 788 | u32 ip_header_checksum:1; |
| 789 | u32 reserved:11; |
| 790 | u32 tcp_header_offset:10; |
| 791 | } transmit; |
| 792 | struct { |
| 793 | u32 tcp_checksum_failed:1; |
| 794 | u32 udp_checksum_failed:1; |
| 795 | u32 ip_checksum_failed:1; |
| 796 | u32 tcp_checksum_succeeded:1; |
| 797 | u32 udp_checksum_succeeded:1; |
| 798 | u32 ip_checksum_succeeded:1; |
| 799 | u32 loopback:1; |
| 800 | u32 tcp_checksum_value_invalid:1; |
| 801 | u32 ip_checksum_value_invalid:1; |
| 802 | } receive; |
| 803 | u32 value; |
| 804 | }; |
| 805 | }; |
| 806 | |
Haiyang Zhang | 1f5f3a7 | 2012-03-12 10:20:50 +0000 | [diff] [blame] | 807 | #define NDIS_VLAN_PPI_SIZE (sizeof(struct rndis_per_packet_info) + \ |
| 808 | sizeof(struct ndis_pkt_8021q_info)) |
| 809 | |
KY Srinivasan | e3d605e | 2014-03-08 19:23:16 -0800 | [diff] [blame] | 810 | #define NDIS_CSUM_PPI_SIZE (sizeof(struct rndis_per_packet_info) + \ |
| 811 | sizeof(struct ndis_tcp_ip_checksum_info)) |
| 812 | |
K. Y. Srinivasan | 4a5cea3 | 2011-05-12 19:34:40 -0700 | [diff] [blame] | 813 | /* Format of Information buffer passed in a SetRequest for the OID */ |
| 814 | /* OID_GEN_RNDIS_CONFIG_PARAMETER. */ |
| 815 | struct rndis_config_parameter_info { |
| 816 | u32 parameter_name_offset; |
| 817 | u32 parameter_name_length; |
| 818 | u32 parameter_type; |
| 819 | u32 parameter_value_offset; |
| 820 | u32 parameter_value_length; |
| 821 | }; |
| 822 | |
| 823 | /* Values for ParameterType in struct rndis_config_parameter_info */ |
| 824 | #define RNDIS_CONFIG_PARAM_TYPE_INTEGER 0 |
| 825 | #define RNDIS_CONFIG_PARAM_TYPE_STRING 2 |
| 826 | |
| 827 | /* CONDIS Miniport messages for connection oriented devices */ |
| 828 | /* that do not implement a call manager. */ |
| 829 | |
| 830 | /* CoNdisMiniportCreateVc message */ |
| 831 | struct rcondis_mp_create_vc { |
| 832 | u32 req_id; |
| 833 | u32 ndis_vc_handle; |
| 834 | }; |
| 835 | |
| 836 | /* Response to CoNdisMiniportCreateVc */ |
| 837 | struct rcondis_mp_create_vc_complete { |
| 838 | u32 req_id; |
| 839 | u32 dev_vc_handle; |
| 840 | u32 status; |
| 841 | }; |
| 842 | |
| 843 | /* CoNdisMiniportDeleteVc message */ |
| 844 | struct rcondis_mp_delete_vc { |
| 845 | u32 req_id; |
| 846 | u32 dev_vc_handle; |
| 847 | }; |
| 848 | |
| 849 | /* Response to CoNdisMiniportDeleteVc */ |
| 850 | struct rcondis_mp_delete_vc_complete { |
| 851 | u32 req_id; |
| 852 | u32 status; |
| 853 | }; |
| 854 | |
| 855 | /* CoNdisMiniportQueryRequest message */ |
| 856 | struct rcondis_mp_query_request { |
| 857 | u32 req_id; |
| 858 | u32 request_type; |
| 859 | u32 oid; |
| 860 | u32 dev_vc_handle; |
| 861 | u32 info_buflen; |
| 862 | u32 info_buf_offset; |
| 863 | }; |
| 864 | |
| 865 | /* CoNdisMiniportSetRequest message */ |
| 866 | struct rcondis_mp_set_request { |
| 867 | u32 req_id; |
| 868 | u32 request_type; |
| 869 | u32 oid; |
| 870 | u32 dev_vc_handle; |
| 871 | u32 info_buflen; |
| 872 | u32 info_buf_offset; |
| 873 | }; |
| 874 | |
| 875 | /* CoNdisIndicateStatus message */ |
| 876 | struct rcondis_indicate_status { |
| 877 | u32 ndis_vc_handle; |
| 878 | u32 status; |
| 879 | u32 status_buflen; |
| 880 | u32 status_buf_offset; |
| 881 | }; |
| 882 | |
| 883 | /* CONDIS Call/VC parameters */ |
| 884 | struct rcondis_specific_parameters { |
| 885 | u32 parameter_type; |
| 886 | u32 parameter_length; |
| 887 | u32 parameter_lffset; |
| 888 | }; |
| 889 | |
| 890 | struct rcondis_media_parameters { |
| 891 | u32 flags; |
| 892 | u32 reserved1; |
| 893 | u32 reserved2; |
| 894 | struct rcondis_specific_parameters media_specific; |
| 895 | }; |
| 896 | |
| 897 | struct rndis_flowspec { |
| 898 | u32 token_rate; |
| 899 | u32 token_bucket_size; |
| 900 | u32 peak_bandwidth; |
| 901 | u32 latency; |
| 902 | u32 delay_variation; |
| 903 | u32 service_type; |
| 904 | u32 max_sdu_size; |
| 905 | u32 minimum_policed_size; |
| 906 | }; |
| 907 | |
| 908 | struct rcondis_call_manager_parameters { |
| 909 | struct rndis_flowspec transmit; |
| 910 | struct rndis_flowspec receive; |
| 911 | struct rcondis_specific_parameters call_mgr_specific; |
| 912 | }; |
| 913 | |
| 914 | /* CoNdisMiniportActivateVc message */ |
| 915 | struct rcondis_mp_activate_vc_request { |
| 916 | u32 req_id; |
| 917 | u32 flags; |
| 918 | u32 dev_vc_handle; |
| 919 | u32 media_params_offset; |
| 920 | u32 media_params_length; |
| 921 | u32 call_mgr_params_offset; |
| 922 | u32 call_mgr_params_length; |
| 923 | }; |
| 924 | |
| 925 | /* Response to CoNdisMiniportActivateVc */ |
| 926 | struct rcondis_mp_activate_vc_complete { |
| 927 | u32 req_id; |
| 928 | u32 status; |
| 929 | }; |
| 930 | |
| 931 | /* CoNdisMiniportDeactivateVc message */ |
| 932 | struct rcondis_mp_deactivate_vc_request { |
| 933 | u32 req_id; |
| 934 | u32 flags; |
| 935 | u32 dev_vc_handle; |
| 936 | }; |
| 937 | |
| 938 | /* Response to CoNdisMiniportDeactivateVc */ |
| 939 | struct rcondis_mp_deactivate_vc_complete { |
| 940 | u32 req_id; |
| 941 | u32 status; |
| 942 | }; |
| 943 | |
| 944 | |
| 945 | /* union with all of the RNDIS messages */ |
| 946 | union rndis_message_container { |
| 947 | struct rndis_packet pkt; |
| 948 | struct rndis_initialize_request init_req; |
| 949 | struct rndis_halt_request halt_req; |
| 950 | struct rndis_query_request query_req; |
| 951 | struct rndis_set_request set_req; |
| 952 | struct rndis_reset_request reset_req; |
| 953 | struct rndis_keepalive_request keep_alive_req; |
| 954 | struct rndis_indicate_status indicate_status; |
| 955 | struct rndis_initialize_complete init_complete; |
| 956 | struct rndis_query_complete query_complete; |
| 957 | struct rndis_set_complete set_complete; |
| 958 | struct rndis_reset_complete reset_complete; |
| 959 | struct rndis_keepalive_complete keep_alive_complete; |
| 960 | struct rcondis_mp_create_vc co_miniport_create_vc; |
| 961 | struct rcondis_mp_delete_vc co_miniport_delete_vc; |
| 962 | struct rcondis_indicate_status co_indicate_status; |
| 963 | struct rcondis_mp_activate_vc_request co_miniport_activate_vc; |
| 964 | struct rcondis_mp_deactivate_vc_request co_miniport_deactivate_vc; |
| 965 | struct rcondis_mp_create_vc_complete co_miniport_create_vc_complete; |
| 966 | struct rcondis_mp_delete_vc_complete co_miniport_delete_vc_complete; |
| 967 | struct rcondis_mp_activate_vc_complete co_miniport_activate_vc_complete; |
| 968 | struct rcondis_mp_deactivate_vc_complete |
| 969 | co_miniport_deactivate_vc_complete; |
| 970 | }; |
| 971 | |
| 972 | /* Remote NDIS message format */ |
| 973 | struct rndis_message { |
| 974 | u32 ndis_msg_type; |
| 975 | |
| 976 | /* Total length of this message, from the beginning */ |
| 977 | /* of the sruct rndis_message, in bytes. */ |
| 978 | u32 msg_len; |
| 979 | |
| 980 | /* Actual message */ |
| 981 | union rndis_message_container msg; |
| 982 | }; |
| 983 | |
K. Y. Srinivasan | 9dbfd15 | 2011-05-12 19:35:00 -0700 | [diff] [blame] | 984 | |
K. Y. Srinivasan | 4a5cea3 | 2011-05-12 19:34:40 -0700 | [diff] [blame] | 985 | /* Handy macros */ |
| 986 | |
| 987 | /* get the size of an RNDIS message. Pass in the message type, */ |
| 988 | /* struct rndis_set_request, struct rndis_packet for example */ |
| 989 | #define RNDIS_MESSAGE_SIZE(msg) \ |
| 990 | (sizeof(msg) + (sizeof(struct rndis_message) - \ |
| 991 | sizeof(union rndis_message_container))) |
| 992 | |
| 993 | /* get pointer to info buffer with message pointer */ |
| 994 | #define MESSAGE_TO_INFO_BUFFER(msg) \ |
| 995 | (((unsigned char *)(msg)) + msg->info_buf_offset) |
| 996 | |
| 997 | /* get pointer to status buffer with message pointer */ |
| 998 | #define MESSAGE_TO_STATUS_BUFFER(msg) \ |
| 999 | (((unsigned char *)(msg)) + msg->status_buf_offset) |
| 1000 | |
| 1001 | /* get pointer to OOBD buffer with message pointer */ |
| 1002 | #define MESSAGE_TO_OOBD_BUFFER(msg) \ |
| 1003 | (((unsigned char *)(msg)) + msg->oob_data_offset) |
| 1004 | |
| 1005 | /* get pointer to data buffer with message pointer */ |
| 1006 | #define MESSAGE_TO_DATA_BUFFER(msg) \ |
| 1007 | (((unsigned char *)(msg)) + msg->per_pkt_info_offset) |
| 1008 | |
| 1009 | /* get pointer to contained message from NDIS_MESSAGE pointer */ |
| 1010 | #define RNDIS_MESSAGE_PTR_TO_MESSAGE_PTR(rndis_msg) \ |
| 1011 | ((void *) &rndis_msg->msg) |
| 1012 | |
| 1013 | /* get pointer to contained message from NDIS_MESSAGE pointer */ |
| 1014 | #define RNDIS_MESSAGE_RAW_PTR_TO_MESSAGE_PTR(rndis_msg) \ |
| 1015 | ((void *) rndis_msg) |
| 1016 | |
K. Y. Srinivasan | 299d0925 | 2011-05-12 19:34:41 -0700 | [diff] [blame] | 1017 | |
| 1018 | #define __struct_bcount(x) |
| 1019 | |
| 1020 | |
| 1021 | |
| 1022 | #define RNDIS_HEADER_SIZE (sizeof(struct rndis_message) - \ |
| 1023 | sizeof(union rndis_message_container)) |
| 1024 | |
| 1025 | #define NDIS_PACKET_TYPE_DIRECTED 0x00000001 |
| 1026 | #define NDIS_PACKET_TYPE_MULTICAST 0x00000002 |
| 1027 | #define NDIS_PACKET_TYPE_ALL_MULTICAST 0x00000004 |
| 1028 | #define NDIS_PACKET_TYPE_BROADCAST 0x00000008 |
| 1029 | #define NDIS_PACKET_TYPE_SOURCE_ROUTING 0x00000010 |
| 1030 | #define NDIS_PACKET_TYPE_PROMISCUOUS 0x00000020 |
| 1031 | #define NDIS_PACKET_TYPE_SMT 0x00000040 |
| 1032 | #define NDIS_PACKET_TYPE_ALL_LOCAL 0x00000080 |
| 1033 | #define NDIS_PACKET_TYPE_GROUP 0x00000100 |
| 1034 | #define NDIS_PACKET_TYPE_ALL_FUNCTIONAL 0x00000200 |
| 1035 | #define NDIS_PACKET_TYPE_FUNCTIONAL 0x00000400 |
| 1036 | #define NDIS_PACKET_TYPE_MAC_FRAME 0x00000800 |
| 1037 | |
KY Srinivasan | 08cd04b | 2014-03-08 19:23:17 -0800 | [diff] [blame^] | 1038 | #define INFO_IPV4 2 |
| 1039 | #define INFO_IPV6 4 |
| 1040 | #define INFO_TCP 2 |
| 1041 | #define INFO_UDP 4 |
| 1042 | |
| 1043 | #define TRANSPORT_INFO_NOT_IP 0 |
| 1044 | #define TRANSPORT_INFO_IPV4_TCP ((INFO_IPV4 << 16) | INFO_TCP) |
| 1045 | #define TRANSPORT_INFO_IPV4_UDP ((INFO_IPV4 << 16) | INFO_UDP) |
| 1046 | #define TRANSPORT_INFO_IPV6_TCP ((INFO_IPV6 << 16) | INFO_TCP) |
| 1047 | #define TRANSPORT_INFO_IPV6_UDP ((INFO_IPV6 << 16) | INFO_UDP) |
K. Y. Srinivasan | 299d0925 | 2011-05-12 19:34:41 -0700 | [diff] [blame] | 1048 | |
K. Y. Srinivasan | 299d0925 | 2011-05-12 19:34:41 -0700 | [diff] [blame] | 1049 | |
K. Y. Srinivasan | 5ca7252 | 2011-05-12 19:34:37 -0700 | [diff] [blame] | 1050 | #endif /* _HYPERV_NET_H */ |