blob: 694bf7cada903e4a772d0355ceef37a77057d495 [file] [log] [blame]
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -07001/*
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 Kirsheradf8d3f2013-12-06 06:28:47 -080015 * this program; if not, see <http://www.gnu.org/licenses/>.
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -070016 *
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. Srinivasan8a079412011-05-12 19:34:42 -070027#include <linux/list.h>
Greg Kroah-Hartman46a97192011-10-04 12:29:52 -070028#include <linux/hyperv.h>
Linus Walleij75911572012-05-11 22:15:50 +000029#include <linux/rndis.h>
K. Y. Srinivasan41308862011-05-12 19:34:38 -070030
31/* Fwd declaration */
32struct hv_netvsc_packet;
33
34/* Represent the xfer page packet which contains 1 or more netvsc packet */
35struct xferpage_packet {
36 struct list_head list_ent;
Haiyang Zhang63f69212012-10-02 05:30:23 +000037 u32 status;
K. Y. Srinivasan41308862011-05-12 19:34:38 -070038
39 /* # of netvsc packets this xfer packet contains */
40 u32 count;
41};
42
K. Y. Srinivasan41308862011-05-12 19:34:38 -070043/*
44 * Represent netvsc packet which contains 1 RNDIS and 1 ethernet frame
45 * within the RNDIS
46 */
47struct hv_netvsc_packet {
48 /* Bookkeeping stuff */
49 struct list_head list_ent;
Haiyang Zhang63f69212012-10-02 05:30:23 +000050 u32 status;
K. Y. Srinivasan41308862011-05-12 19:34:38 -070051
52 struct hv_device *device;
53 bool is_data_pkt;
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +000054 u16 vlan_tci;
K. Y. Srinivasan41308862011-05-12 19:34:38 -070055
56 /*
57 * Valid only for receives when we break a xfer page packet
58 * into multiple netvsc packets
59 */
60 struct xferpage_packet *xfer_page_pkt;
61
62 union {
63 struct {
64 u64 recv_completion_tid;
65 void *recv_completion_ctx;
66 void (*recv_completion)(void *context);
67 } recv;
68 struct {
69 u64 send_completion_tid;
70 void *send_completion_ctx;
71 void (*send_completion)(void *context);
72 } send;
73 } completion;
74
75 /* This points to the memory after page_buf */
KY Srinivasan8a002512014-03-08 19:23:14 -080076 struct rndis_message *rndis_msg;
K. Y. Srinivasan41308862011-05-12 19:34:38 -070077
78 u32 total_data_buflen;
79 /* Points to the send/receive buffer where the ethernet frame is */
Haiyang Zhang45326342011-12-15 13:45:15 -080080 void *data;
K. Y. Srinivasan41308862011-05-12 19:34:38 -070081 u32 page_buf_cnt;
Haiyang Zhang45326342011-12-15 13:45:15 -080082 struct hv_page_buffer page_buf[0];
K. Y. Srinivasan41308862011-05-12 19:34:38 -070083};
84
K. Y. Srinivasan41308862011-05-12 19:34:38 -070085struct netvsc_device_info {
Jianjun Kong9a4c8312013-01-18 16:52:09 +000086 unsigned char mac_adr[ETH_ALEN];
K. Y. Srinivasan41308862011-05-12 19:34:38 -070087 bool link_state; /* 0 - link up, 1 - link down */
K. Y. Srinivasan78001df2011-05-12 19:35:04 -070088 int ring_size;
K. Y. Srinivasan41308862011-05-12 19:34:38 -070089};
90
Haiyang Zhangd426b2e2011-11-30 07:19:08 -080091enum rndis_device_state {
92 RNDIS_DEV_UNINITIALIZED = 0,
93 RNDIS_DEV_INITIALIZING,
94 RNDIS_DEV_INITIALIZED,
95 RNDIS_DEV_DATAINITIALIZED,
96};
97
98struct rndis_device {
99 struct netvsc_device *net_dev;
100
101 enum rndis_device_state state;
102 bool link_state;
103 atomic_t new_req_id;
104
105 spinlock_t request_lock;
106 struct list_head req_list;
107
108 unsigned char hw_mac_adr[ETH_ALEN];
109};
110
111
K. Y. Srinivasan41308862011-05-12 19:34:38 -0700112/* Interface */
113int netvsc_device_add(struct hv_device *device, void *additional_info);
114int netvsc_device_remove(struct hv_device *device);
K. Y. Srinivasanf9819f02011-05-12 19:34:49 -0700115int netvsc_send(struct hv_device *device,
116 struct hv_netvsc_packet *packet);
K. Y. Srinivasan90ef1172011-05-12 19:34:50 -0700117void netvsc_linkstatus_callback(struct hv_device *device_obj,
118 unsigned int status);
K. Y. Srinivasanf79adf82011-05-12 19:34:51 -0700119int netvsc_recv_callback(struct hv_device *device_obj,
120 struct hv_netvsc_packet *packet);
K. Y. Srinivasan41308862011-05-12 19:34:38 -0700121int rndis_filter_open(struct hv_device *dev);
122int rndis_filter_close(struct hv_device *dev);
Haiyang Zhangbdbad572011-05-23 09:03:49 -0700123int rndis_filter_device_add(struct hv_device *dev,
K. Y. Srinivasan41308862011-05-12 19:34:38 -0700124 void *additional_info);
Haiyang Zhangdf06bcf2011-05-23 09:03:47 -0700125void rndis_filter_device_remove(struct hv_device *dev);
K. Y. Srinivasan5fcc4112011-05-12 19:34:52 -0700126int rndis_filter_receive(struct hv_device *dev,
127 struct hv_netvsc_packet *pkt);
K. Y. Srinivasan41308862011-05-12 19:34:38 -0700128
Haiyang Zhangd426b2e2011-11-30 07:19:08 -0800129int rndis_filter_set_packet_filter(struct rndis_device *dev, u32 new_filter);
Haiyang Zhang1ce09e82012-07-10 07:19:22 +0000130int rndis_filter_set_device_mac(struct hv_device *hdev, char *mac);
Haiyang Zhangd426b2e2011-11-30 07:19:08 -0800131
132
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700133#define NVSP_INVALID_PROTOCOL_VERSION ((u32)0xFFFFFFFF)
134
135#define NVSP_PROTOCOL_VERSION_1 2
Haiyang Zhangf157e782011-12-15 13:45:16 -0800136#define NVSP_PROTOCOL_VERSION_2 0x30002
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800137#define NVSP_PROTOCOL_VERSION_4 0x40000
138#define NVSP_PROTOCOL_VERSION_5 0x50000
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700139
140enum {
141 NVSP_MSG_TYPE_NONE = 0,
142
143 /* Init Messages */
144 NVSP_MSG_TYPE_INIT = 1,
145 NVSP_MSG_TYPE_INIT_COMPLETE = 2,
146
147 NVSP_VERSION_MSG_START = 100,
148
149 /* Version 1 Messages */
150 NVSP_MSG1_TYPE_SEND_NDIS_VER = NVSP_VERSION_MSG_START,
151
152 NVSP_MSG1_TYPE_SEND_RECV_BUF,
153 NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE,
154 NVSP_MSG1_TYPE_REVOKE_RECV_BUF,
155
156 NVSP_MSG1_TYPE_SEND_SEND_BUF,
157 NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE,
158 NVSP_MSG1_TYPE_REVOKE_SEND_BUF,
159
160 NVSP_MSG1_TYPE_SEND_RNDIS_PKT,
161 NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE,
162
Haiyang Zhangf157e782011-12-15 13:45:16 -0800163 /* Version 2 messages */
164 NVSP_MSG2_TYPE_SEND_CHIMNEY_DELEGATED_BUF,
165 NVSP_MSG2_TYPE_SEND_CHIMNEY_DELEGATED_BUF_COMP,
166 NVSP_MSG2_TYPE_REVOKE_CHIMNEY_DELEGATED_BUF,
167
168 NVSP_MSG2_TYPE_RESUME_CHIMNEY_RX_INDICATION,
169
170 NVSP_MSG2_TYPE_TERMINATE_CHIMNEY,
171 NVSP_MSG2_TYPE_TERMINATE_CHIMNEY_COMP,
172
173 NVSP_MSG2_TYPE_INDICATE_CHIMNEY_EVENT,
174
175 NVSP_MSG2_TYPE_SEND_CHIMNEY_PKT,
176 NVSP_MSG2_TYPE_SEND_CHIMNEY_PKT_COMP,
177
178 NVSP_MSG2_TYPE_POST_CHIMNEY_RECV_REQ,
179 NVSP_MSG2_TYPE_POST_CHIMNEY_RECV_REQ_COMP,
180
181 NVSP_MSG2_TYPE_ALLOC_RXBUF,
182 NVSP_MSG2_TYPE_ALLOC_RXBUF_COMP,
183
184 NVSP_MSG2_TYPE_FREE_RXBUF,
185
186 NVSP_MSG2_TYPE_SEND_VMQ_RNDIS_PKT,
187 NVSP_MSG2_TYPE_SEND_VMQ_RNDIS_PKT_COMP,
188
189 NVSP_MSG2_TYPE_SEND_NDIS_CONFIG,
190
191 NVSP_MSG2_TYPE_ALLOC_CHIMNEY_HANDLE,
192 NVSP_MSG2_TYPE_ALLOC_CHIMNEY_HANDLE_COMP,
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800193
194 NVSP_MSG2_MAX = NVSP_MSG2_TYPE_ALLOC_CHIMNEY_HANDLE_COMP,
195
196 /* Version 4 messages */
197 NVSP_MSG4_TYPE_SEND_VF_ASSOCIATION,
198 NVSP_MSG4_TYPE_SWITCH_DATA_PATH,
199 NVSP_MSG4_TYPE_UPLINK_CONNECT_STATE_DEPRECATED,
200
201 NVSP_MSG4_MAX = NVSP_MSG4_TYPE_UPLINK_CONNECT_STATE_DEPRECATED,
202
203 /* Version 5 messages */
204 NVSP_MSG5_TYPE_OID_QUERY_EX,
205 NVSP_MSG5_TYPE_OID_QUERY_EX_COMP,
206 NVSP_MSG5_TYPE_SUBCHANNEL,
207 NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE,
208
209 NVSP_MSG5_MAX = NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE,
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700210};
211
212enum {
213 NVSP_STAT_NONE = 0,
214 NVSP_STAT_SUCCESS,
215 NVSP_STAT_FAIL,
216 NVSP_STAT_PROTOCOL_TOO_NEW,
217 NVSP_STAT_PROTOCOL_TOO_OLD,
218 NVSP_STAT_INVALID_RNDIS_PKT,
219 NVSP_STAT_BUSY,
Haiyang Zhangf157e782011-12-15 13:45:16 -0800220 NVSP_STAT_PROTOCOL_UNSUPPORTED,
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700221 NVSP_STAT_MAX,
222};
223
224struct nvsp_message_header {
225 u32 msg_type;
226};
227
228/* Init Messages */
229
230/*
231 * This message is used by the VSC to initialize the channel after the channels
232 * has been opened. This message should never include anything other then
233 * versioning (i.e. this message will be the same for ever).
234 */
235struct nvsp_message_init {
236 u32 min_protocol_ver;
237 u32 max_protocol_ver;
238} __packed;
239
240/*
241 * This message is used by the VSP to complete the initialization of the
242 * channel. This message should never include anything other then versioning
243 * (i.e. this message will be the same for ever).
244 */
245struct nvsp_message_init_complete {
246 u32 negotiated_protocol_ver;
247 u32 max_mdl_chain_len;
248 u32 status;
249} __packed;
250
251union nvsp_message_init_uber {
252 struct nvsp_message_init init;
253 struct nvsp_message_init_complete init_complete;
254} __packed;
255
256/* Version 1 Messages */
257
258/*
259 * This message is used by the VSC to send the NDIS version to the VSP. The VSP
260 * can use this information when handling OIDs sent by the VSC.
261 */
262struct nvsp_1_message_send_ndis_version {
263 u32 ndis_major_ver;
264 u32 ndis_minor_ver;
265} __packed;
266
267/*
268 * This message is used by the VSC to send a receive buffer to the VSP. The VSP
269 * can then use the receive buffer to send data to the VSC.
270 */
271struct nvsp_1_message_send_receive_buffer {
272 u32 gpadl_handle;
273 u16 id;
274} __packed;
275
276struct nvsp_1_receive_buffer_section {
277 u32 offset;
278 u32 sub_alloc_size;
279 u32 num_sub_allocs;
280 u32 end_offset;
281} __packed;
282
283/*
284 * This message is used by the VSP to acknowledge a receive buffer send by the
285 * VSC. This message must be sent by the VSP before the VSP uses the receive
286 * buffer.
287 */
288struct nvsp_1_message_send_receive_buffer_complete {
289 u32 status;
290 u32 num_sections;
291
292 /*
293 * The receive buffer is split into two parts, a large suballocation
294 * section and a small suballocation section. These sections are then
295 * suballocated by a certain size.
296 */
297
298 /*
299 * For example, the following break up of the receive buffer has 6
300 * large suballocations and 10 small suballocations.
301 */
302
303 /*
304 * | Large Section | | Small Section |
305 * ------------------------------------------------------------
306 * | | | | | | | | | | | | | | | | | |
307 * | |
308 * LargeOffset SmallOffset
309 */
310
311 struct nvsp_1_receive_buffer_section sections[1];
312} __packed;
313
314/*
315 * This message is sent by the VSC to revoke the receive buffer. After the VSP
316 * completes this transaction, the vsp should never use the receive buffer
317 * again.
318 */
319struct nvsp_1_message_revoke_receive_buffer {
320 u16 id;
321};
322
323/*
324 * This message is used by the VSC to send a send buffer to the VSP. The VSC
325 * can then use the send buffer to send data to the VSP.
326 */
327struct nvsp_1_message_send_send_buffer {
328 u32 gpadl_handle;
329 u16 id;
330} __packed;
331
332/*
333 * This message is used by the VSP to acknowledge a send buffer sent by the
334 * VSC. This message must be sent by the VSP before the VSP uses the sent
335 * buffer.
336 */
337struct nvsp_1_message_send_send_buffer_complete {
338 u32 status;
339
340 /*
341 * The VSC gets to choose the size of the send buffer and the VSP gets
342 * to choose the sections size of the buffer. This was done to enable
343 * dynamic reconfigurations when the cost of GPA-direct buffers
344 * decreases.
345 */
346 u32 section_size;
347} __packed;
348
349/*
350 * This message is sent by the VSC to revoke the send buffer. After the VSP
351 * completes this transaction, the vsp should never use the send buffer again.
352 */
353struct nvsp_1_message_revoke_send_buffer {
354 u16 id;
355};
356
357/*
358 * This message is used by both the VSP and the VSC to send a RNDIS message to
359 * the opposite channel endpoint.
360 */
361struct nvsp_1_message_send_rndis_packet {
362 /*
363 * This field is specified by RNIDS. They assume there's two different
364 * channels of communication. However, the Network VSP only has one.
365 * Therefore, the channel travels with the RNDIS packet.
366 */
367 u32 channel_type;
368
369 /*
370 * This field is used to send part or all of the data through a send
371 * buffer. This values specifies an index into the send buffer. If the
372 * index is 0xFFFFFFFF, then the send buffer is not being used and all
373 * of the data was sent through other VMBus mechanisms.
374 */
375 u32 send_buf_section_index;
376 u32 send_buf_section_size;
377} __packed;
378
379/*
380 * This message is used by both the VSP and the VSC to complete a RNDIS message
381 * to the opposite channel endpoint. At this point, the initiator of this
382 * message cannot use any resources associated with the original RNDIS packet.
383 */
384struct nvsp_1_message_send_rndis_packet_complete {
385 u32 status;
386};
387
388union nvsp_1_message_uber {
389 struct nvsp_1_message_send_ndis_version send_ndis_ver;
390
391 struct nvsp_1_message_send_receive_buffer send_recv_buf;
392 struct nvsp_1_message_send_receive_buffer_complete
393 send_recv_buf_complete;
394 struct nvsp_1_message_revoke_receive_buffer revoke_recv_buf;
395
396 struct nvsp_1_message_send_send_buffer send_send_buf;
397 struct nvsp_1_message_send_send_buffer_complete send_send_buf_complete;
398 struct nvsp_1_message_revoke_send_buffer revoke_send_buf;
399
400 struct nvsp_1_message_send_rndis_packet send_rndis_pkt;
401 struct nvsp_1_message_send_rndis_packet_complete
402 send_rndis_pkt_complete;
403} __packed;
404
Haiyang Zhangf157e782011-12-15 13:45:16 -0800405
406/*
407 * Network VSP protocol version 2 messages:
408 */
409struct nvsp_2_vsc_capability {
410 union {
411 u64 data;
412 struct {
413 u64 vmq:1;
414 u64 chimney:1;
415 u64 sriov:1;
416 u64 ieee8021q:1;
417 u64 correlation_id:1;
418 };
419 };
420} __packed;
421
422struct nvsp_2_send_ndis_config {
423 u32 mtu;
424 u32 reserved;
425 struct nvsp_2_vsc_capability capability;
426} __packed;
427
428/* Allocate receive buffer */
429struct nvsp_2_alloc_rxbuf {
430 /* Allocation ID to match the allocation request and response */
431 u32 alloc_id;
432
433 /* Length of the VM shared memory receive buffer that needs to
434 * be allocated
435 */
436 u32 len;
437} __packed;
438
439/* Allocate receive buffer complete */
440struct nvsp_2_alloc_rxbuf_comp {
441 /* The NDIS_STATUS code for buffer allocation */
442 u32 status;
443
444 u32 alloc_id;
445
446 /* GPADL handle for the allocated receive buffer */
447 u32 gpadl_handle;
448
449 /* Receive buffer ID */
450 u64 recv_buf_id;
451} __packed;
452
453struct nvsp_2_free_rxbuf {
454 u64 recv_buf_id;
455} __packed;
456
457union nvsp_2_message_uber {
458 struct nvsp_2_send_ndis_config send_ndis_config;
459 struct nvsp_2_alloc_rxbuf alloc_rxbuf;
460 struct nvsp_2_alloc_rxbuf_comp alloc_rxbuf_comp;
461 struct nvsp_2_free_rxbuf free_rxbuf;
462} __packed;
463
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800464enum nvsp_subchannel_operation {
465 NVSP_SUBCHANNEL_NONE = 0,
466 NVSP_SUBCHANNEL_ALLOCATE,
467 NVSP_SUBCHANNEL_MAX
468};
469
470struct nvsp_5_subchannel_request {
471 u32 op;
472 u32 num_subchannels;
473} __packed;
474
475struct nvsp_5_subchannel_complete {
476 u32 status;
477 u32 num_subchannels; /* Actual number of subchannels allocated */
478} __packed;
479
480struct nvsp_5_send_indirect_table {
481 /* The number of entries in the send indirection table */
482 u32 count;
483
484 /* The offset of the send indireciton table from top of this struct.
485 * The send indirection table tells which channel to put the send
486 * traffic on. Each entry is a channel number.
487 */
488 u32 offset;
489} __packed;
490
491union nvsp_5_message_uber {
492 struct nvsp_5_subchannel_request subchn_req;
493 struct nvsp_5_subchannel_complete subchn_comp;
494 struct nvsp_5_send_indirect_table send_table;
495} __packed;
496
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700497union nvsp_all_messages {
498 union nvsp_message_init_uber init_msg;
499 union nvsp_1_message_uber v1_msg;
Haiyang Zhangf157e782011-12-15 13:45:16 -0800500 union nvsp_2_message_uber v2_msg;
Haiyang Zhanga1eabb02014-02-19 15:49:45 -0800501 union nvsp_5_message_uber v5_msg;
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700502} __packed;
503
504/* ALL Messages */
505struct nvsp_message {
506 struct nvsp_message_header hdr;
507 union nvsp_all_messages msg;
508} __packed;
509
510
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800511#define NETVSC_MTU 65536
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700512
Haiyang Zhangb679ef72014-01-27 15:03:42 -0800513#define NETVSC_RECEIVE_BUFFER_SIZE (1024*1024*16) /* 16MB */
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700514
515#define NETVSC_RECEIVE_BUFFER_ID 0xcafe
516
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700517/* Preallocated receive packets */
518#define NETVSC_RECEIVE_PACKETLIST_COUNT 256
519
520#define NETVSC_PACKET_SIZE 2048
521
522/* Per netvsc channel-specific */
523struct netvsc_device {
524 struct hv_device *dev;
525
Haiyang Zhangf157e782011-12-15 13:45:16 -0800526 u32 nvsp_version;
527
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700528 atomic_t num_outstanding_sends;
Haiyang Zhangdc5cd892012-06-04 06:42:38 +0000529 wait_queue_head_t wait_drain;
Haiyang Zhang4d447c92011-12-15 13:45:17 -0800530 bool start_remove;
K. Y. Srinivasanc38b9c72011-08-27 11:31:12 -0700531 bool destroy;
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700532 /*
533 * List of free preallocated hv_netvsc_packet to represent receive
534 * packet
535 */
536 struct list_head recv_pkt_list;
537 spinlock_t recv_pkt_list_lock;
538
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700539 /* Receive buffer allocated by us but manages by NetVSP */
540 void *recv_buf;
541 u32 recv_buf_size;
542 u32 recv_buf_gpadl_handle;
543 u32 recv_section_cnt;
544 struct nvsp_1_receive_buffer_section *recv_section;
545
546 /* Used for NetVSP initialization protocol */
547 struct completion channel_init_wait;
548 struct nvsp_message channel_init_pkt;
549
550 struct nvsp_message revoke_packet;
551 /* unsigned char HwMacAddr[HW_MACADDR_LEN]; */
552
K. Y. Srinivasan2ddd5e5f2011-09-13 10:59:49 -0700553 struct net_device *ndev;
554
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700555 /* Holds rndis device info */
556 void *extension;
KY Srinivasanee0c4c32014-02-16 16:38:45 -0800557 /* The recive buffer for this device */
558 unsigned char cb_buffer[NETVSC_PACKET_SIZE];
K. Y. Srinivasan52584902011-05-12 19:34:39 -0700559};
560
K. Y. Srinivasan4a5cea32011-05-12 19:34:40 -0700561/* NdisInitialize message */
562struct rndis_initialize_request {
563 u32 req_id;
564 u32 major_ver;
565 u32 minor_ver;
566 u32 max_xfer_size;
567};
568
569/* Response to NdisInitialize */
570struct rndis_initialize_complete {
571 u32 req_id;
572 u32 status;
573 u32 major_ver;
574 u32 minor_ver;
575 u32 dev_flags;
576 u32 medium;
577 u32 max_pkt_per_msg;
578 u32 max_xfer_size;
579 u32 pkt_alignment_factor;
580 u32 af_list_offset;
581 u32 af_list_size;
582};
583
584/* Call manager devices only: Information about an address family */
585/* supported by the device is appended to the response to NdisInitialize. */
586struct rndis_co_address_family {
587 u32 address_family;
588 u32 major_ver;
589 u32 minor_ver;
590};
591
592/* NdisHalt message */
593struct rndis_halt_request {
594 u32 req_id;
595};
596
597/* NdisQueryRequest message */
598struct rndis_query_request {
599 u32 req_id;
600 u32 oid;
601 u32 info_buflen;
602 u32 info_buf_offset;
603 u32 dev_vc_handle;
604};
605
606/* Response to NdisQueryRequest */
607struct rndis_query_complete {
608 u32 req_id;
609 u32 status;
610 u32 info_buflen;
611 u32 info_buf_offset;
612};
613
614/* NdisSetRequest message */
615struct rndis_set_request {
616 u32 req_id;
617 u32 oid;
618 u32 info_buflen;
619 u32 info_buf_offset;
620 u32 dev_vc_handle;
621};
622
623/* Response to NdisSetRequest */
624struct rndis_set_complete {
625 u32 req_id;
626 u32 status;
627};
628
629/* NdisReset message */
630struct rndis_reset_request {
631 u32 reserved;
632};
633
634/* Response to NdisReset */
635struct rndis_reset_complete {
636 u32 status;
637 u32 addressing_reset;
638};
639
640/* NdisMIndicateStatus message */
641struct rndis_indicate_status {
642 u32 status;
643 u32 status_buflen;
644 u32 status_buf_offset;
645};
646
647/* Diagnostic information passed as the status buffer in */
648/* struct rndis_indicate_status messages signifying error conditions. */
649struct rndis_diagnostic_info {
650 u32 diag_status;
651 u32 error_offset;
652};
653
654/* NdisKeepAlive message */
655struct rndis_keepalive_request {
656 u32 req_id;
657};
658
659/* Response to NdisKeepAlive */
660struct rndis_keepalive_complete {
661 u32 req_id;
662 u32 status;
663};
664
665/*
666 * Data message. All Offset fields contain byte offsets from the beginning of
667 * struct rndis_packet. All Length fields are in bytes. VcHandle is set
668 * to 0 for connectionless data, otherwise it contains the VC handle.
669 */
670struct rndis_packet {
671 u32 data_offset;
672 u32 data_len;
673 u32 oob_data_offset;
674 u32 oob_data_len;
675 u32 num_oob_data_elements;
676 u32 per_pkt_info_offset;
677 u32 per_pkt_info_len;
678 u32 vc_handle;
679 u32 reserved;
680};
681
682/* Optional Out of Band data associated with a Data message. */
683struct rndis_oobd {
684 u32 size;
685 u32 type;
686 u32 class_info_offset;
687};
688
689/* Packet extension field contents associated with a Data message. */
690struct rndis_per_packet_info {
691 u32 size;
692 u32 type;
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +0000693 u32 ppi_offset;
K. Y. Srinivasan4a5cea32011-05-12 19:34:40 -0700694};
695
Haiyang Zhang1f5f3a72012-03-12 10:20:50 +0000696enum ndis_per_pkt_info_type {
697 TCPIP_CHKSUM_PKTINFO,
698 IPSEC_PKTINFO,
699 TCP_LARGESEND_PKTINFO,
700 CLASSIFICATION_HANDLE_PKTINFO,
701 NDIS_RESERVED,
702 SG_LIST_PKTINFO,
703 IEEE_8021Q_INFO,
704 ORIGINAL_PKTINFO,
705 PACKET_CANCEL_ID,
706 ORIGINAL_NET_BUFLIST,
707 CACHED_NET_BUFLIST,
708 SHORT_PKT_PADINFO,
709 MAX_PER_PKT_INFO
710};
711
712struct ndis_pkt_8021q_info {
713 union {
714 struct {
715 u32 pri:3; /* User Priority */
716 u32 cfi:1; /* Canonical Format ID */
717 u32 vlanid:12; /* VLAN ID */
718 u32 reserved:16;
719 };
720 u32 value;
721 };
722};
723
724#define NDIS_VLAN_PPI_SIZE (sizeof(struct rndis_per_packet_info) + \
725 sizeof(struct ndis_pkt_8021q_info))
726
K. Y. Srinivasan4a5cea32011-05-12 19:34:40 -0700727/* Format of Information buffer passed in a SetRequest for the OID */
728/* OID_GEN_RNDIS_CONFIG_PARAMETER. */
729struct rndis_config_parameter_info {
730 u32 parameter_name_offset;
731 u32 parameter_name_length;
732 u32 parameter_type;
733 u32 parameter_value_offset;
734 u32 parameter_value_length;
735};
736
737/* Values for ParameterType in struct rndis_config_parameter_info */
738#define RNDIS_CONFIG_PARAM_TYPE_INTEGER 0
739#define RNDIS_CONFIG_PARAM_TYPE_STRING 2
740
741/* CONDIS Miniport messages for connection oriented devices */
742/* that do not implement a call manager. */
743
744/* CoNdisMiniportCreateVc message */
745struct rcondis_mp_create_vc {
746 u32 req_id;
747 u32 ndis_vc_handle;
748};
749
750/* Response to CoNdisMiniportCreateVc */
751struct rcondis_mp_create_vc_complete {
752 u32 req_id;
753 u32 dev_vc_handle;
754 u32 status;
755};
756
757/* CoNdisMiniportDeleteVc message */
758struct rcondis_mp_delete_vc {
759 u32 req_id;
760 u32 dev_vc_handle;
761};
762
763/* Response to CoNdisMiniportDeleteVc */
764struct rcondis_mp_delete_vc_complete {
765 u32 req_id;
766 u32 status;
767};
768
769/* CoNdisMiniportQueryRequest message */
770struct rcondis_mp_query_request {
771 u32 req_id;
772 u32 request_type;
773 u32 oid;
774 u32 dev_vc_handle;
775 u32 info_buflen;
776 u32 info_buf_offset;
777};
778
779/* CoNdisMiniportSetRequest message */
780struct rcondis_mp_set_request {
781 u32 req_id;
782 u32 request_type;
783 u32 oid;
784 u32 dev_vc_handle;
785 u32 info_buflen;
786 u32 info_buf_offset;
787};
788
789/* CoNdisIndicateStatus message */
790struct rcondis_indicate_status {
791 u32 ndis_vc_handle;
792 u32 status;
793 u32 status_buflen;
794 u32 status_buf_offset;
795};
796
797/* CONDIS Call/VC parameters */
798struct rcondis_specific_parameters {
799 u32 parameter_type;
800 u32 parameter_length;
801 u32 parameter_lffset;
802};
803
804struct rcondis_media_parameters {
805 u32 flags;
806 u32 reserved1;
807 u32 reserved2;
808 struct rcondis_specific_parameters media_specific;
809};
810
811struct rndis_flowspec {
812 u32 token_rate;
813 u32 token_bucket_size;
814 u32 peak_bandwidth;
815 u32 latency;
816 u32 delay_variation;
817 u32 service_type;
818 u32 max_sdu_size;
819 u32 minimum_policed_size;
820};
821
822struct rcondis_call_manager_parameters {
823 struct rndis_flowspec transmit;
824 struct rndis_flowspec receive;
825 struct rcondis_specific_parameters call_mgr_specific;
826};
827
828/* CoNdisMiniportActivateVc message */
829struct rcondis_mp_activate_vc_request {
830 u32 req_id;
831 u32 flags;
832 u32 dev_vc_handle;
833 u32 media_params_offset;
834 u32 media_params_length;
835 u32 call_mgr_params_offset;
836 u32 call_mgr_params_length;
837};
838
839/* Response to CoNdisMiniportActivateVc */
840struct rcondis_mp_activate_vc_complete {
841 u32 req_id;
842 u32 status;
843};
844
845/* CoNdisMiniportDeactivateVc message */
846struct rcondis_mp_deactivate_vc_request {
847 u32 req_id;
848 u32 flags;
849 u32 dev_vc_handle;
850};
851
852/* Response to CoNdisMiniportDeactivateVc */
853struct rcondis_mp_deactivate_vc_complete {
854 u32 req_id;
855 u32 status;
856};
857
858
859/* union with all of the RNDIS messages */
860union rndis_message_container {
861 struct rndis_packet pkt;
862 struct rndis_initialize_request init_req;
863 struct rndis_halt_request halt_req;
864 struct rndis_query_request query_req;
865 struct rndis_set_request set_req;
866 struct rndis_reset_request reset_req;
867 struct rndis_keepalive_request keep_alive_req;
868 struct rndis_indicate_status indicate_status;
869 struct rndis_initialize_complete init_complete;
870 struct rndis_query_complete query_complete;
871 struct rndis_set_complete set_complete;
872 struct rndis_reset_complete reset_complete;
873 struct rndis_keepalive_complete keep_alive_complete;
874 struct rcondis_mp_create_vc co_miniport_create_vc;
875 struct rcondis_mp_delete_vc co_miniport_delete_vc;
876 struct rcondis_indicate_status co_indicate_status;
877 struct rcondis_mp_activate_vc_request co_miniport_activate_vc;
878 struct rcondis_mp_deactivate_vc_request co_miniport_deactivate_vc;
879 struct rcondis_mp_create_vc_complete co_miniport_create_vc_complete;
880 struct rcondis_mp_delete_vc_complete co_miniport_delete_vc_complete;
881 struct rcondis_mp_activate_vc_complete co_miniport_activate_vc_complete;
882 struct rcondis_mp_deactivate_vc_complete
883 co_miniport_deactivate_vc_complete;
884};
885
886/* Remote NDIS message format */
887struct rndis_message {
888 u32 ndis_msg_type;
889
890 /* Total length of this message, from the beginning */
891 /* of the sruct rndis_message, in bytes. */
892 u32 msg_len;
893
894 /* Actual message */
895 union rndis_message_container msg;
896};
897
K. Y. Srinivasan9dbfd152011-05-12 19:35:00 -0700898
K. Y. Srinivasan4a5cea32011-05-12 19:34:40 -0700899/* Handy macros */
900
901/* get the size of an RNDIS message. Pass in the message type, */
902/* struct rndis_set_request, struct rndis_packet for example */
903#define RNDIS_MESSAGE_SIZE(msg) \
904 (sizeof(msg) + (sizeof(struct rndis_message) - \
905 sizeof(union rndis_message_container)))
906
907/* get pointer to info buffer with message pointer */
908#define MESSAGE_TO_INFO_BUFFER(msg) \
909 (((unsigned char *)(msg)) + msg->info_buf_offset)
910
911/* get pointer to status buffer with message pointer */
912#define MESSAGE_TO_STATUS_BUFFER(msg) \
913 (((unsigned char *)(msg)) + msg->status_buf_offset)
914
915/* get pointer to OOBD buffer with message pointer */
916#define MESSAGE_TO_OOBD_BUFFER(msg) \
917 (((unsigned char *)(msg)) + msg->oob_data_offset)
918
919/* get pointer to data buffer with message pointer */
920#define MESSAGE_TO_DATA_BUFFER(msg) \
921 (((unsigned char *)(msg)) + msg->per_pkt_info_offset)
922
923/* get pointer to contained message from NDIS_MESSAGE pointer */
924#define RNDIS_MESSAGE_PTR_TO_MESSAGE_PTR(rndis_msg) \
925 ((void *) &rndis_msg->msg)
926
927/* get pointer to contained message from NDIS_MESSAGE pointer */
928#define RNDIS_MESSAGE_RAW_PTR_TO_MESSAGE_PTR(rndis_msg) \
929 ((void *) rndis_msg)
930
K. Y. Srinivasan299d09252011-05-12 19:34:41 -0700931
932#define __struct_bcount(x)
933
934
935
936#define RNDIS_HEADER_SIZE (sizeof(struct rndis_message) - \
937 sizeof(union rndis_message_container))
938
939#define NDIS_PACKET_TYPE_DIRECTED 0x00000001
940#define NDIS_PACKET_TYPE_MULTICAST 0x00000002
941#define NDIS_PACKET_TYPE_ALL_MULTICAST 0x00000004
942#define NDIS_PACKET_TYPE_BROADCAST 0x00000008
943#define NDIS_PACKET_TYPE_SOURCE_ROUTING 0x00000010
944#define NDIS_PACKET_TYPE_PROMISCUOUS 0x00000020
945#define NDIS_PACKET_TYPE_SMT 0x00000040
946#define NDIS_PACKET_TYPE_ALL_LOCAL 0x00000080
947#define NDIS_PACKET_TYPE_GROUP 0x00000100
948#define NDIS_PACKET_TYPE_ALL_FUNCTIONAL 0x00000200
949#define NDIS_PACKET_TYPE_FUNCTIONAL 0x00000400
950#define NDIS_PACKET_TYPE_MAC_FRAME 0x00000800
951
952
K. Y. Srinivasan299d09252011-05-12 19:34:41 -0700953
K. Y. Srinivasan5ca72522011-05-12 19:34:37 -0700954#endif /* _HYPERV_NET_H */