blob: 972d5ddd1e18043f23281b3282681c6c9eb0ea62 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Alexey Dobriyane184d5f2008-05-14 16:25:13 -070032#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/netdevice.h>
34
35#include <asm/io.h>
36#include <asm/byteorder.h>
37#include <asm/system.h>
David Brownell6cdee102005-04-18 17:39:34 -070038#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40
David Brownell15b2d2b2008-06-19 18:19:16 -070041#undef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include "rndis.h"
44
45
46/* The driver for your USB chip needs to support ep0 OUT to work with
47 * RNDIS, plus all three CDC Ethernet endpoints (interrupt not optional).
48 *
49 * Windows hosts need an INF file like Documentation/usb/linux.inf
50 * and will be happier if you provide the host_addr module parameter.
51 */
52
53#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static int rndis_debug = 0;
David Brownell340600a2005-04-28 13:45:25 -070055module_param (rndis_debug, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056MODULE_PARM_DESC (rndis_debug, "enable debugging");
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define rndis_debug 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#endif
60
61#define RNDIS_MAX_CONFIGS 1
62
63
64static rndis_params rndis_per_dev_params [RNDIS_MAX_CONFIGS];
65
66/* Driver Version */
Harvey Harrison35c26c22009-02-14 22:56:56 -080067static const __le32 rndis_driver_version = cpu_to_le32 (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* Function Prototypes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static rndis_resp_t *rndis_add_response (int configNr, u32 length);
71
72
David Brownell340600a2005-04-28 13:45:25 -070073/* supported OIDs */
David Brownell7e27f182006-06-13 09:54:40 -070074static const u32 oid_supported_list [] =
David Brownell340600a2005-04-28 13:45:25 -070075{
76 /* the general stuff */
77 OID_GEN_SUPPORTED_LIST,
78 OID_GEN_HARDWARE_STATUS,
79 OID_GEN_MEDIA_SUPPORTED,
80 OID_GEN_MEDIA_IN_USE,
81 OID_GEN_MAXIMUM_FRAME_SIZE,
82 OID_GEN_LINK_SPEED,
83 OID_GEN_TRANSMIT_BLOCK_SIZE,
84 OID_GEN_RECEIVE_BLOCK_SIZE,
85 OID_GEN_VENDOR_ID,
86 OID_GEN_VENDOR_DESCRIPTION,
87 OID_GEN_VENDOR_DRIVER_VERSION,
88 OID_GEN_CURRENT_PACKET_FILTER,
89 OID_GEN_MAXIMUM_TOTAL_SIZE,
90 OID_GEN_MEDIA_CONNECT_STATUS,
91 OID_GEN_PHYSICAL_MEDIUM,
David Brownell7e27f182006-06-13 09:54:40 -070092
David Brownell340600a2005-04-28 13:45:25 -070093 /* the statistical stuff */
94 OID_GEN_XMIT_OK,
95 OID_GEN_RCV_OK,
96 OID_GEN_XMIT_ERROR,
97 OID_GEN_RCV_ERROR,
98 OID_GEN_RCV_NO_BUFFER,
99#ifdef RNDIS_OPTIONAL_STATS
100 OID_GEN_DIRECTED_BYTES_XMIT,
101 OID_GEN_DIRECTED_FRAMES_XMIT,
102 OID_GEN_MULTICAST_BYTES_XMIT,
103 OID_GEN_MULTICAST_FRAMES_XMIT,
104 OID_GEN_BROADCAST_BYTES_XMIT,
105 OID_GEN_BROADCAST_FRAMES_XMIT,
106 OID_GEN_DIRECTED_BYTES_RCV,
107 OID_GEN_DIRECTED_FRAMES_RCV,
108 OID_GEN_MULTICAST_BYTES_RCV,
109 OID_GEN_MULTICAST_FRAMES_RCV,
110 OID_GEN_BROADCAST_BYTES_RCV,
111 OID_GEN_BROADCAST_FRAMES_RCV,
112 OID_GEN_RCV_CRC_ERROR,
113 OID_GEN_TRANSMIT_QUEUE_LENGTH,
114#endif /* RNDIS_OPTIONAL_STATS */
115
David Brownell7e27f182006-06-13 09:54:40 -0700116 /* mandatory 802.3 */
David Brownell340600a2005-04-28 13:45:25 -0700117 /* the general stuff */
118 OID_802_3_PERMANENT_ADDRESS,
119 OID_802_3_CURRENT_ADDRESS,
120 OID_802_3_MULTICAST_LIST,
121 OID_802_3_MAC_OPTIONS,
122 OID_802_3_MAXIMUM_LIST_SIZE,
David Brownell7e27f182006-06-13 09:54:40 -0700123
David Brownell340600a2005-04-28 13:45:25 -0700124 /* the statistical stuff */
125 OID_802_3_RCV_ERROR_ALIGNMENT,
126 OID_802_3_XMIT_ONE_COLLISION,
127 OID_802_3_XMIT_MORE_COLLISIONS,
128#ifdef RNDIS_OPTIONAL_STATS
129 OID_802_3_XMIT_DEFERRED,
130 OID_802_3_XMIT_MAX_COLLISIONS,
131 OID_802_3_RCV_OVERRUN,
132 OID_802_3_XMIT_UNDERRUN,
133 OID_802_3_XMIT_HEARTBEAT_FAILURE,
134 OID_802_3_XMIT_TIMES_CRS_LOST,
135 OID_802_3_XMIT_LATE_COLLISIONS,
136#endif /* RNDIS_OPTIONAL_STATS */
137
138#ifdef RNDIS_PM
David Brownell15b2d2b2008-06-19 18:19:16 -0700139 /* PM and wakeup are "mandatory" for USB, but the RNDIS specs
140 * don't say what they mean ... and the NDIS specs are often
141 * confusing and/or ambiguous in this context. (That is, more
142 * so than their specs for the other OIDs.)
143 *
144 * FIXME someone who knows what these should do, please
145 * implement them!
146 */
David Brownell340600a2005-04-28 13:45:25 -0700147
148 /* power management */
149 OID_PNP_CAPABILITIES,
150 OID_PNP_QUERY_POWER,
151 OID_PNP_SET_POWER,
152
153#ifdef RNDIS_WAKEUP
154 /* wake up host */
155 OID_PNP_ENABLE_WAKE_UP,
156 OID_PNP_ADD_WAKE_UP_PATTERN,
157 OID_PNP_REMOVE_WAKE_UP_PATTERN,
158#endif /* RNDIS_WAKEUP */
159#endif /* RNDIS_PM */
160};
161
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/* NDIS Functions */
David Brownell340600a2005-04-28 13:45:25 -0700164static int
165gen_ndis_query_resp (int configNr, u32 OID, u8 *buf, unsigned buf_len,
166 rndis_resp_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
David Brownell7e27f182006-06-13 09:54:40 -0700168 int retval = -ENOTSUPP;
169 u32 length = 4; /* usually */
David Brownell340600a2005-04-28 13:45:25 -0700170 __le32 *outbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 int i, count;
172 rndis_query_cmplt_type *resp;
David Brownell15b2d2b2008-06-19 18:19:16 -0700173 struct net_device *net;
Eric Dumazet28172732010-07-07 14:58:56 -0700174 struct rtnl_link_stats64 temp;
David S. Millerfdb93f8a2010-06-15 21:50:14 -0700175 const struct rtnl_link_stats64 *stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 if (!r) return -ENOMEM;
178 resp = (rndis_query_cmplt_type *) r->buf;
179
180 if (!resp) return -ENOMEM;
David Brownell340600a2005-04-28 13:45:25 -0700181
182 if (buf_len && rndis_debug > 1) {
David Brownell33376c12008-08-18 17:45:07 -0700183 pr_debug("query OID %08x value, len %d:\n", OID, buf_len);
David Brownell340600a2005-04-28 13:45:25 -0700184 for (i = 0; i < buf_len; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700185 pr_debug("%03d: %08x %08x %08x %08x\n", i,
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700186 get_unaligned_le32(&buf[i]),
187 get_unaligned_le32(&buf[i + 4]),
188 get_unaligned_le32(&buf[i + 8]),
189 get_unaligned_le32(&buf[i + 12]));
David Brownell340600a2005-04-28 13:45:25 -0700190 }
191 }
192
193 /* response goes here, right after the header */
194 outbuf = (__le32 *) &resp[1];
Harvey Harrison35c26c22009-02-14 22:56:56 -0800195 resp->InformationBufferOffset = cpu_to_le32 (16);
David Brownell340600a2005-04-28 13:45:25 -0700196
David Brownell15b2d2b2008-06-19 18:19:16 -0700197 net = rndis_per_dev_params[configNr].dev;
Eric Dumazet28172732010-07-07 14:58:56 -0700198 stats = dev_get_stats(net, &temp);
David Brownell15b2d2b2008-06-19 18:19:16 -0700199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 switch (OID) {
201
202 /* general oids (table 4-1) */
203
204 /* mandatory */
205 case OID_GEN_SUPPORTED_LIST:
David Brownell33376c12008-08-18 17:45:07 -0700206 pr_debug("%s: OID_GEN_SUPPORTED_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 length = sizeof (oid_supported_list);
208 count = length / sizeof (u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 for (i = 0; i < count; i++)
David Brownell340600a2005-04-28 13:45:25 -0700210 outbuf[i] = cpu_to_le32 (oid_supported_list[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 retval = 0;
212 break;
David Brownell7e27f182006-06-13 09:54:40 -0700213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /* mandatory */
215 case OID_GEN_HARDWARE_STATUS:
David Brownell33376c12008-08-18 17:45:07 -0700216 pr_debug("%s: OID_GEN_HARDWARE_STATUS\n", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700217 /* Bogus question!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 * Hardware must be ready to receive high level protocols.
David Brownell7e27f182006-06-13 09:54:40 -0700219 * BTW:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * reddite ergo quae sunt Caesaris Caesari
221 * et quae sunt Dei Deo!
222 */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800223 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 retval = 0;
225 break;
David Brownell7e27f182006-06-13 09:54:40 -0700226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* mandatory */
228 case OID_GEN_MEDIA_SUPPORTED:
David Brownell33376c12008-08-18 17:45:07 -0700229 pr_debug("%s: OID_GEN_MEDIA_SUPPORTED\n", __func__);
David Brownell340600a2005-04-28 13:45:25 -0700230 *outbuf = cpu_to_le32 (rndis_per_dev_params [configNr].medium);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 retval = 0;
232 break;
David Brownell7e27f182006-06-13 09:54:40 -0700233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /* mandatory */
235 case OID_GEN_MEDIA_IN_USE:
David Brownell33376c12008-08-18 17:45:07 -0700236 pr_debug("%s: OID_GEN_MEDIA_IN_USE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /* one medium, one transport... (maybe you do it better) */
David Brownell340600a2005-04-28 13:45:25 -0700238 *outbuf = cpu_to_le32 (rndis_per_dev_params [configNr].medium);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 retval = 0;
240 break;
David Brownell7e27f182006-06-13 09:54:40 -0700241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /* mandatory */
243 case OID_GEN_MAXIMUM_FRAME_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700244 pr_debug("%s: OID_GEN_MAXIMUM_FRAME_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (rndis_per_dev_params [configNr].dev) {
David Brownell340600a2005-04-28 13:45:25 -0700246 *outbuf = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 rndis_per_dev_params [configNr].dev->mtu);
248 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250 break;
David Brownell7e27f182006-06-13 09:54:40 -0700251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* mandatory */
253 case OID_GEN_LINK_SPEED:
David Brownell340600a2005-04-28 13:45:25 -0700254 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700255 pr_debug("%s: OID_GEN_LINK_SPEED\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (rndis_per_dev_params [configNr].media_state
David Brownell340600a2005-04-28 13:45:25 -0700257 == NDIS_MEDIA_STATE_DISCONNECTED)
Harvey Harrison35c26c22009-02-14 22:56:56 -0800258 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 else
David Brownell340600a2005-04-28 13:45:25 -0700260 *outbuf = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 rndis_per_dev_params [configNr].speed);
262 retval = 0;
263 break;
264
265 /* mandatory */
266 case OID_GEN_TRANSMIT_BLOCK_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700267 pr_debug("%s: OID_GEN_TRANSMIT_BLOCK_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (rndis_per_dev_params [configNr].dev) {
David Brownell340600a2005-04-28 13:45:25 -0700269 *outbuf = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 rndis_per_dev_params [configNr].dev->mtu);
271 retval = 0;
272 }
273 break;
David Brownell7e27f182006-06-13 09:54:40 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* mandatory */
276 case OID_GEN_RECEIVE_BLOCK_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700277 pr_debug("%s: OID_GEN_RECEIVE_BLOCK_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (rndis_per_dev_params [configNr].dev) {
David Brownell340600a2005-04-28 13:45:25 -0700279 *outbuf = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 rndis_per_dev_params [configNr].dev->mtu);
281 retval = 0;
282 }
283 break;
David Brownell7e27f182006-06-13 09:54:40 -0700284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /* mandatory */
286 case OID_GEN_VENDOR_ID:
David Brownell33376c12008-08-18 17:45:07 -0700287 pr_debug("%s: OID_GEN_VENDOR_ID\n", __func__);
David Brownell340600a2005-04-28 13:45:25 -0700288 *outbuf = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 rndis_per_dev_params [configNr].vendorID);
290 retval = 0;
291 break;
David Brownell7e27f182006-06-13 09:54:40 -0700292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* mandatory */
294 case OID_GEN_VENDOR_DESCRIPTION:
David Brownell33376c12008-08-18 17:45:07 -0700295 pr_debug("%s: OID_GEN_VENDOR_DESCRIPTION\n", __func__);
Maxim Osipov037d3652010-08-21 14:54:06 +0400296 if ( rndis_per_dev_params [configNr].vendorDescr ) {
297 length = strlen (rndis_per_dev_params [configNr].vendorDescr);
298 memcpy (outbuf,
299 rndis_per_dev_params [configNr].vendorDescr, length);
300 } else {
301 outbuf[0] = 0;
302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 retval = 0;
304 break;
305
306 case OID_GEN_VENDOR_DRIVER_VERSION:
David Brownell33376c12008-08-18 17:45:07 -0700307 pr_debug("%s: OID_GEN_VENDOR_DRIVER_VERSION\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* Created as LE */
David Brownell340600a2005-04-28 13:45:25 -0700309 *outbuf = rndis_driver_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 retval = 0;
311 break;
312
313 /* mandatory */
314 case OID_GEN_CURRENT_PACKET_FILTER:
David Brownell33376c12008-08-18 17:45:07 -0700315 pr_debug("%s: OID_GEN_CURRENT_PACKET_FILTER\n", __func__);
David Brownell340600a2005-04-28 13:45:25 -0700316 *outbuf = cpu_to_le32 (*rndis_per_dev_params[configNr].filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 retval = 0;
318 break;
319
320 /* mandatory */
321 case OID_GEN_MAXIMUM_TOTAL_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700322 pr_debug("%s: OID_GEN_MAXIMUM_TOTAL_SIZE\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800323 *outbuf = cpu_to_le32(RNDIS_MAX_TOTAL_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 retval = 0;
325 break;
326
327 /* mandatory */
328 case OID_GEN_MEDIA_CONNECT_STATUS:
David Brownell340600a2005-04-28 13:45:25 -0700329 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700330 pr_debug("%s: OID_GEN_MEDIA_CONNECT_STATUS\n", __func__);
David Brownell340600a2005-04-28 13:45:25 -0700331 *outbuf = cpu_to_le32 (rndis_per_dev_params [configNr]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 .media_state);
333 retval = 0;
334 break;
335
336 case OID_GEN_PHYSICAL_MEDIUM:
David Brownell33376c12008-08-18 17:45:07 -0700337 pr_debug("%s: OID_GEN_PHYSICAL_MEDIUM\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800338 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 retval = 0;
340 break;
341
342 /* The RNDIS specification is incomplete/wrong. Some versions
343 * of MS-Windows expect OIDs that aren't specified there. Other
344 * versions emit undefined RNDIS messages. DOCUMENT ALL THESE!
345 */
346 case OID_GEN_MAC_OPTIONS: /* from WinME */
David Brownell33376c12008-08-18 17:45:07 -0700347 pr_debug("%s: OID_GEN_MAC_OPTIONS\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800348 *outbuf = cpu_to_le32(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 NDIS_MAC_OPTION_RECEIVE_SERIALIZED
350 | NDIS_MAC_OPTION_FULL_DUPLEX);
351 retval = 0;
352 break;
353
354 /* statistics OIDs (table 4-2) */
355
356 /* mandatory */
357 case OID_GEN_XMIT_OK:
David Brownell340600a2005-04-28 13:45:25 -0700358 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700359 pr_debug("%s: OID_GEN_XMIT_OK\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700360 if (stats) {
361 *outbuf = cpu_to_le32(stats->tx_packets
362 - stats->tx_errors - stats->tx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365 break;
366
367 /* mandatory */
368 case OID_GEN_RCV_OK:
David Brownell340600a2005-04-28 13:45:25 -0700369 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700370 pr_debug("%s: OID_GEN_RCV_OK\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700371 if (stats) {
372 *outbuf = cpu_to_le32(stats->rx_packets
373 - stats->rx_errors - stats->rx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376 break;
David Brownell7e27f182006-06-13 09:54:40 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* mandatory */
379 case OID_GEN_XMIT_ERROR:
David Brownell340600a2005-04-28 13:45:25 -0700380 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700381 pr_debug("%s: OID_GEN_XMIT_ERROR\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700382 if (stats) {
383 *outbuf = cpu_to_le32(stats->tx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
386 break;
David Brownell7e27f182006-06-13 09:54:40 -0700387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /* mandatory */
389 case OID_GEN_RCV_ERROR:
David Brownell340600a2005-04-28 13:45:25 -0700390 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700391 pr_debug("%s: OID_GEN_RCV_ERROR\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700392 if (stats) {
393 *outbuf = cpu_to_le32(stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396 break;
David Brownell7e27f182006-06-13 09:54:40 -0700397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 /* mandatory */
399 case OID_GEN_RCV_NO_BUFFER:
David Brownell33376c12008-08-18 17:45:07 -0700400 pr_debug("%s: OID_GEN_RCV_NO_BUFFER\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700401 if (stats) {
402 *outbuf = cpu_to_le32(stats->rx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405 break;
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* ieee802.3 OIDs (table 4-3) */
408
409 /* mandatory */
410 case OID_802_3_PERMANENT_ADDRESS:
David Brownell33376c12008-08-18 17:45:07 -0700411 pr_debug("%s: OID_802_3_PERMANENT_ADDRESS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (rndis_per_dev_params [configNr].dev) {
413 length = ETH_ALEN;
David Brownell340600a2005-04-28 13:45:25 -0700414 memcpy (outbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 rndis_per_dev_params [configNr].host_mac,
416 length);
417 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419 break;
David Brownell7e27f182006-06-13 09:54:40 -0700420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 /* mandatory */
422 case OID_802_3_CURRENT_ADDRESS:
David Brownell33376c12008-08-18 17:45:07 -0700423 pr_debug("%s: OID_802_3_CURRENT_ADDRESS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (rndis_per_dev_params [configNr].dev) {
425 length = ETH_ALEN;
David Brownell340600a2005-04-28 13:45:25 -0700426 memcpy (outbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 rndis_per_dev_params [configNr].host_mac,
428 length);
429 retval = 0;
430 }
431 break;
David Brownell7e27f182006-06-13 09:54:40 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 /* mandatory */
434 case OID_802_3_MULTICAST_LIST:
David Brownell33376c12008-08-18 17:45:07 -0700435 pr_debug("%s: OID_802_3_MULTICAST_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /* Multicast base address only */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800437 *outbuf = cpu_to_le32 (0xE0000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 retval = 0;
439 break;
David Brownell7e27f182006-06-13 09:54:40 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /* mandatory */
442 case OID_802_3_MAXIMUM_LIST_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700443 pr_debug("%s: OID_802_3_MAXIMUM_LIST_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 /* Multicast base address only */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800445 *outbuf = cpu_to_le32 (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 retval = 0;
447 break;
David Brownell7e27f182006-06-13 09:54:40 -0700448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 case OID_802_3_MAC_OPTIONS:
David Brownell33376c12008-08-18 17:45:07 -0700450 pr_debug("%s: OID_802_3_MAC_OPTIONS\n", __func__);
Qiuping Chen6bc21462009-07-01 03:49:29 -0700451 *outbuf = cpu_to_le32(0);
452 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
454
455 /* ieee802.3 statistics OIDs (table 4-4) */
456
457 /* mandatory */
458 case OID_802_3_RCV_ERROR_ALIGNMENT:
David Brownell33376c12008-08-18 17:45:07 -0700459 pr_debug("%s: OID_802_3_RCV_ERROR_ALIGNMENT\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700460 if (stats) {
461 *outbuf = cpu_to_le32(stats->rx_frame_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 retval = 0;
463 }
464 break;
David Brownell7e27f182006-06-13 09:54:40 -0700465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /* mandatory */
467 case OID_802_3_XMIT_ONE_COLLISION:
David Brownell33376c12008-08-18 17:45:07 -0700468 pr_debug("%s: OID_802_3_XMIT_ONE_COLLISION\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800469 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 retval = 0;
471 break;
David Brownell7e27f182006-06-13 09:54:40 -0700472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /* mandatory */
474 case OID_802_3_XMIT_MORE_COLLISIONS:
David Brownell33376c12008-08-18 17:45:07 -0700475 pr_debug("%s: OID_802_3_XMIT_MORE_COLLISIONS\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800476 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 retval = 0;
478 break;
David Brownell7e27f182006-06-13 09:54:40 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 default:
David Brownell00274922007-11-19 12:58:36 -0800481 pr_warning("%s: query unknown OID 0x%08X\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800482 __func__, OID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
David Brownell340600a2005-04-28 13:45:25 -0700484 if (retval < 0)
485 length = 0;
David Brownell7e27f182006-06-13 09:54:40 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 resp->InformationBufferLength = cpu_to_le32 (length);
David Brownell340600a2005-04-28 13:45:25 -0700488 r->length = length + sizeof *resp;
489 resp->MessageLength = cpu_to_le32 (r->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return retval;
491}
492
David Brownell7e27f182006-06-13 09:54:40 -0700493static int gen_ndis_set_resp (u8 configNr, u32 OID, u8 *buf, u32 buf_len,
494 rndis_resp_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 rndis_set_cmplt_type *resp;
David Brownell7e27f182006-06-13 09:54:40 -0700497 int i, retval = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 struct rndis_params *params;
499
500 if (!r)
501 return -ENOMEM;
502 resp = (rndis_set_cmplt_type *) r->buf;
503 if (!resp)
504 return -ENOMEM;
505
David Brownell340600a2005-04-28 13:45:25 -0700506 if (buf_len && rndis_debug > 1) {
David Brownell33376c12008-08-18 17:45:07 -0700507 pr_debug("set OID %08x value, len %d:\n", OID, buf_len);
David Brownell340600a2005-04-28 13:45:25 -0700508 for (i = 0; i < buf_len; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700509 pr_debug("%03d: %08x %08x %08x %08x\n", i,
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700510 get_unaligned_le32(&buf[i]),
511 get_unaligned_le32(&buf[i + 4]),
512 get_unaligned_le32(&buf[i + 8]),
513 get_unaligned_le32(&buf[i + 12]));
David Brownell340600a2005-04-28 13:45:25 -0700514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516
David Brownell340600a2005-04-28 13:45:25 -0700517 params = &rndis_per_dev_params [configNr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 switch (OID) {
519 case OID_GEN_CURRENT_PACKET_FILTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
David Brownell340600a2005-04-28 13:45:25 -0700521 /* these NDIS_PACKET_TYPE_* bitflags are shared with
522 * cdc_filter; it's not RNDIS-specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 * NDIS_PACKET_TYPE_x == USB_CDC_PACKET_TYPE_x for x in:
524 * PROMISCUOUS, DIRECTED,
525 * MULTICAST, ALL_MULTICAST, BROADCAST
526 */
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700527 *params->filter = (u16)get_unaligned_le32(buf);
David Brownell33376c12008-08-18 17:45:07 -0700528 pr_debug("%s: OID_GEN_CURRENT_PACKET_FILTER %08x\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800529 __func__, *params->filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 /* this call has a significant side effect: it's
532 * what makes the packet flow start and stop, like
533 * activating the CDC Ethernet altsetting.
534 */
David Brownell340600a2005-04-28 13:45:25 -0700535 retval = 0;
536 if (*params->filter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 params->state = RNDIS_DATA_INITIALIZED;
538 netif_carrier_on(params->dev);
539 if (netif_running(params->dev))
540 netif_wake_queue (params->dev);
541 } else {
542 params->state = RNDIS_INITIALIZED;
543 netif_carrier_off (params->dev);
544 netif_stop_queue (params->dev);
545 }
546 break;
David Brownell7e27f182006-06-13 09:54:40 -0700547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 case OID_802_3_MULTICAST_LIST:
David Brownell7e27f182006-06-13 09:54:40 -0700549 /* I think we can ignore this */
David Brownell33376c12008-08-18 17:45:07 -0700550 pr_debug("%s: OID_802_3_MULTICAST_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 retval = 0;
552 break;
David Brownell340600a2005-04-28 13:45:25 -0700553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 default:
David Brownell00274922007-11-19 12:58:36 -0800555 pr_warning("%s: set unknown OID 0x%08X, size %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800556 __func__, OID, buf_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
David Brownell7e27f182006-06-13 09:54:40 -0700558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return retval;
560}
561
David Brownell7e27f182006-06-13 09:54:40 -0700562/*
563 * Response Functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 */
565
566static int rndis_init_response (int configNr, rndis_init_msg_type *buf)
567{
David Brownell7e27f182006-06-13 09:54:40 -0700568 rndis_init_cmplt_type *resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700570 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700571
David Brownell15b2d2b2008-06-19 18:19:16 -0700572 if (!params->dev)
573 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 r = rndis_add_response (configNr, sizeof (rndis_init_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700576 if (!r)
577 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 resp = (rndis_init_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700579
Harvey Harrison35c26c22009-02-14 22:56:56 -0800580 resp->MessageType = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 REMOTE_NDIS_INITIALIZE_CMPLT);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800582 resp->MessageLength = cpu_to_le32 (52);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800584 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
585 resp->MajorVersion = cpu_to_le32 (RNDIS_MAJOR_VERSION);
586 resp->MinorVersion = cpu_to_le32 (RNDIS_MINOR_VERSION);
587 resp->DeviceFlags = cpu_to_le32 (RNDIS_DF_CONNECTIONLESS);
588 resp->Medium = cpu_to_le32 (RNDIS_MEDIUM_802_3);
589 resp->MaxPacketsPerTransfer = cpu_to_le32 (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 resp->MaxTransferSize = cpu_to_le32 (
David Brownell15b2d2b2008-06-19 18:19:16 -0700591 params->dev->mtu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 + sizeof (struct ethhdr)
593 + sizeof (struct rndis_packet_msg_type)
594 + 22);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800595 resp->PacketAlignmentFactor = cpu_to_le32 (0);
596 resp->AFListOffset = cpu_to_le32 (0);
597 resp->AFListSize = cpu_to_le32 (0);
David Brownell7e27f182006-06-13 09:54:40 -0700598
David Brownell15b2d2b2008-06-19 18:19:16 -0700599 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return 0;
601}
602
603static int rndis_query_response (int configNr, rndis_query_msg_type *buf)
604{
605 rndis_query_cmplt_type *resp;
606 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700607 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700608
David Brownell33376c12008-08-18 17:45:07 -0700609 /* pr_debug("%s: OID = %08X\n", __func__, cpu_to_le32(buf->OID)); */
David Brownell15b2d2b2008-06-19 18:19:16 -0700610 if (!params->dev)
611 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700612
Shaun Tancheff87637162006-02-22 19:47:19 -0800613 /*
614 * we need more memory:
615 * gen_ndis_query_resp expects enough space for
616 * rndis_query_cmplt_type followed by data.
617 * oid_supported_list is the largest data reply
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 */
Shaun Tancheff87637162006-02-22 19:47:19 -0800619 r = rndis_add_response (configNr,
620 sizeof (oid_supported_list) + sizeof(rndis_query_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700621 if (!r)
622 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 resp = (rndis_query_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700624
Harvey Harrison35c26c22009-02-14 22:56:56 -0800625 resp->MessageType = cpu_to_le32 (REMOTE_NDIS_QUERY_CMPLT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
David Brownell7e27f182006-06-13 09:54:40 -0700627
David Brownell340600a2005-04-28 13:45:25 -0700628 if (gen_ndis_query_resp (configNr, le32_to_cpu (buf->OID),
629 le32_to_cpu(buf->InformationBufferOffset)
630 + 8 + (u8 *) buf,
631 le32_to_cpu(buf->InformationBufferLength),
632 r)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 /* OID not supported */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800634 resp->Status = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 RNDIS_STATUS_NOT_SUPPORTED);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800636 resp->MessageLength = cpu_to_le32 (sizeof *resp);
637 resp->InformationBufferLength = cpu_to_le32 (0);
638 resp->InformationBufferOffset = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 } else
Harvey Harrison35c26c22009-02-14 22:56:56 -0800640 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700641
David Brownell15b2d2b2008-06-19 18:19:16 -0700642 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return 0;
644}
645
646static int rndis_set_response (int configNr, rndis_set_msg_type *buf)
647{
648 u32 BufLength, BufOffset;
649 rndis_set_cmplt_type *resp;
650 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700651 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 r = rndis_add_response (configNr, sizeof (rndis_set_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700654 if (!r)
655 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 resp = (rndis_set_cmplt_type *) r->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 BufLength = le32_to_cpu (buf->InformationBufferLength);
659 BufOffset = le32_to_cpu (buf->InformationBufferOffset);
660
David Brownell15b2d2b2008-06-19 18:19:16 -0700661#ifdef VERBOSE_DEBUG
David Brownell33376c12008-08-18 17:45:07 -0700662 pr_debug("%s: Length: %d\n", __func__, BufLength);
663 pr_debug("%s: Offset: %d\n", __func__, BufOffset);
664 pr_debug("%s: InfoBuffer: ", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 for (i = 0; i < BufLength; i++) {
David Brownell33376c12008-08-18 17:45:07 -0700667 pr_debug("%02x ", *(((u8 *) buf) + i + 8 + BufOffset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
David Brownell7e27f182006-06-13 09:54:40 -0700669
David Brownell33376c12008-08-18 17:45:07 -0700670 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671#endif
David Brownell7e27f182006-06-13 09:54:40 -0700672
Harvey Harrison35c26c22009-02-14 22:56:56 -0800673 resp->MessageType = cpu_to_le32 (REMOTE_NDIS_SET_CMPLT);
674 resp->MessageLength = cpu_to_le32 (16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
David Brownell7e27f182006-06-13 09:54:40 -0700676 if (gen_ndis_set_resp (configNr, le32_to_cpu (buf->OID),
677 ((u8 *) buf) + 8 + BufOffset, BufLength, r))
Harvey Harrison35c26c22009-02-14 22:56:56 -0800678 resp->Status = cpu_to_le32 (RNDIS_STATUS_NOT_SUPPORTED);
David Brownell7e27f182006-06-13 09:54:40 -0700679 else
Harvey Harrison35c26c22009-02-14 22:56:56 -0800680 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700681
David Brownell15b2d2b2008-06-19 18:19:16 -0700682 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return 0;
684}
685
686static int rndis_reset_response (int configNr, rndis_reset_msg_type *buf)
687{
688 rndis_reset_cmplt_type *resp;
689 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700690 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 r = rndis_add_response (configNr, sizeof (rndis_reset_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700693 if (!r)
694 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 resp = (rndis_reset_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700696
Harvey Harrison35c26c22009-02-14 22:56:56 -0800697 resp->MessageType = cpu_to_le32 (REMOTE_NDIS_RESET_CMPLT);
698 resp->MessageLength = cpu_to_le32 (16);
699 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /* resent information */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800701 resp->AddressingReset = cpu_to_le32 (1);
David Brownell7e27f182006-06-13 09:54:40 -0700702
David Brownell15b2d2b2008-06-19 18:19:16 -0700703 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return 0;
705}
706
707static int rndis_keepalive_response (int configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700708 rndis_keepalive_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 rndis_keepalive_cmplt_type *resp;
711 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700712 struct rndis_params *params = rndis_per_dev_params + configNr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 /* host "should" check only in RNDIS_DATA_INITIALIZED state */
715
716 r = rndis_add_response (configNr, sizeof (rndis_keepalive_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700717 if (!r)
718 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 resp = (rndis_keepalive_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700720
Harvey Harrison35c26c22009-02-14 22:56:56 -0800721 resp->MessageType = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 REMOTE_NDIS_KEEPALIVE_CMPLT);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800723 resp->MessageLength = cpu_to_le32 (16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800725 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700726
David Brownell15b2d2b2008-06-19 18:19:16 -0700727 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return 0;
729}
730
731
David Brownell7e27f182006-06-13 09:54:40 -0700732/*
733 * Device to Host Comunication
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 */
735static int rndis_indicate_status_msg (int configNr, u32 status)
736{
David Brownell7e27f182006-06-13 09:54:40 -0700737 rndis_indicate_status_msg_type *resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700739 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700740
David Brownell15b2d2b2008-06-19 18:19:16 -0700741 if (params->state == RNDIS_UNINITIALIZED)
David Brownell7e27f182006-06-13 09:54:40 -0700742 return -ENOTSUPP;
743
744 r = rndis_add_response (configNr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 sizeof (rndis_indicate_status_msg_type));
David Brownell340600a2005-04-28 13:45:25 -0700746 if (!r)
747 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 resp = (rndis_indicate_status_msg_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700749
Harvey Harrison35c26c22009-02-14 22:56:56 -0800750 resp->MessageType = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 REMOTE_NDIS_INDICATE_STATUS_MSG);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800752 resp->MessageLength = cpu_to_le32 (20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 resp->Status = cpu_to_le32 (status);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800754 resp->StatusBufferLength = cpu_to_le32 (0);
755 resp->StatusBufferOffset = cpu_to_le32 (0);
David Brownell7e27f182006-06-13 09:54:40 -0700756
David Brownell15b2d2b2008-06-19 18:19:16 -0700757 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return 0;
759}
760
761int rndis_signal_connect (int configNr)
762{
763 rndis_per_dev_params [configNr].media_state
764 = NDIS_MEDIA_STATE_CONNECTED;
David Brownell7e27f182006-06-13 09:54:40 -0700765 return rndis_indicate_status_msg (configNr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 RNDIS_STATUS_MEDIA_CONNECT);
767}
768
769int rndis_signal_disconnect (int configNr)
770{
771 rndis_per_dev_params [configNr].media_state
772 = NDIS_MEDIA_STATE_DISCONNECTED;
773 return rndis_indicate_status_msg (configNr,
774 RNDIS_STATUS_MEDIA_DISCONNECT);
775}
776
David Brownell340600a2005-04-28 13:45:25 -0700777void rndis_uninit (int configNr)
778{
David Brownell486e2df2005-05-24 17:51:52 -0700779 u8 *buf;
780 u32 length;
781
David Brownell340600a2005-04-28 13:45:25 -0700782 if (configNr >= RNDIS_MAX_CONFIGS)
783 return;
David Brownell340600a2005-04-28 13:45:25 -0700784 rndis_per_dev_params [configNr].state = RNDIS_UNINITIALIZED;
David Brownell486e2df2005-05-24 17:51:52 -0700785
786 /* drain the response queue */
787 while ((buf = rndis_get_next_response(configNr, &length)))
788 rndis_free_response(configNr, buf);
David Brownell340600a2005-04-28 13:45:25 -0700789}
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791void rndis_set_host_mac (int configNr, const u8 *addr)
792{
793 rndis_per_dev_params [configNr].host_mac = addr;
794}
795
David Brownell7e27f182006-06-13 09:54:40 -0700796/*
797 * Message Parser
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 */
799int rndis_msg_parser (u8 configNr, u8 *buf)
800{
801 u32 MsgType, MsgLength;
802 __le32 *tmp;
803 struct rndis_params *params;
David Brownell7e27f182006-06-13 09:54:40 -0700804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (!buf)
806 return -ENOMEM;
David Brownell7e27f182006-06-13 09:54:40 -0700807
808 tmp = (__le32 *) buf;
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700809 MsgType = get_unaligned_le32(tmp++);
810 MsgLength = get_unaligned_le32(tmp++);
David Brownell7e27f182006-06-13 09:54:40 -0700811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (configNr >= RNDIS_MAX_CONFIGS)
813 return -ENOTSUPP;
814 params = &rndis_per_dev_params [configNr];
David Brownell7e27f182006-06-13 09:54:40 -0700815
David Brownell340600a2005-04-28 13:45:25 -0700816 /* NOTE: RNDIS is *EXTREMELY* chatty ... Windows constantly polls for
817 * rx/tx statistics and link status, in addition to KEEPALIVE traffic
818 * and normal HC level polling to see if there's any IN traffic.
819 */
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /* For USB: responses may take up to 10 seconds */
David Brownell340600a2005-04-28 13:45:25 -0700822 switch (MsgType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 case REMOTE_NDIS_INITIALIZE_MSG:
David Brownell33376c12008-08-18 17:45:07 -0700824 pr_debug("%s: REMOTE_NDIS_INITIALIZE_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800825 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 params->state = RNDIS_INITIALIZED;
827 return rndis_init_response (configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700828 (rndis_init_msg_type *) buf);
829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 case REMOTE_NDIS_HALT_MSG:
David Brownell33376c12008-08-18 17:45:07 -0700831 pr_debug("%s: REMOTE_NDIS_HALT_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800832 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 params->state = RNDIS_UNINITIALIZED;
834 if (params->dev) {
835 netif_carrier_off (params->dev);
836 netif_stop_queue (params->dev);
837 }
838 return 0;
David Brownell7e27f182006-06-13 09:54:40 -0700839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 case REMOTE_NDIS_QUERY_MSG:
David Brownell7e27f182006-06-13 09:54:40 -0700841 return rndis_query_response (configNr,
842 (rndis_query_msg_type *) buf);
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 case REMOTE_NDIS_SET_MSG:
David Brownell7e27f182006-06-13 09:54:40 -0700845 return rndis_set_response (configNr,
846 (rndis_set_msg_type *) buf);
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 case REMOTE_NDIS_RESET_MSG:
David Brownell33376c12008-08-18 17:45:07 -0700849 pr_debug("%s: REMOTE_NDIS_RESET_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800850 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return rndis_reset_response (configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700852 (rndis_reset_msg_type *) buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 case REMOTE_NDIS_KEEPALIVE_MSG:
855 /* For USB: host does this every 5 seconds */
David Brownell340600a2005-04-28 13:45:25 -0700856 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700857 pr_debug("%s: REMOTE_NDIS_KEEPALIVE_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800858 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return rndis_keepalive_response (configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700860 (rndis_keepalive_msg_type *)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 buf);
David Brownell7e27f182006-06-13 09:54:40 -0700862
863 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /* At least Windows XP emits some undefined RNDIS messages.
865 * In one case those messages seemed to relate to the host
866 * suspending itself.
867 */
David Brownell00274922007-11-19 12:58:36 -0800868 pr_warning("%s: unknown RNDIS message 0x%08X len %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800869 __func__ , MsgType, MsgLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 {
871 unsigned i;
872 for (i = 0; i < MsgLength; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700873 pr_debug("%03d: "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 " %02x %02x %02x %02x"
875 " %02x %02x %02x %02x"
876 " %02x %02x %02x %02x"
877 " %02x %02x %02x %02x"
878 "\n",
879 i,
880 buf[i], buf [i+1],
881 buf[i+2], buf[i+3],
882 buf[i+4], buf [i+5],
883 buf[i+6], buf[i+7],
884 buf[i+8], buf [i+9],
885 buf[i+10], buf[i+11],
886 buf[i+12], buf [i+13],
887 buf[i+14], buf[i+15]);
888 }
889 }
890 break;
891 }
David Brownell7e27f182006-06-13 09:54:40 -0700892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return -ENOTSUPP;
894}
895
David Brownell15b2d2b2008-06-19 18:19:16 -0700896int rndis_register(void (*resp_avail)(void *v), void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 u8 i;
David Brownell7e27f182006-06-13 09:54:40 -0700899
David Brownell15b2d2b2008-06-19 18:19:16 -0700900 if (!resp_avail)
901 return -EINVAL;
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 for (i = 0; i < RNDIS_MAX_CONFIGS; i++) {
904 if (!rndis_per_dev_params [i].used) {
905 rndis_per_dev_params [i].used = 1;
David Brownell15b2d2b2008-06-19 18:19:16 -0700906 rndis_per_dev_params [i].resp_avail = resp_avail;
907 rndis_per_dev_params [i].v = v;
David Brownell33376c12008-08-18 17:45:07 -0700908 pr_debug("%s: configNr = %d\n", __func__, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return i;
910 }
911 }
David Brownell33376c12008-08-18 17:45:07 -0700912 pr_debug("failed\n");
David Brownell7e27f182006-06-13 09:54:40 -0700913
David Brownell15b2d2b2008-06-19 18:19:16 -0700914 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
917void rndis_deregister (int configNr)
918{
David Brownell33376c12008-08-18 17:45:07 -0700919 pr_debug("%s: \n", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (configNr >= RNDIS_MAX_CONFIGS) return;
922 rndis_per_dev_params [configNr].used = 0;
David Brownell7e27f182006-06-13 09:54:40 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return;
925}
926
David Brownell15b2d2b2008-06-19 18:19:16 -0700927int rndis_set_param_dev(u8 configNr, struct net_device *dev, u16 *cdc_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
David Brownell33376c12008-08-18 17:45:07 -0700929 pr_debug("%s:\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700930 if (!dev)
931 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (configNr >= RNDIS_MAX_CONFIGS) return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 rndis_per_dev_params [configNr].dev = dev;
David Brownell340600a2005-04-28 13:45:25 -0700935 rndis_per_dev_params [configNr].filter = cdc_filter;
David Brownell7e27f182006-06-13 09:54:40 -0700936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return 0;
938}
939
940int rndis_set_param_vendor (u8 configNr, u32 vendorID, const char *vendorDescr)
941{
David Brownell33376c12008-08-18 17:45:07 -0700942 pr_debug("%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (!vendorDescr) return -1;
944 if (configNr >= RNDIS_MAX_CONFIGS) return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 rndis_per_dev_params [configNr].vendorID = vendorID;
947 rndis_per_dev_params [configNr].vendorDescr = vendorDescr;
David Brownell7e27f182006-06-13 09:54:40 -0700948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return 0;
950}
951
952int rndis_set_param_medium (u8 configNr, u32 medium, u32 speed)
953{
David Brownell33376c12008-08-18 17:45:07 -0700954 pr_debug("%s: %u %u\n", __func__, medium, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (configNr >= RNDIS_MAX_CONFIGS) return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 rndis_per_dev_params [configNr].medium = medium;
958 rndis_per_dev_params [configNr].speed = speed;
David Brownell7e27f182006-06-13 09:54:40 -0700959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return 0;
961}
962
963void rndis_add_hdr (struct sk_buff *skb)
964{
965 struct rndis_packet_msg_type *header;
966
967 if (!skb)
968 return;
969 header = (void *) skb_push (skb, sizeof *header);
970 memset (header, 0, sizeof *header);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800971 header->MessageType = cpu_to_le32(REMOTE_NDIS_PACKET_MSG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 header->MessageLength = cpu_to_le32(skb->len);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800973 header->DataOffset = cpu_to_le32 (36);
David Brownell6cdee102005-04-18 17:39:34 -0700974 header->DataLength = cpu_to_le32(skb->len - sizeof *header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
977void rndis_free_response (int configNr, u8 *buf)
978{
979 rndis_resp_t *r;
980 struct list_head *act, *tmp;
David Brownell7e27f182006-06-13 09:54:40 -0700981
982 list_for_each_safe (act, tmp,
983 &(rndis_per_dev_params [configNr].resp_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 {
985 r = list_entry (act, rndis_resp_t, list);
986 if (r && r->buf == buf) {
987 list_del (&r->list);
988 kfree (r);
989 }
990 }
991}
992
993u8 *rndis_get_next_response (int configNr, u32 *length)
994{
995 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700996 struct list_head *act, *tmp;
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (!length) return NULL;
David Brownell7e27f182006-06-13 09:54:40 -0700999
1000 list_for_each_safe (act, tmp,
1001 &(rndis_per_dev_params [configNr].resp_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 {
1003 r = list_entry (act, rndis_resp_t, list);
1004 if (!r->send) {
1005 r->send = 1;
1006 *length = r->length;
1007 return r->buf;
1008 }
1009 }
David Brownell7e27f182006-06-13 09:54:40 -07001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return NULL;
1012}
1013
1014static rndis_resp_t *rndis_add_response (int configNr, u32 length)
1015{
1016 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -07001017
David Brownell340600a2005-04-28 13:45:25 -07001018 /* NOTE: this gets copied into ether.c USB_BUFSIZ bytes ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 r = kmalloc (sizeof (rndis_resp_t) + length, GFP_ATOMIC);
1020 if (!r) return NULL;
David Brownell7e27f182006-06-13 09:54:40 -07001021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 r->buf = (u8 *) (r + 1);
1023 r->length = length;
1024 r->send = 0;
David Brownell7e27f182006-06-13 09:54:40 -07001025
1026 list_add_tail (&r->list,
1027 &(rndis_per_dev_params [configNr].resp_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 return r;
1029}
1030
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001031int rndis_rm_hdr(struct gether *port,
1032 struct sk_buff *skb,
1033 struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
David Brownell6cdee102005-04-18 17:39:34 -07001035 /* tmp points to a struct rndis_packet_msg_type */
1036 __le32 *tmp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
David Brownell6cdee102005-04-18 17:39:34 -07001038 /* MessageType, MessageLength */
Harvey Harrison35c26c22009-02-14 22:56:56 -08001039 if (cpu_to_le32(REMOTE_NDIS_PACKET_MSG)
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001040 != get_unaligned(tmp++)) {
1041 dev_kfree_skb_any(skb);
David Brownell6cdee102005-04-18 17:39:34 -07001042 return -EINVAL;
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001043 }
David Brownell6cdee102005-04-18 17:39:34 -07001044 tmp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
David Brownell6cdee102005-04-18 17:39:34 -07001046 /* DataOffset, DataLength */
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001047 if (!skb_pull(skb, get_unaligned_le32(tmp++) + 8)) {
1048 dev_kfree_skb_any(skb);
David Brownell6cdee102005-04-18 17:39:34 -07001049 return -EOVERFLOW;
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001050 }
Harvey Harrisona5abdea2008-04-29 01:03:40 -07001051 skb_trim(skb, get_unaligned_le32(tmp++));
David Brownell6cdee102005-04-18 17:39:34 -07001052
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001053 skb_queue_tail(list, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return 0;
1055}
1056
1057#ifdef CONFIG_USB_GADGET_DEBUG_FILES
1058
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001059static int rndis_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001061 rndis_params *param = m->private;
David Brownell7e27f182006-06-13 09:54:40 -07001062
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001063 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 "Config Nr. %d\n"
1065 "used : %s\n"
1066 "state : %s\n"
1067 "medium : 0x%08X\n"
1068 "speed : %d\n"
1069 "cable : %s\n"
1070 "vendor ID : 0x%08X\n"
David Brownell7e27f182006-06-13 09:54:40 -07001071 "vendor : %s\n",
1072 param->confignr, (param->used) ? "y" : "n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 ({ char *s = "?";
1074 switch (param->state) {
1075 case RNDIS_UNINITIALIZED:
1076 s = "RNDIS_UNINITIALIZED"; break;
1077 case RNDIS_INITIALIZED:
1078 s = "RNDIS_INITIALIZED"; break;
1079 case RNDIS_DATA_INITIALIZED:
1080 s = "RNDIS_DATA_INITIALIZED"; break;
1081 }; s; }),
David Brownell7e27f182006-06-13 09:54:40 -07001082 param->medium,
1083 (param->media_state) ? 0 : param->speed*100,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 (param->media_state) ? "disconnected" : "connected",
David Brownell7e27f182006-06-13 09:54:40 -07001085 param->vendorID, param->vendorDescr);
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001086 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001089static ssize_t rndis_proc_write(struct file *file, const char __user *buffer,
1090 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001092 rndis_params *p = PDE(file->f_path.dentry->d_inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 u32 speed = 0;
1094 int i, fl_speed = 0;
David Brownell7e27f182006-06-13 09:54:40 -07001095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 for (i = 0; i < count; i++) {
1097 char c;
1098 if (get_user(c, buffer))
1099 return -EFAULT;
1100 switch (c) {
1101 case '0':
1102 case '1':
1103 case '2':
1104 case '3':
1105 case '4':
1106 case '5':
1107 case '6':
1108 case '7':
1109 case '8':
1110 case '9':
1111 fl_speed = 1;
1112 speed = speed*10 + c - '0';
1113 break;
1114 case 'C':
1115 case 'c':
1116 rndis_signal_connect (p->confignr);
1117 break;
1118 case 'D':
1119 case 'd':
1120 rndis_signal_disconnect(p->confignr);
1121 break;
David Brownell7e27f182006-06-13 09:54:40 -07001122 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 if (fl_speed) p->speed = speed;
David Brownell33376c12008-08-18 17:45:07 -07001124 else pr_debug("%c is not valid\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 break;
1126 }
David Brownell7e27f182006-06-13 09:54:40 -07001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 buffer++;
1129 }
David Brownell7e27f182006-06-13 09:54:40 -07001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 return count;
1132}
1133
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001134static int rndis_proc_open(struct inode *inode, struct file *file)
1135{
1136 return single_open(file, rndis_proc_show, PDE(inode)->data);
1137}
1138
1139static const struct file_operations rndis_proc_fops = {
1140 .owner = THIS_MODULE,
1141 .open = rndis_proc_open,
1142 .read = seq_read,
1143 .llseek = seq_lseek,
1144 .release = single_release,
1145 .write = rndis_proc_write,
1146};
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148#define NAME_TEMPLATE "driver/rndis-%03d"
1149
1150static struct proc_dir_entry *rndis_connect_state [RNDIS_MAX_CONFIGS];
1151
1152#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
1153
1154
Henrik Kretzschmar793f03a2010-08-20 19:57:50 +02001155int rndis_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
1157 u8 i;
1158
1159 for (i = 0; i < RNDIS_MAX_CONFIGS; i++) {
1160#ifdef CONFIG_USB_GADGET_DEBUG_FILES
1161 char name [20];
1162
1163 sprintf (name, NAME_TEMPLATE, i);
1164 if (!(rndis_connect_state [i]
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001165 = proc_create_data(name, 0660, NULL,
1166 &rndis_proc_fops,
1167 (void *)(rndis_per_dev_params + i))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 {
David Brownell33376c12008-08-18 17:45:07 -07001169 pr_debug("%s :remove entries", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 while (i) {
1171 sprintf (name, NAME_TEMPLATE, --i);
1172 remove_proc_entry (name, NULL);
1173 }
David Brownell33376c12008-08-18 17:45:07 -07001174 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 return -EIO;
1176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177#endif
1178 rndis_per_dev_params [i].confignr = i;
1179 rndis_per_dev_params [i].used = 0;
1180 rndis_per_dev_params [i].state = RNDIS_UNINITIALIZED;
1181 rndis_per_dev_params [i].media_state
1182 = NDIS_MEDIA_STATE_DISCONNECTED;
1183 INIT_LIST_HEAD (&(rndis_per_dev_params [i].resp_queue));
1184 }
David Brownell7e27f182006-06-13 09:54:40 -07001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return 0;
1187}
1188
1189void rndis_exit (void)
1190{
1191#ifdef CONFIG_USB_GADGET_DEBUG_FILES
1192 u8 i;
1193 char name [20];
David Brownell7e27f182006-06-13 09:54:40 -07001194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 for (i = 0; i < RNDIS_MAX_CONFIGS; i++) {
1196 sprintf (name, NAME_TEMPLATE, i);
1197 remove_proc_entry (name, NULL);
1198 }
1199#endif
1200}
1201