blob: 020fa5a25fda8fe7bb6c1ca23f28f90d120bd537 [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__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 length = strlen (rndis_per_dev_params [configNr].vendorDescr);
David Brownell340600a2005-04-28 13:45:25 -0700297 memcpy (outbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 rndis_per_dev_params [configNr].vendorDescr, length);
299 retval = 0;
300 break;
301
302 case OID_GEN_VENDOR_DRIVER_VERSION:
David Brownell33376c12008-08-18 17:45:07 -0700303 pr_debug("%s: OID_GEN_VENDOR_DRIVER_VERSION\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* Created as LE */
David Brownell340600a2005-04-28 13:45:25 -0700305 *outbuf = rndis_driver_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 retval = 0;
307 break;
308
309 /* mandatory */
310 case OID_GEN_CURRENT_PACKET_FILTER:
David Brownell33376c12008-08-18 17:45:07 -0700311 pr_debug("%s: OID_GEN_CURRENT_PACKET_FILTER\n", __func__);
David Brownell340600a2005-04-28 13:45:25 -0700312 *outbuf = cpu_to_le32 (*rndis_per_dev_params[configNr].filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 retval = 0;
314 break;
315
316 /* mandatory */
317 case OID_GEN_MAXIMUM_TOTAL_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700318 pr_debug("%s: OID_GEN_MAXIMUM_TOTAL_SIZE\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800319 *outbuf = cpu_to_le32(RNDIS_MAX_TOTAL_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 retval = 0;
321 break;
322
323 /* mandatory */
324 case OID_GEN_MEDIA_CONNECT_STATUS:
David Brownell340600a2005-04-28 13:45:25 -0700325 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700326 pr_debug("%s: OID_GEN_MEDIA_CONNECT_STATUS\n", __func__);
David Brownell340600a2005-04-28 13:45:25 -0700327 *outbuf = cpu_to_le32 (rndis_per_dev_params [configNr]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 .media_state);
329 retval = 0;
330 break;
331
332 case OID_GEN_PHYSICAL_MEDIUM:
David Brownell33376c12008-08-18 17:45:07 -0700333 pr_debug("%s: OID_GEN_PHYSICAL_MEDIUM\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800334 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 retval = 0;
336 break;
337
338 /* The RNDIS specification is incomplete/wrong. Some versions
339 * of MS-Windows expect OIDs that aren't specified there. Other
340 * versions emit undefined RNDIS messages. DOCUMENT ALL THESE!
341 */
342 case OID_GEN_MAC_OPTIONS: /* from WinME */
David Brownell33376c12008-08-18 17:45:07 -0700343 pr_debug("%s: OID_GEN_MAC_OPTIONS\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800344 *outbuf = cpu_to_le32(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 NDIS_MAC_OPTION_RECEIVE_SERIALIZED
346 | NDIS_MAC_OPTION_FULL_DUPLEX);
347 retval = 0;
348 break;
349
350 /* statistics OIDs (table 4-2) */
351
352 /* mandatory */
353 case OID_GEN_XMIT_OK:
David Brownell340600a2005-04-28 13:45:25 -0700354 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700355 pr_debug("%s: OID_GEN_XMIT_OK\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700356 if (stats) {
357 *outbuf = cpu_to_le32(stats->tx_packets
358 - stats->tx_errors - stats->tx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361 break;
362
363 /* mandatory */
364 case OID_GEN_RCV_OK:
David Brownell340600a2005-04-28 13:45:25 -0700365 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700366 pr_debug("%s: OID_GEN_RCV_OK\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700367 if (stats) {
368 *outbuf = cpu_to_le32(stats->rx_packets
369 - stats->rx_errors - stats->rx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372 break;
David Brownell7e27f182006-06-13 09:54:40 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /* mandatory */
375 case OID_GEN_XMIT_ERROR:
David Brownell340600a2005-04-28 13:45:25 -0700376 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700377 pr_debug("%s: OID_GEN_XMIT_ERROR\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700378 if (stats) {
379 *outbuf = cpu_to_le32(stats->tx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382 break;
David Brownell7e27f182006-06-13 09:54:40 -0700383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /* mandatory */
385 case OID_GEN_RCV_ERROR:
David Brownell340600a2005-04-28 13:45:25 -0700386 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700387 pr_debug("%s: OID_GEN_RCV_ERROR\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700388 if (stats) {
389 *outbuf = cpu_to_le32(stats->rx_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392 break;
David Brownell7e27f182006-06-13 09:54:40 -0700393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /* mandatory */
395 case OID_GEN_RCV_NO_BUFFER:
David Brownell33376c12008-08-18 17:45:07 -0700396 pr_debug("%s: OID_GEN_RCV_NO_BUFFER\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700397 if (stats) {
398 *outbuf = cpu_to_le32(stats->rx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401 break;
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 /* ieee802.3 OIDs (table 4-3) */
404
405 /* mandatory */
406 case OID_802_3_PERMANENT_ADDRESS:
David Brownell33376c12008-08-18 17:45:07 -0700407 pr_debug("%s: OID_802_3_PERMANENT_ADDRESS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (rndis_per_dev_params [configNr].dev) {
409 length = ETH_ALEN;
David Brownell340600a2005-04-28 13:45:25 -0700410 memcpy (outbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 rndis_per_dev_params [configNr].host_mac,
412 length);
413 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415 break;
David Brownell7e27f182006-06-13 09:54:40 -0700416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 /* mandatory */
418 case OID_802_3_CURRENT_ADDRESS:
David Brownell33376c12008-08-18 17:45:07 -0700419 pr_debug("%s: OID_802_3_CURRENT_ADDRESS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (rndis_per_dev_params [configNr].dev) {
421 length = ETH_ALEN;
David Brownell340600a2005-04-28 13:45:25 -0700422 memcpy (outbuf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 rndis_per_dev_params [configNr].host_mac,
424 length);
425 retval = 0;
426 }
427 break;
David Brownell7e27f182006-06-13 09:54:40 -0700428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /* mandatory */
430 case OID_802_3_MULTICAST_LIST:
David Brownell33376c12008-08-18 17:45:07 -0700431 pr_debug("%s: OID_802_3_MULTICAST_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /* Multicast base address only */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800433 *outbuf = cpu_to_le32 (0xE0000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 retval = 0;
435 break;
David Brownell7e27f182006-06-13 09:54:40 -0700436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 /* mandatory */
438 case OID_802_3_MAXIMUM_LIST_SIZE:
David Brownell33376c12008-08-18 17:45:07 -0700439 pr_debug("%s: OID_802_3_MAXIMUM_LIST_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* Multicast base address only */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800441 *outbuf = cpu_to_le32 (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 retval = 0;
443 break;
David Brownell7e27f182006-06-13 09:54:40 -0700444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 case OID_802_3_MAC_OPTIONS:
David Brownell33376c12008-08-18 17:45:07 -0700446 pr_debug("%s: OID_802_3_MAC_OPTIONS\n", __func__);
Qiuping Chen6bc21462009-07-01 03:49:29 -0700447 *outbuf = cpu_to_le32(0);
448 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 break;
450
451 /* ieee802.3 statistics OIDs (table 4-4) */
452
453 /* mandatory */
454 case OID_802_3_RCV_ERROR_ALIGNMENT:
David Brownell33376c12008-08-18 17:45:07 -0700455 pr_debug("%s: OID_802_3_RCV_ERROR_ALIGNMENT\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700456 if (stats) {
457 *outbuf = cpu_to_le32(stats->rx_frame_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 retval = 0;
459 }
460 break;
David Brownell7e27f182006-06-13 09:54:40 -0700461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /* mandatory */
463 case OID_802_3_XMIT_ONE_COLLISION:
David Brownell33376c12008-08-18 17:45:07 -0700464 pr_debug("%s: OID_802_3_XMIT_ONE_COLLISION\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800465 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 retval = 0;
467 break;
David Brownell7e27f182006-06-13 09:54:40 -0700468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /* mandatory */
470 case OID_802_3_XMIT_MORE_COLLISIONS:
David Brownell33376c12008-08-18 17:45:07 -0700471 pr_debug("%s: OID_802_3_XMIT_MORE_COLLISIONS\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800472 *outbuf = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 retval = 0;
474 break;
David Brownell7e27f182006-06-13 09:54:40 -0700475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 default:
David Brownell00274922007-11-19 12:58:36 -0800477 pr_warning("%s: query unknown OID 0x%08X\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800478 __func__, OID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
David Brownell340600a2005-04-28 13:45:25 -0700480 if (retval < 0)
481 length = 0;
David Brownell7e27f182006-06-13 09:54:40 -0700482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 resp->InformationBufferLength = cpu_to_le32 (length);
David Brownell340600a2005-04-28 13:45:25 -0700484 r->length = length + sizeof *resp;
485 resp->MessageLength = cpu_to_le32 (r->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return retval;
487}
488
David Brownell7e27f182006-06-13 09:54:40 -0700489static int gen_ndis_set_resp (u8 configNr, u32 OID, u8 *buf, u32 buf_len,
490 rndis_resp_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 rndis_set_cmplt_type *resp;
David Brownell7e27f182006-06-13 09:54:40 -0700493 int i, retval = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct rndis_params *params;
495
496 if (!r)
497 return -ENOMEM;
498 resp = (rndis_set_cmplt_type *) r->buf;
499 if (!resp)
500 return -ENOMEM;
501
David Brownell340600a2005-04-28 13:45:25 -0700502 if (buf_len && rndis_debug > 1) {
David Brownell33376c12008-08-18 17:45:07 -0700503 pr_debug("set OID %08x value, len %d:\n", OID, buf_len);
David Brownell340600a2005-04-28 13:45:25 -0700504 for (i = 0; i < buf_len; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700505 pr_debug("%03d: %08x %08x %08x %08x\n", i,
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700506 get_unaligned_le32(&buf[i]),
507 get_unaligned_le32(&buf[i + 4]),
508 get_unaligned_le32(&buf[i + 8]),
509 get_unaligned_le32(&buf[i + 12]));
David Brownell340600a2005-04-28 13:45:25 -0700510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512
David Brownell340600a2005-04-28 13:45:25 -0700513 params = &rndis_per_dev_params [configNr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 switch (OID) {
515 case OID_GEN_CURRENT_PACKET_FILTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
David Brownell340600a2005-04-28 13:45:25 -0700517 /* these NDIS_PACKET_TYPE_* bitflags are shared with
518 * cdc_filter; it's not RNDIS-specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 * NDIS_PACKET_TYPE_x == USB_CDC_PACKET_TYPE_x for x in:
520 * PROMISCUOUS, DIRECTED,
521 * MULTICAST, ALL_MULTICAST, BROADCAST
522 */
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700523 *params->filter = (u16)get_unaligned_le32(buf);
David Brownell33376c12008-08-18 17:45:07 -0700524 pr_debug("%s: OID_GEN_CURRENT_PACKET_FILTER %08x\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800525 __func__, *params->filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 /* this call has a significant side effect: it's
528 * what makes the packet flow start and stop, like
529 * activating the CDC Ethernet altsetting.
530 */
David Brownell340600a2005-04-28 13:45:25 -0700531 retval = 0;
532 if (*params->filter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 params->state = RNDIS_DATA_INITIALIZED;
534 netif_carrier_on(params->dev);
535 if (netif_running(params->dev))
536 netif_wake_queue (params->dev);
537 } else {
538 params->state = RNDIS_INITIALIZED;
539 netif_carrier_off (params->dev);
540 netif_stop_queue (params->dev);
541 }
542 break;
David Brownell7e27f182006-06-13 09:54:40 -0700543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 case OID_802_3_MULTICAST_LIST:
David Brownell7e27f182006-06-13 09:54:40 -0700545 /* I think we can ignore this */
David Brownell33376c12008-08-18 17:45:07 -0700546 pr_debug("%s: OID_802_3_MULTICAST_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 retval = 0;
548 break;
David Brownell340600a2005-04-28 13:45:25 -0700549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 default:
David Brownell00274922007-11-19 12:58:36 -0800551 pr_warning("%s: set unknown OID 0x%08X, size %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800552 __func__, OID, buf_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
David Brownell7e27f182006-06-13 09:54:40 -0700554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return retval;
556}
557
David Brownell7e27f182006-06-13 09:54:40 -0700558/*
559 * Response Functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 */
561
562static int rndis_init_response (int configNr, rndis_init_msg_type *buf)
563{
David Brownell7e27f182006-06-13 09:54:40 -0700564 rndis_init_cmplt_type *resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700566 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700567
David Brownell15b2d2b2008-06-19 18:19:16 -0700568 if (!params->dev)
569 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 r = rndis_add_response (configNr, sizeof (rndis_init_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700572 if (!r)
573 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 resp = (rndis_init_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700575
Harvey Harrison35c26c22009-02-14 22:56:56 -0800576 resp->MessageType = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 REMOTE_NDIS_INITIALIZE_CMPLT);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800578 resp->MessageLength = cpu_to_le32 (52);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800580 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
581 resp->MajorVersion = cpu_to_le32 (RNDIS_MAJOR_VERSION);
582 resp->MinorVersion = cpu_to_le32 (RNDIS_MINOR_VERSION);
583 resp->DeviceFlags = cpu_to_le32 (RNDIS_DF_CONNECTIONLESS);
584 resp->Medium = cpu_to_le32 (RNDIS_MEDIUM_802_3);
585 resp->MaxPacketsPerTransfer = cpu_to_le32 (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 resp->MaxTransferSize = cpu_to_le32 (
David Brownell15b2d2b2008-06-19 18:19:16 -0700587 params->dev->mtu
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 + sizeof (struct ethhdr)
589 + sizeof (struct rndis_packet_msg_type)
590 + 22);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800591 resp->PacketAlignmentFactor = cpu_to_le32 (0);
592 resp->AFListOffset = cpu_to_le32 (0);
593 resp->AFListSize = cpu_to_le32 (0);
David Brownell7e27f182006-06-13 09:54:40 -0700594
David Brownell15b2d2b2008-06-19 18:19:16 -0700595 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return 0;
597}
598
599static int rndis_query_response (int configNr, rndis_query_msg_type *buf)
600{
601 rndis_query_cmplt_type *resp;
602 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700603 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700604
David Brownell33376c12008-08-18 17:45:07 -0700605 /* pr_debug("%s: OID = %08X\n", __func__, cpu_to_le32(buf->OID)); */
David Brownell15b2d2b2008-06-19 18:19:16 -0700606 if (!params->dev)
607 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700608
Shaun Tancheff87637162006-02-22 19:47:19 -0800609 /*
610 * we need more memory:
611 * gen_ndis_query_resp expects enough space for
612 * rndis_query_cmplt_type followed by data.
613 * oid_supported_list is the largest data reply
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 */
Shaun Tancheff87637162006-02-22 19:47:19 -0800615 r = rndis_add_response (configNr,
616 sizeof (oid_supported_list) + sizeof(rndis_query_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700617 if (!r)
618 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 resp = (rndis_query_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700620
Harvey Harrison35c26c22009-02-14 22:56:56 -0800621 resp->MessageType = cpu_to_le32 (REMOTE_NDIS_QUERY_CMPLT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
David Brownell7e27f182006-06-13 09:54:40 -0700623
David Brownell340600a2005-04-28 13:45:25 -0700624 if (gen_ndis_query_resp (configNr, le32_to_cpu (buf->OID),
625 le32_to_cpu(buf->InformationBufferOffset)
626 + 8 + (u8 *) buf,
627 le32_to_cpu(buf->InformationBufferLength),
628 r)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /* OID not supported */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800630 resp->Status = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 RNDIS_STATUS_NOT_SUPPORTED);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800632 resp->MessageLength = cpu_to_le32 (sizeof *resp);
633 resp->InformationBufferLength = cpu_to_le32 (0);
634 resp->InformationBufferOffset = cpu_to_le32 (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 } else
Harvey Harrison35c26c22009-02-14 22:56:56 -0800636 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700637
David Brownell15b2d2b2008-06-19 18:19:16 -0700638 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return 0;
640}
641
642static int rndis_set_response (int configNr, rndis_set_msg_type *buf)
643{
644 u32 BufLength, BufOffset;
645 rndis_set_cmplt_type *resp;
646 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700647 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 r = rndis_add_response (configNr, sizeof (rndis_set_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700650 if (!r)
651 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 resp = (rndis_set_cmplt_type *) r->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 BufLength = le32_to_cpu (buf->InformationBufferLength);
655 BufOffset = le32_to_cpu (buf->InformationBufferOffset);
656
David Brownell15b2d2b2008-06-19 18:19:16 -0700657#ifdef VERBOSE_DEBUG
David Brownell33376c12008-08-18 17:45:07 -0700658 pr_debug("%s: Length: %d\n", __func__, BufLength);
659 pr_debug("%s: Offset: %d\n", __func__, BufOffset);
660 pr_debug("%s: InfoBuffer: ", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 for (i = 0; i < BufLength; i++) {
David Brownell33376c12008-08-18 17:45:07 -0700663 pr_debug("%02x ", *(((u8 *) buf) + i + 8 + BufOffset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
David Brownell7e27f182006-06-13 09:54:40 -0700665
David Brownell33376c12008-08-18 17:45:07 -0700666 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#endif
David Brownell7e27f182006-06-13 09:54:40 -0700668
Harvey Harrison35c26c22009-02-14 22:56:56 -0800669 resp->MessageType = cpu_to_le32 (REMOTE_NDIS_SET_CMPLT);
670 resp->MessageLength = cpu_to_le32 (16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
David Brownell7e27f182006-06-13 09:54:40 -0700672 if (gen_ndis_set_resp (configNr, le32_to_cpu (buf->OID),
673 ((u8 *) buf) + 8 + BufOffset, BufLength, r))
Harvey Harrison35c26c22009-02-14 22:56:56 -0800674 resp->Status = cpu_to_le32 (RNDIS_STATUS_NOT_SUPPORTED);
David Brownell7e27f182006-06-13 09:54:40 -0700675 else
Harvey Harrison35c26c22009-02-14 22:56:56 -0800676 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700677
David Brownell15b2d2b2008-06-19 18:19:16 -0700678 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return 0;
680}
681
682static int rndis_reset_response (int configNr, rndis_reset_msg_type *buf)
683{
684 rndis_reset_cmplt_type *resp;
685 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700686 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 r = rndis_add_response (configNr, sizeof (rndis_reset_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700689 if (!r)
690 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 resp = (rndis_reset_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700692
Harvey Harrison35c26c22009-02-14 22:56:56 -0800693 resp->MessageType = cpu_to_le32 (REMOTE_NDIS_RESET_CMPLT);
694 resp->MessageLength = cpu_to_le32 (16);
695 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 /* resent information */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800697 resp->AddressingReset = cpu_to_le32 (1);
David Brownell7e27f182006-06-13 09:54:40 -0700698
David Brownell15b2d2b2008-06-19 18:19:16 -0700699 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return 0;
701}
702
703static int rndis_keepalive_response (int configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700704 rndis_keepalive_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 rndis_keepalive_cmplt_type *resp;
707 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700708 struct rndis_params *params = rndis_per_dev_params + configNr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 /* host "should" check only in RNDIS_DATA_INITIALIZED state */
711
712 r = rndis_add_response (configNr, sizeof (rndis_keepalive_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700713 if (!r)
714 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 resp = (rndis_keepalive_cmplt_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700716
Harvey Harrison35c26c22009-02-14 22:56:56 -0800717 resp->MessageType = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 REMOTE_NDIS_KEEPALIVE_CMPLT);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800719 resp->MessageLength = cpu_to_le32 (16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Harvey Harrison35c26c22009-02-14 22:56:56 -0800721 resp->Status = cpu_to_le32 (RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700722
David Brownell15b2d2b2008-06-19 18:19:16 -0700723 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return 0;
725}
726
727
David Brownell7e27f182006-06-13 09:54:40 -0700728/*
729 * Device to Host Comunication
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 */
731static int rndis_indicate_status_msg (int configNr, u32 status)
732{
David Brownell7e27f182006-06-13 09:54:40 -0700733 rndis_indicate_status_msg_type *resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 rndis_resp_t *r;
David Brownell15b2d2b2008-06-19 18:19:16 -0700735 struct rndis_params *params = rndis_per_dev_params + configNr;
David Brownell7e27f182006-06-13 09:54:40 -0700736
David Brownell15b2d2b2008-06-19 18:19:16 -0700737 if (params->state == RNDIS_UNINITIALIZED)
David Brownell7e27f182006-06-13 09:54:40 -0700738 return -ENOTSUPP;
739
740 r = rndis_add_response (configNr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 sizeof (rndis_indicate_status_msg_type));
David Brownell340600a2005-04-28 13:45:25 -0700742 if (!r)
743 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 resp = (rndis_indicate_status_msg_type *) r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700745
Harvey Harrison35c26c22009-02-14 22:56:56 -0800746 resp->MessageType = cpu_to_le32 (
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 REMOTE_NDIS_INDICATE_STATUS_MSG);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800748 resp->MessageLength = cpu_to_le32 (20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 resp->Status = cpu_to_le32 (status);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800750 resp->StatusBufferLength = cpu_to_le32 (0);
751 resp->StatusBufferOffset = cpu_to_le32 (0);
David Brownell7e27f182006-06-13 09:54:40 -0700752
David Brownell15b2d2b2008-06-19 18:19:16 -0700753 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return 0;
755}
756
757int rndis_signal_connect (int configNr)
758{
759 rndis_per_dev_params [configNr].media_state
760 = NDIS_MEDIA_STATE_CONNECTED;
David Brownell7e27f182006-06-13 09:54:40 -0700761 return rndis_indicate_status_msg (configNr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 RNDIS_STATUS_MEDIA_CONNECT);
763}
764
765int rndis_signal_disconnect (int configNr)
766{
767 rndis_per_dev_params [configNr].media_state
768 = NDIS_MEDIA_STATE_DISCONNECTED;
769 return rndis_indicate_status_msg (configNr,
770 RNDIS_STATUS_MEDIA_DISCONNECT);
771}
772
David Brownell340600a2005-04-28 13:45:25 -0700773void rndis_uninit (int configNr)
774{
David Brownell486e2df2005-05-24 17:51:52 -0700775 u8 *buf;
776 u32 length;
777
David Brownell340600a2005-04-28 13:45:25 -0700778 if (configNr >= RNDIS_MAX_CONFIGS)
779 return;
David Brownell340600a2005-04-28 13:45:25 -0700780 rndis_per_dev_params [configNr].state = RNDIS_UNINITIALIZED;
David Brownell486e2df2005-05-24 17:51:52 -0700781
782 /* drain the response queue */
783 while ((buf = rndis_get_next_response(configNr, &length)))
784 rndis_free_response(configNr, buf);
David Brownell340600a2005-04-28 13:45:25 -0700785}
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787void rndis_set_host_mac (int configNr, const u8 *addr)
788{
789 rndis_per_dev_params [configNr].host_mac = addr;
790}
791
David Brownell7e27f182006-06-13 09:54:40 -0700792/*
793 * Message Parser
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 */
795int rndis_msg_parser (u8 configNr, u8 *buf)
796{
797 u32 MsgType, MsgLength;
798 __le32 *tmp;
799 struct rndis_params *params;
David Brownell7e27f182006-06-13 09:54:40 -0700800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (!buf)
802 return -ENOMEM;
David Brownell7e27f182006-06-13 09:54:40 -0700803
804 tmp = (__le32 *) buf;
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700805 MsgType = get_unaligned_le32(tmp++);
806 MsgLength = get_unaligned_le32(tmp++);
David Brownell7e27f182006-06-13 09:54:40 -0700807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (configNr >= RNDIS_MAX_CONFIGS)
809 return -ENOTSUPP;
810 params = &rndis_per_dev_params [configNr];
David Brownell7e27f182006-06-13 09:54:40 -0700811
David Brownell340600a2005-04-28 13:45:25 -0700812 /* NOTE: RNDIS is *EXTREMELY* chatty ... Windows constantly polls for
813 * rx/tx statistics and link status, in addition to KEEPALIVE traffic
814 * and normal HC level polling to see if there's any IN traffic.
815 */
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /* For USB: responses may take up to 10 seconds */
David Brownell340600a2005-04-28 13:45:25 -0700818 switch (MsgType) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 case REMOTE_NDIS_INITIALIZE_MSG:
David Brownell33376c12008-08-18 17:45:07 -0700820 pr_debug("%s: REMOTE_NDIS_INITIALIZE_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800821 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 params->state = RNDIS_INITIALIZED;
823 return rndis_init_response (configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700824 (rndis_init_msg_type *) buf);
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 case REMOTE_NDIS_HALT_MSG:
David Brownell33376c12008-08-18 17:45:07 -0700827 pr_debug("%s: REMOTE_NDIS_HALT_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800828 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 params->state = RNDIS_UNINITIALIZED;
830 if (params->dev) {
831 netif_carrier_off (params->dev);
832 netif_stop_queue (params->dev);
833 }
834 return 0;
David Brownell7e27f182006-06-13 09:54:40 -0700835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 case REMOTE_NDIS_QUERY_MSG:
David Brownell7e27f182006-06-13 09:54:40 -0700837 return rndis_query_response (configNr,
838 (rndis_query_msg_type *) buf);
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 case REMOTE_NDIS_SET_MSG:
David Brownell7e27f182006-06-13 09:54:40 -0700841 return rndis_set_response (configNr,
842 (rndis_set_msg_type *) buf);
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 case REMOTE_NDIS_RESET_MSG:
David Brownell33376c12008-08-18 17:45:07 -0700845 pr_debug("%s: REMOTE_NDIS_RESET_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800846 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return rndis_reset_response (configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700848 (rndis_reset_msg_type *) buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 case REMOTE_NDIS_KEEPALIVE_MSG:
851 /* For USB: host does this every 5 seconds */
David Brownell340600a2005-04-28 13:45:25 -0700852 if (rndis_debug > 1)
David Brownell33376c12008-08-18 17:45:07 -0700853 pr_debug("%s: REMOTE_NDIS_KEEPALIVE_MSG\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800854 __func__ );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return rndis_keepalive_response (configNr,
David Brownell7e27f182006-06-13 09:54:40 -0700856 (rndis_keepalive_msg_type *)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 buf);
David Brownell7e27f182006-06-13 09:54:40 -0700858
859 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /* At least Windows XP emits some undefined RNDIS messages.
861 * In one case those messages seemed to relate to the host
862 * suspending itself.
863 */
David Brownell00274922007-11-19 12:58:36 -0800864 pr_warning("%s: unknown RNDIS message 0x%08X len %d\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800865 __func__ , MsgType, MsgLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 {
867 unsigned i;
868 for (i = 0; i < MsgLength; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700869 pr_debug("%03d: "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 " %02x %02x %02x %02x"
871 " %02x %02x %02x %02x"
872 " %02x %02x %02x %02x"
873 " %02x %02x %02x %02x"
874 "\n",
875 i,
876 buf[i], buf [i+1],
877 buf[i+2], buf[i+3],
878 buf[i+4], buf [i+5],
879 buf[i+6], buf[i+7],
880 buf[i+8], buf [i+9],
881 buf[i+10], buf[i+11],
882 buf[i+12], buf [i+13],
883 buf[i+14], buf[i+15]);
884 }
885 }
886 break;
887 }
David Brownell7e27f182006-06-13 09:54:40 -0700888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return -ENOTSUPP;
890}
891
David Brownell15b2d2b2008-06-19 18:19:16 -0700892int rndis_register(void (*resp_avail)(void *v), void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894 u8 i;
David Brownell7e27f182006-06-13 09:54:40 -0700895
David Brownell15b2d2b2008-06-19 18:19:16 -0700896 if (!resp_avail)
897 return -EINVAL;
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 for (i = 0; i < RNDIS_MAX_CONFIGS; i++) {
900 if (!rndis_per_dev_params [i].used) {
901 rndis_per_dev_params [i].used = 1;
David Brownell15b2d2b2008-06-19 18:19:16 -0700902 rndis_per_dev_params [i].resp_avail = resp_avail;
903 rndis_per_dev_params [i].v = v;
David Brownell33376c12008-08-18 17:45:07 -0700904 pr_debug("%s: configNr = %d\n", __func__, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return i;
906 }
907 }
David Brownell33376c12008-08-18 17:45:07 -0700908 pr_debug("failed\n");
David Brownell7e27f182006-06-13 09:54:40 -0700909
David Brownell15b2d2b2008-06-19 18:19:16 -0700910 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
912
913void rndis_deregister (int configNr)
914{
David Brownell33376c12008-08-18 17:45:07 -0700915 pr_debug("%s: \n", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (configNr >= RNDIS_MAX_CONFIGS) return;
918 rndis_per_dev_params [configNr].used = 0;
David Brownell7e27f182006-06-13 09:54:40 -0700919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 return;
921}
922
David Brownell15b2d2b2008-06-19 18:19:16 -0700923int rndis_set_param_dev(u8 configNr, struct net_device *dev, u16 *cdc_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
David Brownell33376c12008-08-18 17:45:07 -0700925 pr_debug("%s:\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700926 if (!dev)
927 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 if (configNr >= RNDIS_MAX_CONFIGS) return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 rndis_per_dev_params [configNr].dev = dev;
David Brownell340600a2005-04-28 13:45:25 -0700931 rndis_per_dev_params [configNr].filter = cdc_filter;
David Brownell7e27f182006-06-13 09:54:40 -0700932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return 0;
934}
935
936int rndis_set_param_vendor (u8 configNr, u32 vendorID, const char *vendorDescr)
937{
David Brownell33376c12008-08-18 17:45:07 -0700938 pr_debug("%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (!vendorDescr) return -1;
940 if (configNr >= RNDIS_MAX_CONFIGS) return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 rndis_per_dev_params [configNr].vendorID = vendorID;
943 rndis_per_dev_params [configNr].vendorDescr = vendorDescr;
David Brownell7e27f182006-06-13 09:54:40 -0700944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return 0;
946}
947
948int rndis_set_param_medium (u8 configNr, u32 medium, u32 speed)
949{
David Brownell33376c12008-08-18 17:45:07 -0700950 pr_debug("%s: %u %u\n", __func__, medium, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (configNr >= RNDIS_MAX_CONFIGS) return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 rndis_per_dev_params [configNr].medium = medium;
954 rndis_per_dev_params [configNr].speed = speed;
David Brownell7e27f182006-06-13 09:54:40 -0700955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return 0;
957}
958
959void rndis_add_hdr (struct sk_buff *skb)
960{
961 struct rndis_packet_msg_type *header;
962
963 if (!skb)
964 return;
965 header = (void *) skb_push (skb, sizeof *header);
966 memset (header, 0, sizeof *header);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800967 header->MessageType = cpu_to_le32(REMOTE_NDIS_PACKET_MSG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 header->MessageLength = cpu_to_le32(skb->len);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800969 header->DataOffset = cpu_to_le32 (36);
David Brownell6cdee102005-04-18 17:39:34 -0700970 header->DataLength = cpu_to_le32(skb->len - sizeof *header);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
973void rndis_free_response (int configNr, u8 *buf)
974{
975 rndis_resp_t *r;
976 struct list_head *act, *tmp;
David Brownell7e27f182006-06-13 09:54:40 -0700977
978 list_for_each_safe (act, tmp,
979 &(rndis_per_dev_params [configNr].resp_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 {
981 r = list_entry (act, rndis_resp_t, list);
982 if (r && r->buf == buf) {
983 list_del (&r->list);
984 kfree (r);
985 }
986 }
987}
988
989u8 *rndis_get_next_response (int configNr, u32 *length)
990{
991 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700992 struct list_head *act, *tmp;
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (!length) return NULL;
David Brownell7e27f182006-06-13 09:54:40 -0700995
996 list_for_each_safe (act, tmp,
997 &(rndis_per_dev_params [configNr].resp_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 {
999 r = list_entry (act, rndis_resp_t, list);
1000 if (!r->send) {
1001 r->send = 1;
1002 *length = r->length;
1003 return r->buf;
1004 }
1005 }
David Brownell7e27f182006-06-13 09:54:40 -07001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return NULL;
1008}
1009
1010static rndis_resp_t *rndis_add_response (int configNr, u32 length)
1011{
1012 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -07001013
David Brownell340600a2005-04-28 13:45:25 -07001014 /* NOTE: this gets copied into ether.c USB_BUFSIZ bytes ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 r = kmalloc (sizeof (rndis_resp_t) + length, GFP_ATOMIC);
1016 if (!r) return NULL;
David Brownell7e27f182006-06-13 09:54:40 -07001017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 r->buf = (u8 *) (r + 1);
1019 r->length = length;
1020 r->send = 0;
David Brownell7e27f182006-06-13 09:54:40 -07001021
1022 list_add_tail (&r->list,
1023 &(rndis_per_dev_params [configNr].resp_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return r;
1025}
1026
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001027int rndis_rm_hdr(struct gether *port,
1028 struct sk_buff *skb,
1029 struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
David Brownell6cdee102005-04-18 17:39:34 -07001031 /* tmp points to a struct rndis_packet_msg_type */
1032 __le32 *tmp = (void *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
David Brownell6cdee102005-04-18 17:39:34 -07001034 /* MessageType, MessageLength */
Harvey Harrison35c26c22009-02-14 22:56:56 -08001035 if (cpu_to_le32(REMOTE_NDIS_PACKET_MSG)
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001036 != get_unaligned(tmp++)) {
1037 dev_kfree_skb_any(skb);
David Brownell6cdee102005-04-18 17:39:34 -07001038 return -EINVAL;
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001039 }
David Brownell6cdee102005-04-18 17:39:34 -07001040 tmp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
David Brownell6cdee102005-04-18 17:39:34 -07001042 /* DataOffset, DataLength */
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001043 if (!skb_pull(skb, get_unaligned_le32(tmp++) + 8)) {
1044 dev_kfree_skb_any(skb);
David Brownell6cdee102005-04-18 17:39:34 -07001045 return -EOVERFLOW;
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001046 }
Harvey Harrisona5abdea2008-04-29 01:03:40 -07001047 skb_trim(skb, get_unaligned_le32(tmp++));
David Brownell6cdee102005-04-18 17:39:34 -07001048
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001049 skb_queue_tail(list, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return 0;
1051}
1052
1053#ifdef CONFIG_USB_GADGET_DEBUG_FILES
1054
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001055static int rndis_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001057 rndis_params *param = m->private;
David Brownell7e27f182006-06-13 09:54:40 -07001058
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001059 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 "Config Nr. %d\n"
1061 "used : %s\n"
1062 "state : %s\n"
1063 "medium : 0x%08X\n"
1064 "speed : %d\n"
1065 "cable : %s\n"
1066 "vendor ID : 0x%08X\n"
David Brownell7e27f182006-06-13 09:54:40 -07001067 "vendor : %s\n",
1068 param->confignr, (param->used) ? "y" : "n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 ({ char *s = "?";
1070 switch (param->state) {
1071 case RNDIS_UNINITIALIZED:
1072 s = "RNDIS_UNINITIALIZED"; break;
1073 case RNDIS_INITIALIZED:
1074 s = "RNDIS_INITIALIZED"; break;
1075 case RNDIS_DATA_INITIALIZED:
1076 s = "RNDIS_DATA_INITIALIZED"; break;
1077 }; s; }),
David Brownell7e27f182006-06-13 09:54:40 -07001078 param->medium,
1079 (param->media_state) ? 0 : param->speed*100,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 (param->media_state) ? "disconnected" : "connected",
David Brownell7e27f182006-06-13 09:54:40 -07001081 param->vendorID, param->vendorDescr);
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001082 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001085static ssize_t rndis_proc_write(struct file *file, const char __user *buffer,
1086 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001088 rndis_params *p = PDE(file->f_path.dentry->d_inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 u32 speed = 0;
1090 int i, fl_speed = 0;
David Brownell7e27f182006-06-13 09:54:40 -07001091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 for (i = 0; i < count; i++) {
1093 char c;
1094 if (get_user(c, buffer))
1095 return -EFAULT;
1096 switch (c) {
1097 case '0':
1098 case '1':
1099 case '2':
1100 case '3':
1101 case '4':
1102 case '5':
1103 case '6':
1104 case '7':
1105 case '8':
1106 case '9':
1107 fl_speed = 1;
1108 speed = speed*10 + c - '0';
1109 break;
1110 case 'C':
1111 case 'c':
1112 rndis_signal_connect (p->confignr);
1113 break;
1114 case 'D':
1115 case 'd':
1116 rndis_signal_disconnect(p->confignr);
1117 break;
David Brownell7e27f182006-06-13 09:54:40 -07001118 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (fl_speed) p->speed = speed;
David Brownell33376c12008-08-18 17:45:07 -07001120 else pr_debug("%c is not valid\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 break;
1122 }
David Brownell7e27f182006-06-13 09:54:40 -07001123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 buffer++;
1125 }
David Brownell7e27f182006-06-13 09:54:40 -07001126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return count;
1128}
1129
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001130static int rndis_proc_open(struct inode *inode, struct file *file)
1131{
1132 return single_open(file, rndis_proc_show, PDE(inode)->data);
1133}
1134
1135static const struct file_operations rndis_proc_fops = {
1136 .owner = THIS_MODULE,
1137 .open = rndis_proc_open,
1138 .read = seq_read,
1139 .llseek = seq_lseek,
1140 .release = single_release,
1141 .write = rndis_proc_write,
1142};
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144#define NAME_TEMPLATE "driver/rndis-%03d"
1145
1146static struct proc_dir_entry *rndis_connect_state [RNDIS_MAX_CONFIGS];
1147
1148#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
1149
1150
David Brownell0e530b42008-04-05 14:17:14 -07001151int __init rndis_init (void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
1153 u8 i;
1154
1155 for (i = 0; i < RNDIS_MAX_CONFIGS; i++) {
1156#ifdef CONFIG_USB_GADGET_DEBUG_FILES
1157 char name [20];
1158
1159 sprintf (name, NAME_TEMPLATE, i);
1160 if (!(rndis_connect_state [i]
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001161 = proc_create_data(name, 0660, NULL,
1162 &rndis_proc_fops,
1163 (void *)(rndis_per_dev_params + i))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 {
David Brownell33376c12008-08-18 17:45:07 -07001165 pr_debug("%s :remove entries", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 while (i) {
1167 sprintf (name, NAME_TEMPLATE, --i);
1168 remove_proc_entry (name, NULL);
1169 }
David Brownell33376c12008-08-18 17:45:07 -07001170 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return -EIO;
1172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173#endif
1174 rndis_per_dev_params [i].confignr = i;
1175 rndis_per_dev_params [i].used = 0;
1176 rndis_per_dev_params [i].state = RNDIS_UNINITIALIZED;
1177 rndis_per_dev_params [i].media_state
1178 = NDIS_MEDIA_STATE_DISCONNECTED;
1179 INIT_LIST_HEAD (&(rndis_per_dev_params [i].resp_queue));
1180 }
David Brownell7e27f182006-06-13 09:54:40 -07001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return 0;
1183}
1184
1185void rndis_exit (void)
1186{
1187#ifdef CONFIG_USB_GADGET_DEBUG_FILES
1188 u8 i;
1189 char name [20];
David Brownell7e27f182006-06-13 09:54:40 -07001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 for (i = 0; i < RNDIS_MAX_CONFIGS; i++) {
1192 sprintf (name, NAME_TEMPLATE, i);
1193 remove_proc_entry (name, NULL);
1194 }
1195#endif
1196}
1197