blob: ca41b0b5afb352233e86c5ccbd45dace08f4431a [file] [log] [blame]
David Brownell7e27f182006-06-13 09:54:40 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * RNDIS MSG parser
David Brownell7e27f182006-06-13 09:54:40 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Benedikt Spranger, Pengutronix
David Brownell7e27f182006-06-13 09:54:40 -07005 * Robert Schwebel, Pengutronix
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
David Brownell7e27f182006-06-13 09:54:40 -07009 * version 2, as published by the Free Software Foundation.
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * This software was originally developed in conformance with
12 * Microsoft's Remote NDIS Specification License Agreement.
David Brownell7e27f182006-06-13 09:54:40 -070013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * 03/12/2004 Kai-Uwe Bloem <linux-development@auerswald.de>
15 * Fixed message length bug in init_response
David Brownell7e27f182006-06-13 09:54:40 -070016 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * 03/25/2004 Kai-Uwe Bloem <linux-development@auerswald.de>
David Brownell7e27f182006-06-13 09:54:40 -070018 * Fixed rndis_rm_hdr length bug.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
20 * Copyright (C) 2004 by David Brownell
21 * updates to merge with Linux 2.6, better match RNDIS spec
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25#include <linux/moduleparam.h>
26#include <linux/kernel.h>
27#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/init.h>
29#include <linux/list.h>
30#include <linux/proc_fs.h>
Alexey Dobriyane184d5f2008-05-14 16:25:13 -070031#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/netdevice.h>
33
34#include <asm/io.h>
35#include <asm/byteorder.h>
36#include <asm/system.h>
David Brownell6cdee102005-04-18 17:39:34 -070037#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39
David Brownell15b2d2b2008-06-19 18:19:16 -070040#undef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "rndis.h"
43
44
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).
47 *
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.
50 */
51
52#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static int rndis_debug = 0;
David Brownell340600a2005-04-28 13:45:25 -070054module_param (rndis_debug, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055MODULE_PARM_DESC (rndis_debug, "enable debugging");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define rndis_debug 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif
59
60#define RNDIS_MAX_CONFIGS 1
61
62
63static rndis_params rndis_per_dev_params [RNDIS_MAX_CONFIGS];
64
65/* Driver Version */
Harvey Harrison35c26c22009-02-14 22:56:56 -080066static const __le32 rndis_driver_version = cpu_to_le32 (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/* Function Prototypes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static rndis_resp_t *rndis_add_response (int configNr, u32 length);
70
71
David Brownell340600a2005-04-28 13:45:25 -070072/* supported OIDs */
David Brownell7e27f182006-06-13 09:54:40 -070073static const u32 oid_supported_list [] =
David Brownell340600a2005-04-28 13:45:25 -070074{
75 /* the general stuff */
76 OID_GEN_SUPPORTED_LIST,
77 OID_GEN_HARDWARE_STATUS,
78 OID_GEN_MEDIA_SUPPORTED,
79 OID_GEN_MEDIA_IN_USE,
80 OID_GEN_MAXIMUM_FRAME_SIZE,
81 OID_GEN_LINK_SPEED,
82 OID_GEN_TRANSMIT_BLOCK_SIZE,
83 OID_GEN_RECEIVE_BLOCK_SIZE,
84 OID_GEN_VENDOR_ID,
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,
David Brownell7e27f182006-06-13 09:54:40 -070091
David Brownell340600a2005-04-28 13:45:25 -070092 /* the statistical stuff */
93 OID_GEN_XMIT_OK,
94 OID_GEN_RCV_OK,
95 OID_GEN_XMIT_ERROR,
96 OID_GEN_RCV_ERROR,
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 */
114
David Brownell7e27f182006-06-13 09:54:40 -0700115 /* mandatory 802.3 */
David Brownell340600a2005-04-28 13:45:25 -0700116 /* 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,
David Brownell7e27f182006-06-13 09:54:40 -0700122
David Brownell340600a2005-04-28 13:45:25 -0700123 /* 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 */
136
137#ifdef RNDIS_PM
David Brownell15b2d2b2008-06-19 18:19:16 -0700138 /* 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.)
142 *
143 * FIXME someone who knows what these should do, please
144 * implement them!
145 */
David Brownell340600a2005-04-28 13:45:25 -0700146
147 /* power management */
148 OID_PNP_CAPABILITIES,
149 OID_PNP_QUERY_POWER,
150 OID_PNP_SET_POWER,
151
152#ifdef RNDIS_WAKEUP
153 /* wake up host */
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 */
159};
160
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/* NDIS Functions */
David Brownell340600a2005-04-28 13:45:25 -0700163static int
164gen_ndis_query_resp (int configNr, u32 OID, u8 *buf, unsigned buf_len,
165 rndis_resp_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
David Brownell7e27f182006-06-13 09:54:40 -0700167 int retval = -ENOTSUPP;
168 u32 length = 4; /* usually */
David Brownell340600a2005-04-28 13:45:25 -0700169 __le32 *outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 int i, count;
171 rndis_query_cmplt_type *resp;
David Brownell15b2d2b2008-06-19 18:19:16 -0700172 struct net_device *net;
Stephen Hemmingerb5556492009-03-20 19:35:59 +0000173 const struct net_device_stats *stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 if (!r) return -ENOMEM;
176 resp = (rndis_query_cmplt_type *) r->buf;
177
178 if (!resp) return -ENOMEM;
David Brownell340600a2005-04-28 13:45:25 -0700179
180 if (buf_len && rndis_debug > 1) {
David Brownell33376c12008-08-18 17:45:07 -0700181 pr_debug("query OID %08x value, len %d:\n", OID, buf_len);
David Brownell340600a2005-04-28 13:45:25 -0700182 for (i = 0; i < buf_len; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700183 pr_debug("%03d: %08x %08x %08x %08x\n", i,
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700184 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]));
David Brownell340600a2005-04-28 13:45:25 -0700188 }
189 }
190
191 /* response goes here, right after the header */
192 outbuf = (__le32 *) &resp[1];
Harvey Harrison35c26c22009-02-14 22:56:56 -0800193 resp->InformationBufferOffset = cpu_to_le32 (16);
David Brownell340600a2005-04-28 13:45:25 -0700194
David Brownell15b2d2b2008-06-19 18:19:16 -0700195 net = rndis_per_dev_params[configNr].dev;
Stephen Hemmingerb5556492009-03-20 19:35:59 +0000196 stats = dev_get_stats(net);
David Brownell15b2d2b2008-06-19 18:19:16 -0700197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 switch (OID) {
199
200 /* general oids (table 4-1) */
201
202 /* mandatory */
203 case OID_GEN_SUPPORTED_LIST:
David Brownell33376c12008-08-18 17:45:07 -0700204 pr_debug("%s: OID_GEN_SUPPORTED_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 length = sizeof (oid_supported_list);
206 count = length / sizeof (u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 for (i = 0; i < count; i++)
David Brownell340600a2005-04-28 13:45:25 -0700208 outbuf[i] = cpu_to_le32 (oid_supported_list[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 retval = 0;
210 break;
David Brownell7e27f182006-06-13 09:54:40 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* mandatory */
213 case OID_GEN_HARDWARE_STATUS:
David Brownell33376c12008-08-18 17:45:07 -0700214 pr_debug("%s: OID_GEN_HARDWARE_STATUS\n", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700215 /* Bogus question!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * Hardware must be ready to receive high level protocols.
David Brownell7e27f182006-06-13 09:54:40 -0700217 * BTW:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * reddite ergo quae sunt Caesaris Caesari
219 * et quae sunt Dei Deo!
220 */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800221 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 retval = 0;
223 break;
David Brownell7e27f182006-06-13 09:54:40 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /* mandatory */
226 case OID_GEN_MEDIA_SUPPORTED:
David Brownell33376c12008-08-18 17:45:07 -0700227 pr_debug("%s: OID_GEN_MEDIA_SUPPORTED\n", __func__);
David Brownell340600a2005-04-28 13:45:25 -0700228 *outbuf = cpu_to_le32 (rndis_per_dev_params [configNr].medium);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 retval = 0;
230 break;
David Brownell7e27f182006-06-13 09:54:40 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 /* mandatory */
233 case OID_GEN_MEDIA_IN_USE:
David Brownell33376c12008-08-18 17:45:07 -0700234 pr_debug("%s: OID_GEN_MEDIA_IN_USE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /* one medium, one transport... (maybe you do it better) */
David Brownell340600a2005-04-28 13:45:25 -0700236 *outbuf = cpu_to_le32 (rndis_per_dev_params [configNr].medium);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 retval = 0;
238 break;
David Brownell7e27f182006-06-13 09:54:40 -0700239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* mandatory */
241 case OID_GEN_MAXIMUM_FRAME_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700242 pr_debug("%s: OID_GEN_MAXIMUM_FRAME_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (rndis_per_dev_params [configNr].dev) {
David Brownell340600a2005-04-28 13:45:25 -0700244 *outbuf = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 rndis_per_dev_params [configNr].dev->mtu);
246 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248 break;
David Brownell7e27f182006-06-13 09:54:40 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* mandatory */
251 case OID_GEN_LINK_SPEED:
David Brownell340600a2005-04-28 13:45:25 -0700252 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700253 pr_debug("%s: OID_GEN_LINK_SPEED\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (rndis_per_dev_params [configNr].media_state
David Brownell340600a2005-04-28 13:45:25 -0700255 == NDIS_MEDIA_STATE_DISCONNECTED)
Harvey Harrison35c26c22009-02-14 22:56:56 -0800256 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 else
David Brownell340600a2005-04-28 13:45:25 -0700258 *outbuf = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 rndis_per_dev_params [configNr].speed);
260 retval = 0;
261 break;
262
263 /* mandatory */
264 case OID_GEN_TRANSMIT_BLOCK_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700265 pr_debug("%s: OID_GEN_TRANSMIT_BLOCK_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (rndis_per_dev_params [configNr].dev) {
David Brownell340600a2005-04-28 13:45:25 -0700267 *outbuf = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 rndis_per_dev_params [configNr].dev->mtu);
269 retval = 0;
270 }
271 break;
David Brownell7e27f182006-06-13 09:54:40 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* mandatory */
274 case OID_GEN_RECEIVE_BLOCK_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700275 pr_debug("%s: OID_GEN_RECEIVE_BLOCK_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (rndis_per_dev_params [configNr].dev) {
David Brownell340600a2005-04-28 13:45:25 -0700277 *outbuf = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 rndis_per_dev_params [configNr].dev->mtu);
279 retval = 0;
280 }
281 break;
David Brownell7e27f182006-06-13 09:54:40 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 /* mandatory */
284 case OID_GEN_VENDOR_ID:
David Brownell33376c12008-08-18 17:45:07 -0700285 pr_debug("%s: OID_GEN_VENDOR_ID\n", __func__);
David Brownell340600a2005-04-28 13:45:25 -0700286 *outbuf = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 rndis_per_dev_params [configNr].vendorID);
288 retval = 0;
289 break;
David Brownell7e27f182006-06-13 09:54:40 -0700290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* mandatory */
292 case OID_GEN_VENDOR_DESCRIPTION:
David Brownell33376c12008-08-18 17:45:07 -0700293 pr_debug("%s: OID_GEN_VENDOR_DESCRIPTION\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 length = strlen (rndis_per_dev_params [configNr].vendorDescr);
David Brownell340600a2005-04-28 13:45:25 -0700295 memcpy (outbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 rndis_per_dev_params [configNr].vendorDescr, length);
297 retval = 0;
298 break;
299
300 case OID_GEN_VENDOR_DRIVER_VERSION:
David Brownell33376c12008-08-18 17:45:07 -0700301 pr_debug("%s: OID_GEN_VENDOR_DRIVER_VERSION\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /* Created as LE */
David Brownell340600a2005-04-28 13:45:25 -0700303 *outbuf = rndis_driver_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 retval = 0;
305 break;
306
307 /* mandatory */
308 case OID_GEN_CURRENT_PACKET_FILTER:
David Brownell33376c12008-08-18 17:45:07 -0700309 pr_debug("%s: OID_GEN_CURRENT_PACKET_FILTER\n", __func__);
David Brownell340600a2005-04-28 13:45:25 -0700310 *outbuf = cpu_to_le32 (*rndis_per_dev_params[configNr].filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 retval = 0;
312 break;
313
314 /* mandatory */
315 case OID_GEN_MAXIMUM_TOTAL_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700316 pr_debug("%s: OID_GEN_MAXIMUM_TOTAL_SIZE\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800317 *outbuf = cpu_to_le32(RNDIS_MAX_TOTAL_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 retval = 0;
319 break;
320
321 /* mandatory */
322 case OID_GEN_MEDIA_CONNECT_STATUS:
David Brownell340600a2005-04-28 13:45:25 -0700323 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700324 pr_debug("%s: OID_GEN_MEDIA_CONNECT_STATUS\n", __func__);
David Brownell340600a2005-04-28 13:45:25 -0700325 *outbuf = cpu_to_le32 (rndis_per_dev_params [configNr]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 .media_state);
327 retval = 0;
328 break;
329
330 case OID_GEN_PHYSICAL_MEDIUM:
David Brownell33376c12008-08-18 17:45:07 -0700331 pr_debug("%s: OID_GEN_PHYSICAL_MEDIUM\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800332 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 retval = 0;
334 break;
335
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!
339 */
340 case OID_GEN_MAC_OPTIONS: /* from WinME */
David Brownell33376c12008-08-18 17:45:07 -0700341 pr_debug("%s: OID_GEN_MAC_OPTIONS\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800342 *outbuf = cpu_to_le32(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 NDIS_MAC_OPTION_RECEIVE_SERIALIZED
344 | NDIS_MAC_OPTION_FULL_DUPLEX);
345 retval = 0;
346 break;
347
348 /* statistics OIDs (table 4-2) */
349
350 /* mandatory */
351 case OID_GEN_XMIT_OK:
David Brownell340600a2005-04-28 13:45:25 -0700352 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700353 pr_debug("%s: OID_GEN_XMIT_OK\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700354 if (stats) {
355 *outbuf = cpu_to_le32(stats->tx_packets
356 - stats->tx_errors - stats->tx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359 break;
360
361 /* mandatory */
362 case OID_GEN_RCV_OK:
David Brownell340600a2005-04-28 13:45:25 -0700363 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700364 pr_debug("%s: OID_GEN_RCV_OK\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700365 if (stats) {
366 *outbuf = cpu_to_le32(stats->rx_packets
367 - stats->rx_errors - stats->rx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370 break;
David Brownell7e27f182006-06-13 09:54:40 -0700371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* mandatory */
373 case OID_GEN_XMIT_ERROR:
David Brownell340600a2005-04-28 13:45:25 -0700374 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700375 pr_debug("%s: OID_GEN_XMIT_ERROR\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700376 if (stats) {
377 *outbuf = cpu_to_le32(stats->tx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380 break;
David Brownell7e27f182006-06-13 09:54:40 -0700381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /* mandatory */
383 case OID_GEN_RCV_ERROR:
David Brownell340600a2005-04-28 13:45:25 -0700384 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700385 pr_debug("%s: OID_GEN_RCV_ERROR\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700386 if (stats) {
387 *outbuf = cpu_to_le32(stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390 break;
David Brownell7e27f182006-06-13 09:54:40 -0700391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* mandatory */
393 case OID_GEN_RCV_NO_BUFFER:
David Brownell33376c12008-08-18 17:45:07 -0700394 pr_debug("%s: OID_GEN_RCV_NO_BUFFER\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700395 if (stats) {
396 *outbuf = cpu_to_le32(stats->rx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399 break;
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* ieee802.3 OIDs (table 4-3) */
402
403 /* mandatory */
404 case OID_802_3_PERMANENT_ADDRESS:
David Brownell33376c12008-08-18 17:45:07 -0700405 pr_debug("%s: OID_802_3_PERMANENT_ADDRESS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (rndis_per_dev_params [configNr].dev) {
407 length = ETH_ALEN;
David Brownell340600a2005-04-28 13:45:25 -0700408 memcpy (outbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 rndis_per_dev_params [configNr].host_mac,
410 length);
411 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 break;
David Brownell7e27f182006-06-13 09:54:40 -0700414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /* mandatory */
416 case OID_802_3_CURRENT_ADDRESS:
David Brownell33376c12008-08-18 17:45:07 -0700417 pr_debug("%s: OID_802_3_CURRENT_ADDRESS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (rndis_per_dev_params [configNr].dev) {
419 length = ETH_ALEN;
David Brownell340600a2005-04-28 13:45:25 -0700420 memcpy (outbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 rndis_per_dev_params [configNr].host_mac,
422 length);
423 retval = 0;
424 }
425 break;
David Brownell7e27f182006-06-13 09:54:40 -0700426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /* mandatory */
428 case OID_802_3_MULTICAST_LIST:
David Brownell33376c12008-08-18 17:45:07 -0700429 pr_debug("%s: OID_802_3_MULTICAST_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /* Multicast base address only */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800431 *outbuf = cpu_to_le32 (0xE0000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 retval = 0;
433 break;
David Brownell7e27f182006-06-13 09:54:40 -0700434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /* mandatory */
436 case OID_802_3_MAXIMUM_LIST_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700437 pr_debug("%s: OID_802_3_MAXIMUM_LIST_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /* Multicast base address only */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800439 *outbuf = cpu_to_le32 (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 retval = 0;
441 break;
David Brownell7e27f182006-06-13 09:54:40 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 case OID_802_3_MAC_OPTIONS:
David Brownell33376c12008-08-18 17:45:07 -0700444 pr_debug("%s: OID_802_3_MAC_OPTIONS\n", __func__);
Qiuping Chen6bc21462009-07-01 03:49:29 -0700445 *outbuf = cpu_to_le32(0);
446 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 break;
448
449 /* ieee802.3 statistics OIDs (table 4-4) */
450
451 /* mandatory */
452 case OID_802_3_RCV_ERROR_ALIGNMENT:
David Brownell33376c12008-08-18 17:45:07 -0700453 pr_debug("%s: OID_802_3_RCV_ERROR_ALIGNMENT\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700454 if (stats) {
455 *outbuf = cpu_to_le32(stats->rx_frame_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 retval = 0;
457 }
458 break;
David Brownell7e27f182006-06-13 09:54:40 -0700459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /* mandatory */
461 case OID_802_3_XMIT_ONE_COLLISION:
David Brownell33376c12008-08-18 17:45:07 -0700462 pr_debug("%s: OID_802_3_XMIT_ONE_COLLISION\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800463 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 retval = 0;
465 break;
David Brownell7e27f182006-06-13 09:54:40 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 /* mandatory */
468 case OID_802_3_XMIT_MORE_COLLISIONS:
David Brownell33376c12008-08-18 17:45:07 -0700469 pr_debug("%s: OID_802_3_XMIT_MORE_COLLISIONS\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800470 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 retval = 0;
472 break;
David Brownell7e27f182006-06-13 09:54:40 -0700473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 default:
David Brownell00274922007-11-19 12:58:36 -0800475 pr_warning("%s: query unknown OID 0x%08X\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800476 __func__, OID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
David Brownell340600a2005-04-28 13:45:25 -0700478 if (retval < 0)
479 length = 0;
David Brownell7e27f182006-06-13 09:54:40 -0700480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 resp->InformationBufferLength = cpu_to_le32 (length);
David Brownell340600a2005-04-28 13:45:25 -0700482 r->length = length + sizeof *resp;
483 resp->MessageLength = cpu_to_le32 (r->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return retval;
485}
486
David Brownell7e27f182006-06-13 09:54:40 -0700487static int gen_ndis_set_resp (u8 configNr, u32 OID, u8 *buf, u32 buf_len,
488 rndis_resp_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 rndis_set_cmplt_type *resp;
David Brownell7e27f182006-06-13 09:54:40 -0700491 int i, retval = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 struct rndis_params *params;
493
494 if (!r)
495 return -ENOMEM;
496 resp = (rndis_set_cmplt_type *) r->buf;
497 if (!resp)
498 return -ENOMEM;
499
David Brownell340600a2005-04-28 13:45:25 -0700500 if (buf_len && rndis_debug > 1) {
David Brownell33376c12008-08-18 17:45:07 -0700501 pr_debug("set OID %08x value, len %d:\n", OID, buf_len);
David Brownell340600a2005-04-28 13:45:25 -0700502 for (i = 0; i < buf_len; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700503 pr_debug("%03d: %08x %08x %08x %08x\n", i,
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700504 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]));
David Brownell340600a2005-04-28 13:45:25 -0700508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510
David Brownell340600a2005-04-28 13:45:25 -0700511 params = &rndis_per_dev_params [configNr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 switch (OID) {
513 case OID_GEN_CURRENT_PACKET_FILTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
David Brownell340600a2005-04-28 13:45:25 -0700515 /* these NDIS_PACKET_TYPE_* bitflags are shared with
516 * cdc_filter; it's not RNDIS-specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 * NDIS_PACKET_TYPE_x == USB_CDC_PACKET_TYPE_x for x in:
518 * PROMISCUOUS, DIRECTED,
519 * MULTICAST, ALL_MULTICAST, BROADCAST
520 */
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700521 *params->filter = (u16)get_unaligned_le32(buf);
David Brownell33376c12008-08-18 17:45:07 -0700522 pr_debug("%s: OID_GEN_CURRENT_PACKET_FILTER %08x\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800523 __func__, *params->filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
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.
528 */
David Brownell340600a2005-04-28 13:45:25 -0700529 retval = 0;
530 if (*params->filter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 params->state = RNDIS_DATA_INITIALIZED;
532 netif_carrier_on(params->dev);
533 if (netif_running(params->dev))
534 netif_wake_queue (params->dev);
535 } else {
536 params->state = RNDIS_INITIALIZED;
537 netif_carrier_off (params->dev);
538 netif_stop_queue (params->dev);
539 }
540 break;
David Brownell7e27f182006-06-13 09:54:40 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 case OID_802_3_MULTICAST_LIST:
David Brownell7e27f182006-06-13 09:54:40 -0700543 /* I think we can ignore this */
David Brownell33376c12008-08-18 17:45:07 -0700544 pr_debug("%s: OID_802_3_MULTICAST_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 retval = 0;
546 break;
David Brownell340600a2005-04-28 13:45:25 -0700547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 default:
David Brownell00274922007-11-19 12:58:36 -0800549 pr_warning("%s: set unknown OID 0x%08X, size %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800550 __func__, OID, buf_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
David Brownell7e27f182006-06-13 09:54:40 -0700552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return retval;
554}
555
David Brownell7e27f182006-06-13 09:54:40 -0700556/*
557 * Response Functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 */
559
560static int rndis_init_response (int configNr, rndis_init_msg_type *buf)
561{
David Brownell7e27f182006-06-13 09:54:40 -0700562 rndis_init_cmplt_type *resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700564 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700565
David Brownell15b2d2b2008-06-19 18:19:16 -0700566 if (!params->dev)
567 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 r = rndis_add_response (configNr, sizeof (rndis_init_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700570 if (!r)
571 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 resp = (rndis_init_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700573
Harvey Harrison35c26c22009-02-14 22:56:56 -0800574 resp->MessageType = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 REMOTE_NDIS_INITIALIZE_CMPLT);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800576 resp->MessageLength = cpu_to_le32 (52);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800578 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 resp->MaxTransferSize = cpu_to_le32 (
David Brownell15b2d2b2008-06-19 18:19:16 -0700585 params->dev->mtu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 + sizeof (struct ethhdr)
587 + sizeof (struct rndis_packet_msg_type)
588 + 22);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800589 resp->PacketAlignmentFactor = cpu_to_le32 (0);
590 resp->AFListOffset = cpu_to_le32 (0);
591 resp->AFListSize = cpu_to_le32 (0);
David Brownell7e27f182006-06-13 09:54:40 -0700592
David Brownell15b2d2b2008-06-19 18:19:16 -0700593 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return 0;
595}
596
597static int rndis_query_response (int configNr, rndis_query_msg_type *buf)
598{
599 rndis_query_cmplt_type *resp;
600 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700601 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700602
David Brownell33376c12008-08-18 17:45:07 -0700603 /* pr_debug("%s: OID = %08X\n", __func__, cpu_to_le32(buf->OID)); */
David Brownell15b2d2b2008-06-19 18:19:16 -0700604 if (!params->dev)
605 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700606
Shaun Tancheff87637162006-02-22 19:47:19 -0800607 /*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 */
Shaun Tancheff87637162006-02-22 19:47:19 -0800613 r = rndis_add_response (configNr,
614 sizeof (oid_supported_list) + sizeof(rndis_query_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700615 if (!r)
616 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 resp = (rndis_query_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700618
Harvey Harrison35c26c22009-02-14 22:56:56 -0800619 resp->MessageType = cpu_to_le32 (REMOTE_NDIS_QUERY_CMPLT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
David Brownell7e27f182006-06-13 09:54:40 -0700621
David Brownell340600a2005-04-28 13:45:25 -0700622 if (gen_ndis_query_resp (configNr, le32_to_cpu (buf->OID),
623 le32_to_cpu(buf->InformationBufferOffset)
624 + 8 + (u8 *) buf,
625 le32_to_cpu(buf->InformationBufferLength),
626 r)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* OID not supported */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800628 resp->Status = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 RNDIS_STATUS_NOT_SUPPORTED);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800630 resp->MessageLength = cpu_to_le32 (sizeof *resp);
631 resp->InformationBufferLength = cpu_to_le32 (0);
632 resp->InformationBufferOffset = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 } else
Harvey Harrison35c26c22009-02-14 22:56:56 -0800634 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700635
David Brownell15b2d2b2008-06-19 18:19:16 -0700636 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 0;
638}
639
640static int rndis_set_response (int configNr, rndis_set_msg_type *buf)
641{
642 u32 BufLength, BufOffset;
643 rndis_set_cmplt_type *resp;
644 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700645 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 r = rndis_add_response (configNr, sizeof (rndis_set_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700648 if (!r)
649 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 resp = (rndis_set_cmplt_type *) r->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 BufLength = le32_to_cpu (buf->InformationBufferLength);
653 BufOffset = le32_to_cpu (buf->InformationBufferOffset);
654
David Brownell15b2d2b2008-06-19 18:19:16 -0700655#ifdef VERBOSE_DEBUG
David Brownell33376c12008-08-18 17:45:07 -0700656 pr_debug("%s: Length: %d\n", __func__, BufLength);
657 pr_debug("%s: Offset: %d\n", __func__, BufOffset);
658 pr_debug("%s: InfoBuffer: ", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 for (i = 0; i < BufLength; i++) {
David Brownell33376c12008-08-18 17:45:07 -0700661 pr_debug("%02x ", *(((u8 *) buf) + i + 8 + BufOffset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
David Brownell7e27f182006-06-13 09:54:40 -0700663
David Brownell33376c12008-08-18 17:45:07 -0700664 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#endif
David Brownell7e27f182006-06-13 09:54:40 -0700666
Harvey Harrison35c26c22009-02-14 22:56:56 -0800667 resp->MessageType = cpu_to_le32 (REMOTE_NDIS_SET_CMPLT);
668 resp->MessageLength = cpu_to_le32 (16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
David Brownell7e27f182006-06-13 09:54:40 -0700670 if (gen_ndis_set_resp (configNr, le32_to_cpu (buf->OID),
671 ((u8 *) buf) + 8 + BufOffset, BufLength, r))
Harvey Harrison35c26c22009-02-14 22:56:56 -0800672 resp->Status = cpu_to_le32 (RNDIS_STATUS_NOT_SUPPORTED);
David Brownell7e27f182006-06-13 09:54:40 -0700673 else
Harvey Harrison35c26c22009-02-14 22:56:56 -0800674 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700675
David Brownell15b2d2b2008-06-19 18:19:16 -0700676 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return 0;
678}
679
680static int rndis_reset_response (int configNr, rndis_reset_msg_type *buf)
681{
682 rndis_reset_cmplt_type *resp;
683 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700684 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 r = rndis_add_response (configNr, sizeof (rndis_reset_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700687 if (!r)
688 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 resp = (rndis_reset_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700690
Harvey Harrison35c26c22009-02-14 22:56:56 -0800691 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* resent information */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800695 resp->AddressingReset = cpu_to_le32 (1);
David Brownell7e27f182006-06-13 09:54:40 -0700696
David Brownell15b2d2b2008-06-19 18:19:16 -0700697 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return 0;
699}
700
701static int rndis_keepalive_response (int configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700702 rndis_keepalive_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 rndis_keepalive_cmplt_type *resp;
705 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700706 struct rndis_params *params = rndis_per_dev_params + configNr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 /* host "should" check only in RNDIS_DATA_INITIALIZED state */
709
710 r = rndis_add_response (configNr, sizeof (rndis_keepalive_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700711 if (!r)
712 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 resp = (rndis_keepalive_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700714
Harvey Harrison35c26c22009-02-14 22:56:56 -0800715 resp->MessageType = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 REMOTE_NDIS_KEEPALIVE_CMPLT);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800717 resp->MessageLength = cpu_to_le32 (16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800719 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700720
David Brownell15b2d2b2008-06-19 18:19:16 -0700721 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return 0;
723}
724
725
David Brownell7e27f182006-06-13 09:54:40 -0700726/*
727 * Device to Host Comunication
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 */
729static int rndis_indicate_status_msg (int configNr, u32 status)
730{
David Brownell7e27f182006-06-13 09:54:40 -0700731 rndis_indicate_status_msg_type *resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700733 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700734
David Brownell15b2d2b2008-06-19 18:19:16 -0700735 if (params->state == RNDIS_UNINITIALIZED)
David Brownell7e27f182006-06-13 09:54:40 -0700736 return -ENOTSUPP;
737
738 r = rndis_add_response (configNr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 sizeof (rndis_indicate_status_msg_type));
David Brownell340600a2005-04-28 13:45:25 -0700740 if (!r)
741 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 resp = (rndis_indicate_status_msg_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700743
Harvey Harrison35c26c22009-02-14 22:56:56 -0800744 resp->MessageType = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 REMOTE_NDIS_INDICATE_STATUS_MSG);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800746 resp->MessageLength = cpu_to_le32 (20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 resp->Status = cpu_to_le32 (status);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800748 resp->StatusBufferLength = cpu_to_le32 (0);
749 resp->StatusBufferOffset = cpu_to_le32 (0);
David Brownell7e27f182006-06-13 09:54:40 -0700750
David Brownell15b2d2b2008-06-19 18:19:16 -0700751 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return 0;
753}
754
755int rndis_signal_connect (int configNr)
756{
757 rndis_per_dev_params [configNr].media_state
758 = NDIS_MEDIA_STATE_CONNECTED;
David Brownell7e27f182006-06-13 09:54:40 -0700759 return rndis_indicate_status_msg (configNr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 RNDIS_STATUS_MEDIA_CONNECT);
761}
762
763int rndis_signal_disconnect (int configNr)
764{
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);
769}
770
David Brownell340600a2005-04-28 13:45:25 -0700771void rndis_uninit (int configNr)
772{
David Brownell486e2df2005-05-24 17:51:52 -0700773 u8 *buf;
774 u32 length;
775
David Brownell340600a2005-04-28 13:45:25 -0700776 if (configNr >= RNDIS_MAX_CONFIGS)
777 return;
David Brownell340600a2005-04-28 13:45:25 -0700778 rndis_per_dev_params [configNr].state = RNDIS_UNINITIALIZED;
David Brownell486e2df2005-05-24 17:51:52 -0700779
780 /* drain the response queue */
781 while ((buf = rndis_get_next_response(configNr, &length)))
782 rndis_free_response(configNr, buf);
David Brownell340600a2005-04-28 13:45:25 -0700783}
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785void rndis_set_host_mac (int configNr, const u8 *addr)
786{
787 rndis_per_dev_params [configNr].host_mac = addr;
788}
789
David Brownell7e27f182006-06-13 09:54:40 -0700790/*
791 * Message Parser
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 */
793int rndis_msg_parser (u8 configNr, u8 *buf)
794{
795 u32 MsgType, MsgLength;
796 __le32 *tmp;
797 struct rndis_params *params;
David Brownell7e27f182006-06-13 09:54:40 -0700798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (!buf)
800 return -ENOMEM;
David Brownell7e27f182006-06-13 09:54:40 -0700801
802 tmp = (__le32 *) buf;
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700803 MsgType = get_unaligned_le32(tmp++);
804 MsgLength = get_unaligned_le32(tmp++);
David Brownell7e27f182006-06-13 09:54:40 -0700805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (configNr >= RNDIS_MAX_CONFIGS)
807 return -ENOTSUPP;
808 params = &rndis_per_dev_params [configNr];
David Brownell7e27f182006-06-13 09:54:40 -0700809
David Brownell340600a2005-04-28 13:45:25 -0700810 /* 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.
813 */
814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /* For USB: responses may take up to 10 seconds */
David Brownell340600a2005-04-28 13:45:25 -0700816 switch (MsgType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 case REMOTE_NDIS_INITIALIZE_MSG:
David Brownell33376c12008-08-18 17:45:07 -0700818 pr_debug("%s: REMOTE_NDIS_INITIALIZE_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800819 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 params->state = RNDIS_INITIALIZED;
821 return rndis_init_response (configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700822 (rndis_init_msg_type *) buf);
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 case REMOTE_NDIS_HALT_MSG:
David Brownell33376c12008-08-18 17:45:07 -0700825 pr_debug("%s: REMOTE_NDIS_HALT_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800826 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 params->state = RNDIS_UNINITIALIZED;
828 if (params->dev) {
829 netif_carrier_off (params->dev);
830 netif_stop_queue (params->dev);
831 }
832 return 0;
David Brownell7e27f182006-06-13 09:54:40 -0700833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 case REMOTE_NDIS_QUERY_MSG:
David Brownell7e27f182006-06-13 09:54:40 -0700835 return rndis_query_response (configNr,
836 (rndis_query_msg_type *) buf);
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 case REMOTE_NDIS_SET_MSG:
David Brownell7e27f182006-06-13 09:54:40 -0700839 return rndis_set_response (configNr,
840 (rndis_set_msg_type *) buf);
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 case REMOTE_NDIS_RESET_MSG:
David Brownell33376c12008-08-18 17:45:07 -0700843 pr_debug("%s: REMOTE_NDIS_RESET_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800844 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return rndis_reset_response (configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700846 (rndis_reset_msg_type *) buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 case REMOTE_NDIS_KEEPALIVE_MSG:
849 /* For USB: host does this every 5 seconds */
David Brownell340600a2005-04-28 13:45:25 -0700850 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700851 pr_debug("%s: REMOTE_NDIS_KEEPALIVE_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800852 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return rndis_keepalive_response (configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700854 (rndis_keepalive_msg_type *)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 buf);
David Brownell7e27f182006-06-13 09:54:40 -0700856
857 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /* At least Windows XP emits some undefined RNDIS messages.
859 * In one case those messages seemed to relate to the host
860 * suspending itself.
861 */
David Brownell00274922007-11-19 12:58:36 -0800862 pr_warning("%s: unknown RNDIS message 0x%08X len %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800863 __func__ , MsgType, MsgLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 {
865 unsigned i;
866 for (i = 0; i < MsgLength; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700867 pr_debug("%03d: "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 " %02x %02x %02x %02x"
869 " %02x %02x %02x %02x"
870 " %02x %02x %02x %02x"
871 " %02x %02x %02x %02x"
872 "\n",
873 i,
874 buf[i], buf [i+1],
875 buf[i+2], buf[i+3],
876 buf[i+4], buf [i+5],
877 buf[i+6], buf[i+7],
878 buf[i+8], buf [i+9],
879 buf[i+10], buf[i+11],
880 buf[i+12], buf [i+13],
881 buf[i+14], buf[i+15]);
882 }
883 }
884 break;
885 }
David Brownell7e27f182006-06-13 09:54:40 -0700886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return -ENOTSUPP;
888}
889
David Brownell15b2d2b2008-06-19 18:19:16 -0700890int rndis_register(void (*resp_avail)(void *v), void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
892 u8 i;
David Brownell7e27f182006-06-13 09:54:40 -0700893
David Brownell15b2d2b2008-06-19 18:19:16 -0700894 if (!resp_avail)
895 return -EINVAL;
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 for (i = 0; i < RNDIS_MAX_CONFIGS; i++) {
898 if (!rndis_per_dev_params [i].used) {
899 rndis_per_dev_params [i].used = 1;
David Brownell15b2d2b2008-06-19 18:19:16 -0700900 rndis_per_dev_params [i].resp_avail = resp_avail;
901 rndis_per_dev_params [i].v = v;
David Brownell33376c12008-08-18 17:45:07 -0700902 pr_debug("%s: configNr = %d\n", __func__, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return i;
904 }
905 }
David Brownell33376c12008-08-18 17:45:07 -0700906 pr_debug("failed\n");
David Brownell7e27f182006-06-13 09:54:40 -0700907
David Brownell15b2d2b2008-06-19 18:19:16 -0700908 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
911void rndis_deregister (int configNr)
912{
David Brownell33376c12008-08-18 17:45:07 -0700913 pr_debug("%s: \n", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (configNr >= RNDIS_MAX_CONFIGS) return;
916 rndis_per_dev_params [configNr].used = 0;
David Brownell7e27f182006-06-13 09:54:40 -0700917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return;
919}
920
David Brownell15b2d2b2008-06-19 18:19:16 -0700921int rndis_set_param_dev(u8 configNr, struct net_device *dev, u16 *cdc_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
David Brownell33376c12008-08-18 17:45:07 -0700923 pr_debug("%s:\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700924 if (!dev)
925 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 if (configNr >= RNDIS_MAX_CONFIGS) return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 rndis_per_dev_params [configNr].dev = dev;
David Brownell340600a2005-04-28 13:45:25 -0700929 rndis_per_dev_params [configNr].filter = cdc_filter;
David Brownell7e27f182006-06-13 09:54:40 -0700930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return 0;
932}
933
934int rndis_set_param_vendor (u8 configNr, u32 vendorID, const char *vendorDescr)
935{
David Brownell33376c12008-08-18 17:45:07 -0700936 pr_debug("%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (!vendorDescr) return -1;
938 if (configNr >= RNDIS_MAX_CONFIGS) return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 rndis_per_dev_params [configNr].vendorID = vendorID;
941 rndis_per_dev_params [configNr].vendorDescr = vendorDescr;
David Brownell7e27f182006-06-13 09:54:40 -0700942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return 0;
944}
945
946int rndis_set_param_medium (u8 configNr, u32 medium, u32 speed)
947{
David Brownell33376c12008-08-18 17:45:07 -0700948 pr_debug("%s: %u %u\n", __func__, medium, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (configNr >= RNDIS_MAX_CONFIGS) return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 rndis_per_dev_params [configNr].medium = medium;
952 rndis_per_dev_params [configNr].speed = speed;
David Brownell7e27f182006-06-13 09:54:40 -0700953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return 0;
955}
956
957void rndis_add_hdr (struct sk_buff *skb)
958{
959 struct rndis_packet_msg_type *header;
960
961 if (!skb)
962 return;
963 header = (void *) skb_push (skb, sizeof *header);
964 memset (header, 0, sizeof *header);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800965 header->MessageType = cpu_to_le32(REMOTE_NDIS_PACKET_MSG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 header->MessageLength = cpu_to_le32(skb->len);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800967 header->DataOffset = cpu_to_le32 (36);
David Brownell6cdee102005-04-18 17:39:34 -0700968 header->DataLength = cpu_to_le32(skb->len - sizeof *header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
971void rndis_free_response (int configNr, u8 *buf)
972{
973 rndis_resp_t *r;
974 struct list_head *act, *tmp;
David Brownell7e27f182006-06-13 09:54:40 -0700975
976 list_for_each_safe (act, tmp,
977 &(rndis_per_dev_params [configNr].resp_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 {
979 r = list_entry (act, rndis_resp_t, list);
980 if (r && r->buf == buf) {
981 list_del (&r->list);
982 kfree (r);
983 }
984 }
985}
986
987u8 *rndis_get_next_response (int configNr, u32 *length)
988{
989 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700990 struct list_head *act, *tmp;
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (!length) return NULL;
David Brownell7e27f182006-06-13 09:54:40 -0700993
994 list_for_each_safe (act, tmp,
995 &(rndis_per_dev_params [configNr].resp_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 {
997 r = list_entry (act, rndis_resp_t, list);
998 if (!r->send) {
999 r->send = 1;
1000 *length = r->length;
1001 return r->buf;
1002 }
1003 }
David Brownell7e27f182006-06-13 09:54:40 -07001004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return NULL;
1006}
1007
1008static rndis_resp_t *rndis_add_response (int configNr, u32 length)
1009{
1010 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -07001011
David Brownell340600a2005-04-28 13:45:25 -07001012 /* NOTE: this gets copied into ether.c USB_BUFSIZ bytes ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 r = kmalloc (sizeof (rndis_resp_t) + length, GFP_ATOMIC);
1014 if (!r) return NULL;
David Brownell7e27f182006-06-13 09:54:40 -07001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 r->buf = (u8 *) (r + 1);
1017 r->length = length;
1018 r->send = 0;
David Brownell7e27f182006-06-13 09:54:40 -07001019
1020 list_add_tail (&r->list,
1021 &(rndis_per_dev_params [configNr].resp_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return r;
1023}
1024
David Brownell6cdee102005-04-18 17:39:34 -07001025int rndis_rm_hdr(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
David Brownell6cdee102005-04-18 17:39:34 -07001027 /* tmp points to a struct rndis_packet_msg_type */
1028 __le32 *tmp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
David Brownell6cdee102005-04-18 17:39:34 -07001030 /* MessageType, MessageLength */
Harvey Harrison35c26c22009-02-14 22:56:56 -08001031 if (cpu_to_le32(REMOTE_NDIS_PACKET_MSG)
David Brownell6cdee102005-04-18 17:39:34 -07001032 != get_unaligned(tmp++))
1033 return -EINVAL;
1034 tmp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
David Brownell6cdee102005-04-18 17:39:34 -07001036 /* DataOffset, DataLength */
Harvey Harrisona5abdea2008-04-29 01:03:40 -07001037 if (!skb_pull(skb, get_unaligned_le32(tmp++) + 8))
David Brownell6cdee102005-04-18 17:39:34 -07001038 return -EOVERFLOW;
Harvey Harrisona5abdea2008-04-29 01:03:40 -07001039 skb_trim(skb, get_unaligned_le32(tmp++));
David Brownell6cdee102005-04-18 17:39:34 -07001040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return 0;
1042}
1043
1044#ifdef CONFIG_USB_GADGET_DEBUG_FILES
1045
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001046static int rndis_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001048 rndis_params *param = m->private;
David Brownell7e27f182006-06-13 09:54:40 -07001049
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001050 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 "Config Nr. %d\n"
1052 "used : %s\n"
1053 "state : %s\n"
1054 "medium : 0x%08X\n"
1055 "speed : %d\n"
1056 "cable : %s\n"
1057 "vendor ID : 0x%08X\n"
David Brownell7e27f182006-06-13 09:54:40 -07001058 "vendor : %s\n",
1059 param->confignr, (param->used) ? "y" : "n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 ({ char *s = "?";
1061 switch (param->state) {
1062 case RNDIS_UNINITIALIZED:
1063 s = "RNDIS_UNINITIALIZED"; break;
1064 case RNDIS_INITIALIZED:
1065 s = "RNDIS_INITIALIZED"; break;
1066 case RNDIS_DATA_INITIALIZED:
1067 s = "RNDIS_DATA_INITIALIZED"; break;
1068 }; s; }),
David Brownell7e27f182006-06-13 09:54:40 -07001069 param->medium,
1070 (param->media_state) ? 0 : param->speed*100,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 (param->media_state) ? "disconnected" : "connected",
David Brownell7e27f182006-06-13 09:54:40 -07001072 param->vendorID, param->vendorDescr);
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001073 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001076static ssize_t rndis_proc_write(struct file *file, const char __user *buffer,
1077 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001079 rndis_params *p = PDE(file->f_path.dentry->d_inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 u32 speed = 0;
1081 int i, fl_speed = 0;
David Brownell7e27f182006-06-13 09:54:40 -07001082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 for (i = 0; i < count; i++) {
1084 char c;
1085 if (get_user(c, buffer))
1086 return -EFAULT;
1087 switch (c) {
1088 case '0':
1089 case '1':
1090 case '2':
1091 case '3':
1092 case '4':
1093 case '5':
1094 case '6':
1095 case '7':
1096 case '8':
1097 case '9':
1098 fl_speed = 1;
1099 speed = speed*10 + c - '0';
1100 break;
1101 case 'C':
1102 case 'c':
1103 rndis_signal_connect (p->confignr);
1104 break;
1105 case 'D':
1106 case 'd':
1107 rndis_signal_disconnect(p->confignr);
1108 break;
David Brownell7e27f182006-06-13 09:54:40 -07001109 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (fl_speed) p->speed = speed;
David Brownell33376c12008-08-18 17:45:07 -07001111 else pr_debug("%c is not valid\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 break;
1113 }
David Brownell7e27f182006-06-13 09:54:40 -07001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 buffer++;
1116 }
David Brownell7e27f182006-06-13 09:54:40 -07001117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return count;
1119}
1120
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001121static int rndis_proc_open(struct inode *inode, struct file *file)
1122{
1123 return single_open(file, rndis_proc_show, PDE(inode)->data);
1124}
1125
1126static const struct file_operations rndis_proc_fops = {
1127 .owner = THIS_MODULE,
1128 .open = rndis_proc_open,
1129 .read = seq_read,
1130 .llseek = seq_lseek,
1131 .release = single_release,
1132 .write = rndis_proc_write,
1133};
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135#define NAME_TEMPLATE "driver/rndis-%03d"
1136
1137static struct proc_dir_entry *rndis_connect_state [RNDIS_MAX_CONFIGS];
1138
1139#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
1140
1141
David Brownell0e530b42008-04-05 14:17:14 -07001142int __init rndis_init (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
1144 u8 i;
1145
1146 for (i = 0; i < RNDIS_MAX_CONFIGS; i++) {
1147#ifdef CONFIG_USB_GADGET_DEBUG_FILES
1148 char name [20];
1149
1150 sprintf (name, NAME_TEMPLATE, i);
1151 if (!(rndis_connect_state [i]
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001152 = proc_create_data(name, 0660, NULL,
1153 &rndis_proc_fops,
1154 (void *)(rndis_per_dev_params + i))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 {
David Brownell33376c12008-08-18 17:45:07 -07001156 pr_debug("%s :remove entries", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 while (i) {
1158 sprintf (name, NAME_TEMPLATE, --i);
1159 remove_proc_entry (name, NULL);
1160 }
David Brownell33376c12008-08-18 17:45:07 -07001161 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return -EIO;
1163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164#endif
1165 rndis_per_dev_params [i].confignr = i;
1166 rndis_per_dev_params [i].used = 0;
1167 rndis_per_dev_params [i].state = RNDIS_UNINITIALIZED;
1168 rndis_per_dev_params [i].media_state
1169 = NDIS_MEDIA_STATE_DISCONNECTED;
1170 INIT_LIST_HEAD (&(rndis_per_dev_params [i].resp_queue));
1171 }
David Brownell7e27f182006-06-13 09:54:40 -07001172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return 0;
1174}
1175
1176void rndis_exit (void)
1177{
1178#ifdef CONFIG_USB_GADGET_DEBUG_FILES
1179 u8 i;
1180 char name [20];
David Brownell7e27f182006-06-13 09:54:40 -07001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 for (i = 0; i < RNDIS_MAX_CONFIGS; i++) {
1183 sprintf (name, NAME_TEMPLATE, i);
1184 remove_proc_entry (name, NULL);
1185 }
1186#endif
1187}
1188