4 * Authors: Benedikt Spranger, Pengutronix
5 * Robert Schwebel, Pengutronix
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2, as published by the Free Software Foundation.
11 * This software was originally developed in conformance with
12 * Microsoft's Remote NDIS Specification License Agreement.
14 * 03/12/2004 Kai-Uwe Bloem <linux-development@auerswald.de>
15 * Fixed message length bug in init_response
17 * 03/25/2004 Kai-Uwe Bloem <linux-development@auerswald.de>
18 * Fixed rndis_rm_hdr length bug.
20 * Copyright (C) 2004 by David Brownell
21 * updates to merge with Linux 2.6, better match RNDIS spec
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
26 #include <linux/kernel.h>
27 #include <linux/errno.h>
28 #include <linux/init.h>
29 #include <linux/list.h>
30 #include <linux/proc_fs.h>
31 #include <linux/seq_file.h>
32 #include <linux/netdevice.h>
35 #include <asm/byteorder.h>
36 #include <asm/system.h>
37 #include <asm/unaligned.h>
45 /* The driver for your USB chip needs to support ep0 OUT to work with
46 * RNDIS, plus all three CDC Ethernet endpoints (interrupt not optional).
48 * Windows hosts need an INF file like Documentation/usb/linux.inf
49 * and will be happier if you provide the host_addr module parameter.
53 static int rndis_debug
= 0;
54 module_param (rndis_debug
, int, 0);
55 MODULE_PARM_DESC (rndis_debug
, "enable debugging");
60 #define RNDIS_MAX_CONFIGS 1
63 static rndis_params rndis_per_dev_params
[RNDIS_MAX_CONFIGS
];
66 static const __le32 rndis_driver_version
= cpu_to_le32 (1);
68 /* Function Prototypes */
69 static rndis_resp_t
*rndis_add_response (int configNr
, u32 length
);
73 static const u32 oid_supported_list
[] =
75 /* the general stuff */
76 OID_GEN_SUPPORTED_LIST
,
77 OID_GEN_HARDWARE_STATUS
,
78 OID_GEN_MEDIA_SUPPORTED
,
80 OID_GEN_MAXIMUM_FRAME_SIZE
,
82 OID_GEN_TRANSMIT_BLOCK_SIZE
,
83 OID_GEN_RECEIVE_BLOCK_SIZE
,
85 OID_GEN_VENDOR_DESCRIPTION
,
86 OID_GEN_VENDOR_DRIVER_VERSION
,
87 OID_GEN_CURRENT_PACKET_FILTER
,
88 OID_GEN_MAXIMUM_TOTAL_SIZE
,
89 OID_GEN_MEDIA_CONNECT_STATUS
,
90 OID_GEN_PHYSICAL_MEDIUM
,
92 /* the statistical stuff */
97 OID_GEN_RCV_NO_BUFFER
,
98 #ifdef RNDIS_OPTIONAL_STATS
99 OID_GEN_DIRECTED_BYTES_XMIT
,
100 OID_GEN_DIRECTED_FRAMES_XMIT
,
101 OID_GEN_MULTICAST_BYTES_XMIT
,
102 OID_GEN_MULTICAST_FRAMES_XMIT
,
103 OID_GEN_BROADCAST_BYTES_XMIT
,
104 OID_GEN_BROADCAST_FRAMES_XMIT
,
105 OID_GEN_DIRECTED_BYTES_RCV
,
106 OID_GEN_DIRECTED_FRAMES_RCV
,
107 OID_GEN_MULTICAST_BYTES_RCV
,
108 OID_GEN_MULTICAST_FRAMES_RCV
,
109 OID_GEN_BROADCAST_BYTES_RCV
,
110 OID_GEN_BROADCAST_FRAMES_RCV
,
111 OID_GEN_RCV_CRC_ERROR
,
112 OID_GEN_TRANSMIT_QUEUE_LENGTH
,
113 #endif /* RNDIS_OPTIONAL_STATS */
115 /* mandatory 802.3 */
116 /* the general stuff */
117 OID_802_3_PERMANENT_ADDRESS
,
118 OID_802_3_CURRENT_ADDRESS
,
119 OID_802_3_MULTICAST_LIST
,
120 OID_802_3_MAC_OPTIONS
,
121 OID_802_3_MAXIMUM_LIST_SIZE
,
123 /* the statistical stuff */
124 OID_802_3_RCV_ERROR_ALIGNMENT
,
125 OID_802_3_XMIT_ONE_COLLISION
,
126 OID_802_3_XMIT_MORE_COLLISIONS
,
127 #ifdef RNDIS_OPTIONAL_STATS
128 OID_802_3_XMIT_DEFERRED
,
129 OID_802_3_XMIT_MAX_COLLISIONS
,
130 OID_802_3_RCV_OVERRUN
,
131 OID_802_3_XMIT_UNDERRUN
,
132 OID_802_3_XMIT_HEARTBEAT_FAILURE
,
133 OID_802_3_XMIT_TIMES_CRS_LOST
,
134 OID_802_3_XMIT_LATE_COLLISIONS
,
135 #endif /* RNDIS_OPTIONAL_STATS */
138 /* PM and wakeup are "mandatory" for USB, but the RNDIS specs
139 * don't say what they mean ... and the NDIS specs are often
140 * confusing and/or ambiguous in this context. (That is, more
141 * so than their specs for the other OIDs.)
143 * FIXME someone who knows what these should do, please
147 /* power management */
148 OID_PNP_CAPABILITIES
,
154 OID_PNP_ENABLE_WAKE_UP
,
155 OID_PNP_ADD_WAKE_UP_PATTERN
,
156 OID_PNP_REMOVE_WAKE_UP_PATTERN
,
157 #endif /* RNDIS_WAKEUP */
158 #endif /* RNDIS_PM */
164 gen_ndis_query_resp (int configNr
, u32 OID
, u8
*buf
, unsigned buf_len
,
167 int retval
= -ENOTSUPP
;
168 u32 length
= 4; /* usually */
171 rndis_query_cmplt_type
*resp
;
172 struct net_device
*net
;
173 const struct net_device_stats
*stats
;
175 if (!r
) return -ENOMEM
;
176 resp
= (rndis_query_cmplt_type
*) r
->buf
;
178 if (!resp
) return -ENOMEM
;
180 if (buf_len
&& rndis_debug
> 1) {
181 pr_debug("query OID %08x value, len %d:\n", OID
, buf_len
);
182 for (i
= 0; i
< buf_len
; i
+= 16) {
183 pr_debug("%03d: %08x %08x %08x %08x\n", i
,
184 get_unaligned_le32(&buf
[i
]),
185 get_unaligned_le32(&buf
[i
+ 4]),
186 get_unaligned_le32(&buf
[i
+ 8]),
187 get_unaligned_le32(&buf
[i
+ 12]));
191 /* response goes here, right after the header */
192 outbuf
= (__le32
*) &resp
[1];
193 resp
->InformationBufferOffset
= cpu_to_le32 (16);
195 net
= rndis_per_dev_params
[configNr
].dev
;
196 stats
= dev_get_stats(net
);
200 /* general oids (table 4-1) */
203 case OID_GEN_SUPPORTED_LIST
:
204 pr_debug("%s: OID_GEN_SUPPORTED_LIST\n", __func__
);
205 length
= sizeof (oid_supported_list
);
206 count
= length
/ sizeof (u32
);
207 for (i
= 0; i
< count
; i
++)
208 outbuf
[i
] = cpu_to_le32 (oid_supported_list
[i
]);
213 case OID_GEN_HARDWARE_STATUS
:
214 pr_debug("%s: OID_GEN_HARDWARE_STATUS\n", __func__
);
216 * Hardware must be ready to receive high level protocols.
218 * reddite ergo quae sunt Caesaris Caesari
219 * et quae sunt Dei Deo!
221 *outbuf
= cpu_to_le32 (0);
226 case OID_GEN_MEDIA_SUPPORTED
:
227 pr_debug("%s: OID_GEN_MEDIA_SUPPORTED\n", __func__
);
228 *outbuf
= cpu_to_le32 (rndis_per_dev_params
[configNr
].medium
);
233 case OID_GEN_MEDIA_IN_USE
:
234 pr_debug("%s: OID_GEN_MEDIA_IN_USE\n", __func__
);
235 /* one medium, one transport... (maybe you do it better) */
236 *outbuf
= cpu_to_le32 (rndis_per_dev_params
[configNr
].medium
);
241 case OID_GEN_MAXIMUM_FRAME_SIZE
:
242 pr_debug("%s: OID_GEN_MAXIMUM_FRAME_SIZE\n", __func__
);
243 if (rndis_per_dev_params
[configNr
].dev
) {
244 *outbuf
= cpu_to_le32 (
245 rndis_per_dev_params
[configNr
].dev
->mtu
);
251 case OID_GEN_LINK_SPEED
:
253 pr_debug("%s: OID_GEN_LINK_SPEED\n", __func__
);
254 if (rndis_per_dev_params
[configNr
].media_state
255 == NDIS_MEDIA_STATE_DISCONNECTED
)
256 *outbuf
= cpu_to_le32 (0);
258 *outbuf
= cpu_to_le32 (
259 rndis_per_dev_params
[configNr
].speed
);
264 case OID_GEN_TRANSMIT_BLOCK_SIZE
:
265 pr_debug("%s: OID_GEN_TRANSMIT_BLOCK_SIZE\n", __func__
);
266 if (rndis_per_dev_params
[configNr
].dev
) {
267 *outbuf
= cpu_to_le32 (
268 rndis_per_dev_params
[configNr
].dev
->mtu
);
274 case OID_GEN_RECEIVE_BLOCK_SIZE
:
275 pr_debug("%s: OID_GEN_RECEIVE_BLOCK_SIZE\n", __func__
);
276 if (rndis_per_dev_params
[configNr
].dev
) {
277 *outbuf
= cpu_to_le32 (
278 rndis_per_dev_params
[configNr
].dev
->mtu
);
284 case OID_GEN_VENDOR_ID
:
285 pr_debug("%s: OID_GEN_VENDOR_ID\n", __func__
);
286 *outbuf
= cpu_to_le32 (
287 rndis_per_dev_params
[configNr
].vendorID
);
292 case OID_GEN_VENDOR_DESCRIPTION
:
293 pr_debug("%s: OID_GEN_VENDOR_DESCRIPTION\n", __func__
);
294 length
= strlen (rndis_per_dev_params
[configNr
].vendorDescr
);
296 rndis_per_dev_params
[configNr
].vendorDescr
, length
);
300 case OID_GEN_VENDOR_DRIVER_VERSION
:
301 pr_debug("%s: OID_GEN_VENDOR_DRIVER_VERSION\n", __func__
);
303 *outbuf
= rndis_driver_version
;
308 case OID_GEN_CURRENT_PACKET_FILTER
:
309 pr_debug("%s: OID_GEN_CURRENT_PACKET_FILTER\n", __func__
);
310 *outbuf
= cpu_to_le32 (*rndis_per_dev_params
[configNr
].filter
);
315 case OID_GEN_MAXIMUM_TOTAL_SIZE
:
316 pr_debug("%s: OID_GEN_MAXIMUM_TOTAL_SIZE\n", __func__
);
317 *outbuf
= cpu_to_le32(RNDIS_MAX_TOTAL_SIZE
);
322 case OID_GEN_MEDIA_CONNECT_STATUS
:
324 pr_debug("%s: OID_GEN_MEDIA_CONNECT_STATUS\n", __func__
);
325 *outbuf
= cpu_to_le32 (rndis_per_dev_params
[configNr
]
330 case OID_GEN_PHYSICAL_MEDIUM
:
331 pr_debug("%s: OID_GEN_PHYSICAL_MEDIUM\n", __func__
);
332 *outbuf
= cpu_to_le32 (0);
336 /* The RNDIS specification is incomplete/wrong. Some versions
337 * of MS-Windows expect OIDs that aren't specified there. Other
338 * versions emit undefined RNDIS messages. DOCUMENT ALL THESE!
340 case OID_GEN_MAC_OPTIONS
: /* from WinME */
341 pr_debug("%s: OID_GEN_MAC_OPTIONS\n", __func__
);
342 *outbuf
= cpu_to_le32(
343 NDIS_MAC_OPTION_RECEIVE_SERIALIZED
344 | NDIS_MAC_OPTION_FULL_DUPLEX
);
348 /* statistics OIDs (table 4-2) */
351 case OID_GEN_XMIT_OK
:
353 pr_debug("%s: OID_GEN_XMIT_OK\n", __func__
);
355 *outbuf
= cpu_to_le32(stats
->tx_packets
356 - stats
->tx_errors
- stats
->tx_dropped
);
364 pr_debug("%s: OID_GEN_RCV_OK\n", __func__
);
366 *outbuf
= cpu_to_le32(stats
->rx_packets
367 - stats
->rx_errors
- stats
->rx_dropped
);
373 case OID_GEN_XMIT_ERROR
:
375 pr_debug("%s: OID_GEN_XMIT_ERROR\n", __func__
);
377 *outbuf
= cpu_to_le32(stats
->tx_errors
);
383 case OID_GEN_RCV_ERROR
:
385 pr_debug("%s: OID_GEN_RCV_ERROR\n", __func__
);
387 *outbuf
= cpu_to_le32(stats
->rx_errors
);
393 case OID_GEN_RCV_NO_BUFFER
:
394 pr_debug("%s: OID_GEN_RCV_NO_BUFFER\n", __func__
);
396 *outbuf
= cpu_to_le32(stats
->rx_dropped
);
401 /* ieee802.3 OIDs (table 4-3) */
404 case OID_802_3_PERMANENT_ADDRESS
:
405 pr_debug("%s: OID_802_3_PERMANENT_ADDRESS\n", __func__
);
406 if (rndis_per_dev_params
[configNr
].dev
) {
409 rndis_per_dev_params
[configNr
].host_mac
,
416 case OID_802_3_CURRENT_ADDRESS
:
417 pr_debug("%s: OID_802_3_CURRENT_ADDRESS\n", __func__
);
418 if (rndis_per_dev_params
[configNr
].dev
) {
421 rndis_per_dev_params
[configNr
].host_mac
,
428 case OID_802_3_MULTICAST_LIST
:
429 pr_debug("%s: OID_802_3_MULTICAST_LIST\n", __func__
);
430 /* Multicast base address only */
431 *outbuf
= cpu_to_le32 (0xE0000000);
436 case OID_802_3_MAXIMUM_LIST_SIZE
:
437 pr_debug("%s: OID_802_3_MAXIMUM_LIST_SIZE\n", __func__
);
438 /* Multicast base address only */
439 *outbuf
= cpu_to_le32 (1);
443 case OID_802_3_MAC_OPTIONS
:
444 pr_debug("%s: OID_802_3_MAC_OPTIONS\n", __func__
);
445 *outbuf
= cpu_to_le32(0);
449 /* ieee802.3 statistics OIDs (table 4-4) */
452 case OID_802_3_RCV_ERROR_ALIGNMENT
:
453 pr_debug("%s: OID_802_3_RCV_ERROR_ALIGNMENT\n", __func__
);
455 *outbuf
= cpu_to_le32(stats
->rx_frame_errors
);
461 case OID_802_3_XMIT_ONE_COLLISION
:
462 pr_debug("%s: OID_802_3_XMIT_ONE_COLLISION\n", __func__
);
463 *outbuf
= cpu_to_le32 (0);
468 case OID_802_3_XMIT_MORE_COLLISIONS
:
469 pr_debug("%s: OID_802_3_XMIT_MORE_COLLISIONS\n", __func__
);
470 *outbuf
= cpu_to_le32 (0);
475 pr_warning("%s: query unknown OID 0x%08X\n",
481 resp
->InformationBufferLength
= cpu_to_le32 (length
);
482 r
->length
= length
+ sizeof *resp
;
483 resp
->MessageLength
= cpu_to_le32 (r
->length
);
487 static int gen_ndis_set_resp (u8 configNr
, u32 OID
, u8
*buf
, u32 buf_len
,
490 rndis_set_cmplt_type
*resp
;
491 int i
, retval
= -ENOTSUPP
;
492 struct rndis_params
*params
;
496 resp
= (rndis_set_cmplt_type
*) r
->buf
;
500 if (buf_len
&& rndis_debug
> 1) {
501 pr_debug("set OID %08x value, len %d:\n", OID
, buf_len
);
502 for (i
= 0; i
< buf_len
; i
+= 16) {
503 pr_debug("%03d: %08x %08x %08x %08x\n", i
,
504 get_unaligned_le32(&buf
[i
]),
505 get_unaligned_le32(&buf
[i
+ 4]),
506 get_unaligned_le32(&buf
[i
+ 8]),
507 get_unaligned_le32(&buf
[i
+ 12]));
511 params
= &rndis_per_dev_params
[configNr
];
513 case OID_GEN_CURRENT_PACKET_FILTER
:
515 /* these NDIS_PACKET_TYPE_* bitflags are shared with
516 * cdc_filter; it's not RNDIS-specific
517 * NDIS_PACKET_TYPE_x == USB_CDC_PACKET_TYPE_x for x in:
518 * PROMISCUOUS, DIRECTED,
519 * MULTICAST, ALL_MULTICAST, BROADCAST
521 *params
->filter
= (u16
)get_unaligned_le32(buf
);
522 pr_debug("%s: OID_GEN_CURRENT_PACKET_FILTER %08x\n",
523 __func__
, *params
->filter
);
525 /* this call has a significant side effect: it's
526 * what makes the packet flow start and stop, like
527 * activating the CDC Ethernet altsetting.
530 if (*params
->filter
) {
531 params
->state
= RNDIS_DATA_INITIALIZED
;
532 netif_carrier_on(params
->dev
);
533 if (netif_running(params
->dev
))
534 netif_wake_queue (params
->dev
);
536 params
->state
= RNDIS_INITIALIZED
;
537 netif_carrier_off (params
->dev
);
538 netif_stop_queue (params
->dev
);
542 case OID_802_3_MULTICAST_LIST
:
543 /* I think we can ignore this */
544 pr_debug("%s: OID_802_3_MULTICAST_LIST\n", __func__
);
549 pr_warning("%s: set unknown OID 0x%08X, size %d\n",
550 __func__
, OID
, buf_len
);
560 static int rndis_init_response (int configNr
, rndis_init_msg_type
*buf
)
562 rndis_init_cmplt_type
*resp
;
564 struct rndis_params
*params
= rndis_per_dev_params
+ configNr
;
569 r
= rndis_add_response (configNr
, sizeof (rndis_init_cmplt_type
));
572 resp
= (rndis_init_cmplt_type
*) r
->buf
;
574 resp
->MessageType
= cpu_to_le32 (
575 REMOTE_NDIS_INITIALIZE_CMPLT
);
576 resp
->MessageLength
= cpu_to_le32 (52);
577 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
578 resp
->Status
= cpu_to_le32 (RNDIS_STATUS_SUCCESS
);
579 resp
->MajorVersion
= cpu_to_le32 (RNDIS_MAJOR_VERSION
);
580 resp
->MinorVersion
= cpu_to_le32 (RNDIS_MINOR_VERSION
);
581 resp
->DeviceFlags
= cpu_to_le32 (RNDIS_DF_CONNECTIONLESS
);
582 resp
->Medium
= cpu_to_le32 (RNDIS_MEDIUM_802_3
);
583 resp
->MaxPacketsPerTransfer
= cpu_to_le32 (1);
584 resp
->MaxTransferSize
= cpu_to_le32 (
586 + sizeof (struct ethhdr
)
587 + sizeof (struct rndis_packet_msg_type
)
589 resp
->PacketAlignmentFactor
= cpu_to_le32 (0);
590 resp
->AFListOffset
= cpu_to_le32 (0);
591 resp
->AFListSize
= cpu_to_le32 (0);
593 params
->resp_avail(params
->v
);
597 static int rndis_query_response (int configNr
, rndis_query_msg_type
*buf
)
599 rndis_query_cmplt_type
*resp
;
601 struct rndis_params
*params
= rndis_per_dev_params
+ configNr
;
603 /* pr_debug("%s: OID = %08X\n", __func__, cpu_to_le32(buf->OID)); */
608 * we need more memory:
609 * gen_ndis_query_resp expects enough space for
610 * rndis_query_cmplt_type followed by data.
611 * oid_supported_list is the largest data reply
613 r
= rndis_add_response (configNr
,
614 sizeof (oid_supported_list
) + sizeof(rndis_query_cmplt_type
));
617 resp
= (rndis_query_cmplt_type
*) r
->buf
;
619 resp
->MessageType
= cpu_to_le32 (REMOTE_NDIS_QUERY_CMPLT
);
620 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
622 if (gen_ndis_query_resp (configNr
, le32_to_cpu (buf
->OID
),
623 le32_to_cpu(buf
->InformationBufferOffset
)
625 le32_to_cpu(buf
->InformationBufferLength
),
627 /* OID not supported */
628 resp
->Status
= cpu_to_le32 (
629 RNDIS_STATUS_NOT_SUPPORTED
);
630 resp
->MessageLength
= cpu_to_le32 (sizeof *resp
);
631 resp
->InformationBufferLength
= cpu_to_le32 (0);
632 resp
->InformationBufferOffset
= cpu_to_le32 (0);
634 resp
->Status
= cpu_to_le32 (RNDIS_STATUS_SUCCESS
);
636 params
->resp_avail(params
->v
);
640 static int rndis_set_response (int configNr
, rndis_set_msg_type
*buf
)
642 u32 BufLength
, BufOffset
;
643 rndis_set_cmplt_type
*resp
;
645 struct rndis_params
*params
= rndis_per_dev_params
+ configNr
;
647 r
= rndis_add_response (configNr
, sizeof (rndis_set_cmplt_type
));
650 resp
= (rndis_set_cmplt_type
*) r
->buf
;
652 BufLength
= le32_to_cpu (buf
->InformationBufferLength
);
653 BufOffset
= le32_to_cpu (buf
->InformationBufferOffset
);
656 pr_debug("%s: Length: %d\n", __func__
, BufLength
);
657 pr_debug("%s: Offset: %d\n", __func__
, BufOffset
);
658 pr_debug("%s: InfoBuffer: ", __func__
);
660 for (i
= 0; i
< BufLength
; i
++) {
661 pr_debug("%02x ", *(((u8
*) buf
) + i
+ 8 + BufOffset
));
667 resp
->MessageType
= cpu_to_le32 (REMOTE_NDIS_SET_CMPLT
);
668 resp
->MessageLength
= cpu_to_le32 (16);
669 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
670 if (gen_ndis_set_resp (configNr
, le32_to_cpu (buf
->OID
),
671 ((u8
*) buf
) + 8 + BufOffset
, BufLength
, r
))
672 resp
->Status
= cpu_to_le32 (RNDIS_STATUS_NOT_SUPPORTED
);
674 resp
->Status
= cpu_to_le32 (RNDIS_STATUS_SUCCESS
);
676 params
->resp_avail(params
->v
);
680 static int rndis_reset_response (int configNr
, rndis_reset_msg_type
*buf
)
682 rndis_reset_cmplt_type
*resp
;
684 struct rndis_params
*params
= rndis_per_dev_params
+ configNr
;
686 r
= rndis_add_response (configNr
, sizeof (rndis_reset_cmplt_type
));
689 resp
= (rndis_reset_cmplt_type
*) r
->buf
;
691 resp
->MessageType
= cpu_to_le32 (REMOTE_NDIS_RESET_CMPLT
);
692 resp
->MessageLength
= cpu_to_le32 (16);
693 resp
->Status
= cpu_to_le32 (RNDIS_STATUS_SUCCESS
);
694 /* resent information */
695 resp
->AddressingReset
= cpu_to_le32 (1);
697 params
->resp_avail(params
->v
);
701 static int rndis_keepalive_response (int configNr
,
702 rndis_keepalive_msg_type
*buf
)
704 rndis_keepalive_cmplt_type
*resp
;
706 struct rndis_params
*params
= rndis_per_dev_params
+ configNr
;
708 /* host "should" check only in RNDIS_DATA_INITIALIZED state */
710 r
= rndis_add_response (configNr
, sizeof (rndis_keepalive_cmplt_type
));
713 resp
= (rndis_keepalive_cmplt_type
*) r
->buf
;
715 resp
->MessageType
= cpu_to_le32 (
716 REMOTE_NDIS_KEEPALIVE_CMPLT
);
717 resp
->MessageLength
= cpu_to_le32 (16);
718 resp
->RequestID
= buf
->RequestID
; /* Still LE in msg buffer */
719 resp
->Status
= cpu_to_le32 (RNDIS_STATUS_SUCCESS
);
721 params
->resp_avail(params
->v
);
727 * Device to Host Comunication
729 static int rndis_indicate_status_msg (int configNr
, u32 status
)
731 rndis_indicate_status_msg_type
*resp
;
733 struct rndis_params
*params
= rndis_per_dev_params
+ configNr
;
735 if (params
->state
== RNDIS_UNINITIALIZED
)
738 r
= rndis_add_response (configNr
,
739 sizeof (rndis_indicate_status_msg_type
));
742 resp
= (rndis_indicate_status_msg_type
*) r
->buf
;
744 resp
->MessageType
= cpu_to_le32 (
745 REMOTE_NDIS_INDICATE_STATUS_MSG
);
746 resp
->MessageLength
= cpu_to_le32 (20);
747 resp
->Status
= cpu_to_le32 (status
);
748 resp
->StatusBufferLength
= cpu_to_le32 (0);
749 resp
->StatusBufferOffset
= cpu_to_le32 (0);
751 params
->resp_avail(params
->v
);
755 int rndis_signal_connect (int configNr
)
757 rndis_per_dev_params
[configNr
].media_state
758 = NDIS_MEDIA_STATE_CONNECTED
;
759 return rndis_indicate_status_msg (configNr
,
760 RNDIS_STATUS_MEDIA_CONNECT
);
763 int rndis_signal_disconnect (int configNr
)
765 rndis_per_dev_params
[configNr
].media_state
766 = NDIS_MEDIA_STATE_DISCONNECTED
;
767 return rndis_indicate_status_msg (configNr
,
768 RNDIS_STATUS_MEDIA_DISCONNECT
);
771 void rndis_uninit (int configNr
)
776 if (configNr
>= RNDIS_MAX_CONFIGS
)
778 rndis_per_dev_params
[configNr
].state
= RNDIS_UNINITIALIZED
;
780 /* drain the response queue */
781 while ((buf
= rndis_get_next_response(configNr
, &length
)))
782 rndis_free_response(configNr
, buf
);
785 void rndis_set_host_mac (int configNr
, const u8
*addr
)
787 rndis_per_dev_params
[configNr
].host_mac
= addr
;
793 int rndis_msg_parser (u8 configNr
, u8
*buf
)
795 u32 MsgType
, MsgLength
;
797 struct rndis_params
*params
;
802 tmp
= (__le32
*) buf
;
803 MsgType
= get_unaligned_le32(tmp
++);
804 MsgLength
= get_unaligned_le32(tmp
++);
806 if (configNr
>= RNDIS_MAX_CONFIGS
)
808 params
= &rndis_per_dev_params
[configNr
];
810 /* NOTE: RNDIS is *EXTREMELY* chatty ... Windows constantly polls for
811 * rx/tx statistics and link status, in addition to KEEPALIVE traffic
812 * and normal HC level polling to see if there's any IN traffic.
815 /* For USB: responses may take up to 10 seconds */
817 case REMOTE_NDIS_INITIALIZE_MSG
:
818 pr_debug("%s: REMOTE_NDIS_INITIALIZE_MSG\n",
820 params
->state
= RNDIS_INITIALIZED
;
821 return rndis_init_response (configNr
,
822 (rndis_init_msg_type
*) buf
);
824 case REMOTE_NDIS_HALT_MSG
:
825 pr_debug("%s: REMOTE_NDIS_HALT_MSG\n",
827 params
->state
= RNDIS_UNINITIALIZED
;
829 netif_carrier_off (params
->dev
);
830 netif_stop_queue (params
->dev
);
834 case REMOTE_NDIS_QUERY_MSG
:
835 return rndis_query_response (configNr
,
836 (rndis_query_msg_type
*) buf
);
838 case REMOTE_NDIS_SET_MSG
:
839 return rndis_set_response (configNr
,
840 (rndis_set_msg_type
*) buf
);
842 case REMOTE_NDIS_RESET_MSG
:
843 pr_debug("%s: REMOTE_NDIS_RESET_MSG\n",
845 return rndis_reset_response (configNr
,
846 (rndis_reset_msg_type
*) buf
);
848 case REMOTE_NDIS_KEEPALIVE_MSG
:
849 /* For USB: host does this every 5 seconds */
851 pr_debug("%s: REMOTE_NDIS_KEEPALIVE_MSG\n",
853 return rndis_keepalive_response (configNr
,
854 (rndis_keepalive_msg_type
*)
858 /* At least Windows XP emits some undefined RNDIS messages.
859 * In one case those messages seemed to relate to the host
862 pr_warning("%s: unknown RNDIS message 0x%08X len %d\n",
863 __func__
, MsgType
, MsgLength
);
866 for (i
= 0; i
< MsgLength
; i
+= 16) {
868 " %02x %02x %02x %02x"
869 " %02x %02x %02x %02x"
870 " %02x %02x %02x %02x"
871 " %02x %02x %02x %02x"
879 buf
[i
+10], buf
[i
+11],
880 buf
[i
+12], buf
[i
+13],
881 buf
[i
+14], buf
[i
+15]);
890 int rndis_register(void (*resp_avail
)(void *v
), void *v
)
897 for (i
= 0; i
< RNDIS_MAX_CONFIGS
; i
++) {
898 if (!rndis_per_dev_params
[i
].used
) {
899 rndis_per_dev_params
[i
].used
= 1;
900 rndis_per_dev_params
[i
].resp_avail
= resp_avail
;
901 rndis_per_dev_params
[i
].v
= v
;
902 pr_debug("%s: configNr = %d\n", __func__
, i
);
906 pr_debug("failed\n");
911 void rndis_deregister (int configNr
)
913 pr_debug("%s: \n", __func__
);
915 if (configNr
>= RNDIS_MAX_CONFIGS
) return;
916 rndis_per_dev_params
[configNr
].used
= 0;
921 int rndis_set_param_dev(u8 configNr
, struct net_device
*dev
, u16
*cdc_filter
)
923 pr_debug("%s:\n", __func__
);
926 if (configNr
>= RNDIS_MAX_CONFIGS
) return -1;
928 rndis_per_dev_params
[configNr
].dev
= dev
;
929 rndis_per_dev_params
[configNr
].filter
= cdc_filter
;
934 int rndis_set_param_vendor (u8 configNr
, u32 vendorID
, const char *vendorDescr
)
936 pr_debug("%s:\n", __func__
);
937 if (!vendorDescr
) return -1;
938 if (configNr
>= RNDIS_MAX_CONFIGS
) return -1;
940 rndis_per_dev_params
[configNr
].vendorID
= vendorID
;
941 rndis_per_dev_params
[configNr
].vendorDescr
= vendorDescr
;
946 int rndis_set_param_medium (u8 configNr
, u32 medium
, u32 speed
)
948 pr_debug("%s: %u %u\n", __func__
, medium
, speed
);
949 if (configNr
>= RNDIS_MAX_CONFIGS
) return -1;
951 rndis_per_dev_params
[configNr
].medium
= medium
;
952 rndis_per_dev_params
[configNr
].speed
= speed
;
957 void rndis_add_hdr (struct sk_buff
*skb
)
959 struct rndis_packet_msg_type
*header
;
963 header
= (void *) skb_push (skb
, sizeof *header
);
964 memset (header
, 0, sizeof *header
);
965 header
->MessageType
= cpu_to_le32(REMOTE_NDIS_PACKET_MSG
);
966 header
->MessageLength
= cpu_to_le32(skb
->len
);
967 header
->DataOffset
= cpu_to_le32 (36);
968 header
->DataLength
= cpu_to_le32(skb
->len
- sizeof *header
);
971 void rndis_free_response (int configNr
, u8
*buf
)
974 struct list_head
*act
, *tmp
;
976 list_for_each_safe (act
, tmp
,
977 &(rndis_per_dev_params
[configNr
].resp_queue
))
979 r
= list_entry (act
, rndis_resp_t
, list
);
980 if (r
&& r
->buf
== buf
) {
987 u8
*rndis_get_next_response (int configNr
, u32
*length
)
990 struct list_head
*act
, *tmp
;
992 if (!length
) return NULL
;
994 list_for_each_safe (act
, tmp
,
995 &(rndis_per_dev_params
[configNr
].resp_queue
))
997 r
= list_entry (act
, rndis_resp_t
, list
);
1000 *length
= r
->length
;
1008 static rndis_resp_t
*rndis_add_response (int configNr
, u32 length
)
1012 /* NOTE: this gets copied into ether.c USB_BUFSIZ bytes ... */
1013 r
= kmalloc (sizeof (rndis_resp_t
) + length
, GFP_ATOMIC
);
1014 if (!r
) return NULL
;
1016 r
->buf
= (u8
*) (r
+ 1);
1020 list_add_tail (&r
->list
,
1021 &(rndis_per_dev_params
[configNr
].resp_queue
));
1025 int rndis_rm_hdr(struct gether
*port
,
1026 struct sk_buff
*skb
,
1027 struct sk_buff_head
*list
)
1029 /* tmp points to a struct rndis_packet_msg_type */
1030 __le32
*tmp
= (void *) skb
->data
;
1032 /* MessageType, MessageLength */
1033 if (cpu_to_le32(REMOTE_NDIS_PACKET_MSG
)
1034 != get_unaligned(tmp
++)) {
1035 dev_kfree_skb_any(skb
);
1040 /* DataOffset, DataLength */
1041 if (!skb_pull(skb
, get_unaligned_le32(tmp
++) + 8)) {
1042 dev_kfree_skb_any(skb
);
1045 skb_trim(skb
, get_unaligned_le32(tmp
++));
1047 skb_queue_tail(list
, skb
);
1051 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
1053 static int rndis_proc_show(struct seq_file
*m
, void *v
)
1055 rndis_params
*param
= m
->private;
1064 "vendor ID : 0x%08X\n"
1066 param
->confignr
, (param
->used
) ? "y" : "n",
1068 switch (param
->state
) {
1069 case RNDIS_UNINITIALIZED
:
1070 s
= "RNDIS_UNINITIALIZED"; break;
1071 case RNDIS_INITIALIZED
:
1072 s
= "RNDIS_INITIALIZED"; break;
1073 case RNDIS_DATA_INITIALIZED
:
1074 s
= "RNDIS_DATA_INITIALIZED"; break;
1077 (param
->media_state
) ? 0 : param
->speed
*100,
1078 (param
->media_state
) ? "disconnected" : "connected",
1079 param
->vendorID
, param
->vendorDescr
);
1083 static ssize_t
rndis_proc_write(struct file
*file
, const char __user
*buffer
,
1084 size_t count
, loff_t
*ppos
)
1086 rndis_params
*p
= PDE(file
->f_path
.dentry
->d_inode
)->data
;
1088 int i
, fl_speed
= 0;
1090 for (i
= 0; i
< count
; i
++) {
1092 if (get_user(c
, buffer
))
1106 speed
= speed
*10 + c
- '0';
1110 rndis_signal_connect (p
->confignr
);
1114 rndis_signal_disconnect(p
->confignr
);
1117 if (fl_speed
) p
->speed
= speed
;
1118 else pr_debug("%c is not valid\n", c
);
1128 static int rndis_proc_open(struct inode
*inode
, struct file
*file
)
1130 return single_open(file
, rndis_proc_show
, PDE(inode
)->data
);
1133 static const struct file_operations rndis_proc_fops
= {
1134 .owner
= THIS_MODULE
,
1135 .open
= rndis_proc_open
,
1137 .llseek
= seq_lseek
,
1138 .release
= single_release
,
1139 .write
= rndis_proc_write
,
1142 #define NAME_TEMPLATE "driver/rndis-%03d"
1144 static struct proc_dir_entry
*rndis_connect_state
[RNDIS_MAX_CONFIGS
];
1146 #endif /* CONFIG_USB_GADGET_DEBUG_FILES */
1149 int __init
rndis_init (void)
1153 for (i
= 0; i
< RNDIS_MAX_CONFIGS
; i
++) {
1154 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
1157 sprintf (name
, NAME_TEMPLATE
, i
);
1158 if (!(rndis_connect_state
[i
]
1159 = proc_create_data(name
, 0660, NULL
,
1161 (void *)(rndis_per_dev_params
+ i
))))
1163 pr_debug("%s :remove entries", __func__
);
1165 sprintf (name
, NAME_TEMPLATE
, --i
);
1166 remove_proc_entry (name
, NULL
);
1172 rndis_per_dev_params
[i
].confignr
= i
;
1173 rndis_per_dev_params
[i
].used
= 0;
1174 rndis_per_dev_params
[i
].state
= RNDIS_UNINITIALIZED
;
1175 rndis_per_dev_params
[i
].media_state
1176 = NDIS_MEDIA_STATE_DISCONNECTED
;
1177 INIT_LIST_HEAD (&(rndis_per_dev_params
[i
].resp_queue
));
1183 void rndis_exit (void)
1185 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
1189 for (i
= 0; i
< RNDIS_MAX_CONFIGS
; i
++) {
1190 sprintf (name
, NAME_TEMPLATE
, i
);
1191 remove_proc_entry (name
, NULL
);