blob: 766c328c15c0d963ee8c7b8a183358334d2c33c0 [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>
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010028#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#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>
David Brownell6cdee102005-04-18 17:39:34 -070037#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Fabio Estevamae8dd0c2014-04-04 22:27:59 -030039#include "u_rndis.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
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
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010061#ifdef CONFIG_USB_GADGET_DEBUG_FILES
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010063#define NAME_TEMPLATE "driver/rndis-%03d"
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010065#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
66
67static DEFINE_IDA(rndis_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* Driver Version */
Mihai Donțua1df4e42010-09-08 02:54:02 +030070static const __le32 rndis_driver_version = cpu_to_le32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/* Function Prototypes */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +010073static rndis_resp_t *rndis_add_response(struct rndis_params *params,
74 u32 length);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010076#ifdef CONFIG_USB_GADGET_DEBUG_FILES
77
78static const struct file_operations rndis_proc_fops;
79
80#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
David Brownell340600a2005-04-28 13:45:25 -070082/* supported OIDs */
Mihai Donțua1df4e42010-09-08 02:54:02 +030083static const u32 oid_supported_list[] =
David Brownell340600a2005-04-28 13:45:25 -070084{
85 /* the general stuff */
Linus Walleij8cdddc32012-05-11 22:16:08 +000086 RNDIS_OID_GEN_SUPPORTED_LIST,
87 RNDIS_OID_GEN_HARDWARE_STATUS,
88 RNDIS_OID_GEN_MEDIA_SUPPORTED,
89 RNDIS_OID_GEN_MEDIA_IN_USE,
90 RNDIS_OID_GEN_MAXIMUM_FRAME_SIZE,
91 RNDIS_OID_GEN_LINK_SPEED,
92 RNDIS_OID_GEN_TRANSMIT_BLOCK_SIZE,
93 RNDIS_OID_GEN_RECEIVE_BLOCK_SIZE,
94 RNDIS_OID_GEN_VENDOR_ID,
95 RNDIS_OID_GEN_VENDOR_DESCRIPTION,
96 RNDIS_OID_GEN_VENDOR_DRIVER_VERSION,
97 RNDIS_OID_GEN_CURRENT_PACKET_FILTER,
98 RNDIS_OID_GEN_MAXIMUM_TOTAL_SIZE,
99 RNDIS_OID_GEN_MEDIA_CONNECT_STATUS,
100 RNDIS_OID_GEN_PHYSICAL_MEDIUM,
David Brownell7e27f182006-06-13 09:54:40 -0700101
David Brownell340600a2005-04-28 13:45:25 -0700102 /* the statistical stuff */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000103 RNDIS_OID_GEN_XMIT_OK,
104 RNDIS_OID_GEN_RCV_OK,
105 RNDIS_OID_GEN_XMIT_ERROR,
106 RNDIS_OID_GEN_RCV_ERROR,
107 RNDIS_OID_GEN_RCV_NO_BUFFER,
David Brownell340600a2005-04-28 13:45:25 -0700108#ifdef RNDIS_OPTIONAL_STATS
Linus Walleij8cdddc32012-05-11 22:16:08 +0000109 RNDIS_OID_GEN_DIRECTED_BYTES_XMIT,
110 RNDIS_OID_GEN_DIRECTED_FRAMES_XMIT,
111 RNDIS_OID_GEN_MULTICAST_BYTES_XMIT,
112 RNDIS_OID_GEN_MULTICAST_FRAMES_XMIT,
113 RNDIS_OID_GEN_BROADCAST_BYTES_XMIT,
114 RNDIS_OID_GEN_BROADCAST_FRAMES_XMIT,
115 RNDIS_OID_GEN_DIRECTED_BYTES_RCV,
116 RNDIS_OID_GEN_DIRECTED_FRAMES_RCV,
117 RNDIS_OID_GEN_MULTICAST_BYTES_RCV,
118 RNDIS_OID_GEN_MULTICAST_FRAMES_RCV,
119 RNDIS_OID_GEN_BROADCAST_BYTES_RCV,
120 RNDIS_OID_GEN_BROADCAST_FRAMES_RCV,
121 RNDIS_OID_GEN_RCV_CRC_ERROR,
122 RNDIS_OID_GEN_TRANSMIT_QUEUE_LENGTH,
David Brownell340600a2005-04-28 13:45:25 -0700123#endif /* RNDIS_OPTIONAL_STATS */
124
David Brownell7e27f182006-06-13 09:54:40 -0700125 /* mandatory 802.3 */
David Brownell340600a2005-04-28 13:45:25 -0700126 /* the general stuff */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000127 RNDIS_OID_802_3_PERMANENT_ADDRESS,
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000128 RNDIS_OID_802_3_CURRENT_ADDRESS,
129 RNDIS_OID_802_3_MULTICAST_LIST,
130 RNDIS_OID_802_3_MAC_OPTIONS,
131 RNDIS_OID_802_3_MAXIMUM_LIST_SIZE,
David Brownell7e27f182006-06-13 09:54:40 -0700132
David Brownell340600a2005-04-28 13:45:25 -0700133 /* the statistical stuff */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000134 RNDIS_OID_802_3_RCV_ERROR_ALIGNMENT,
135 RNDIS_OID_802_3_XMIT_ONE_COLLISION,
136 RNDIS_OID_802_3_XMIT_MORE_COLLISIONS,
David Brownell340600a2005-04-28 13:45:25 -0700137#ifdef RNDIS_OPTIONAL_STATS
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000138 RNDIS_OID_802_3_XMIT_DEFERRED,
139 RNDIS_OID_802_3_XMIT_MAX_COLLISIONS,
140 RNDIS_OID_802_3_RCV_OVERRUN,
141 RNDIS_OID_802_3_XMIT_UNDERRUN,
142 RNDIS_OID_802_3_XMIT_HEARTBEAT_FAILURE,
143 RNDIS_OID_802_3_XMIT_TIMES_CRS_LOST,
144 RNDIS_OID_802_3_XMIT_LATE_COLLISIONS,
David Brownell340600a2005-04-28 13:45:25 -0700145#endif /* RNDIS_OPTIONAL_STATS */
146
147#ifdef RNDIS_PM
David Brownell15b2d2b2008-06-19 18:19:16 -0700148 /* PM and wakeup are "mandatory" for USB, but the RNDIS specs
149 * don't say what they mean ... and the NDIS specs are often
150 * confusing and/or ambiguous in this context. (That is, more
151 * so than their specs for the other OIDs.)
152 *
153 * FIXME someone who knows what these should do, please
154 * implement them!
155 */
David Brownell340600a2005-04-28 13:45:25 -0700156
157 /* power management */
158 OID_PNP_CAPABILITIES,
159 OID_PNP_QUERY_POWER,
160 OID_PNP_SET_POWER,
161
162#ifdef RNDIS_WAKEUP
163 /* wake up host */
164 OID_PNP_ENABLE_WAKE_UP,
165 OID_PNP_ADD_WAKE_UP_PATTERN,
166 OID_PNP_REMOVE_WAKE_UP_PATTERN,
167#endif /* RNDIS_WAKEUP */
168#endif /* RNDIS_PM */
169};
170
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/* NDIS Functions */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100173static int gen_ndis_query_resp(struct rndis_params *params, u32 OID, u8 *buf,
Mihai Donțua1df4e42010-09-08 02:54:02 +0300174 unsigned buf_len, rndis_resp_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300176 int retval = -ENOTSUPP;
177 u32 length = 4; /* usually */
178 __le32 *outbuf;
179 int i, count;
180 rndis_query_cmplt_type *resp;
181 struct net_device *net;
Eric Dumazet28172732010-07-07 14:58:56 -0700182 struct rtnl_link_stats64 temp;
David S. Millerfdb93f8a2010-06-15 21:50:14 -0700183 const struct rtnl_link_stats64 *stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 if (!r) return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300186 resp = (rndis_query_cmplt_type *)r->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 if (!resp) return -ENOMEM;
David Brownell340600a2005-04-28 13:45:25 -0700189
190 if (buf_len && rndis_debug > 1) {
David Brownell33376c12008-08-18 17:45:07 -0700191 pr_debug("query OID %08x value, len %d:\n", OID, buf_len);
David Brownell340600a2005-04-28 13:45:25 -0700192 for (i = 0; i < buf_len; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700193 pr_debug("%03d: %08x %08x %08x %08x\n", i,
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700194 get_unaligned_le32(&buf[i]),
195 get_unaligned_le32(&buf[i + 4]),
196 get_unaligned_le32(&buf[i + 8]),
197 get_unaligned_le32(&buf[i + 12]));
David Brownell340600a2005-04-28 13:45:25 -0700198 }
199 }
200
201 /* response goes here, right after the header */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300202 outbuf = (__le32 *)&resp[1];
203 resp->InformationBufferOffset = cpu_to_le32(16);
David Brownell340600a2005-04-28 13:45:25 -0700204
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100205 net = params->dev;
Eric Dumazet28172732010-07-07 14:58:56 -0700206 stats = dev_get_stats(net, &temp);
David Brownell15b2d2b2008-06-19 18:19:16 -0700207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 switch (OID) {
209
210 /* general oids (table 4-1) */
211
212 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000213 case RNDIS_OID_GEN_SUPPORTED_LIST:
214 pr_debug("%s: RNDIS_OID_GEN_SUPPORTED_LIST\n", __func__);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300215 length = sizeof(oid_supported_list);
216 count = length / sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 for (i = 0; i < count; i++)
Mihai Donțua1df4e42010-09-08 02:54:02 +0300218 outbuf[i] = cpu_to_le32(oid_supported_list[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 retval = 0;
220 break;
David Brownell7e27f182006-06-13 09:54:40 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000223 case RNDIS_OID_GEN_HARDWARE_STATUS:
224 pr_debug("%s: RNDIS_OID_GEN_HARDWARE_STATUS\n", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700225 /* Bogus question!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 * Hardware must be ready to receive high level protocols.
David Brownell7e27f182006-06-13 09:54:40 -0700227 * BTW:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 * reddite ergo quae sunt Caesaris Caesari
229 * et quae sunt Dei Deo!
230 */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300231 *outbuf = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 retval = 0;
233 break;
David Brownell7e27f182006-06-13 09:54:40 -0700234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000236 case RNDIS_OID_GEN_MEDIA_SUPPORTED:
237 pr_debug("%s: RNDIS_OID_GEN_MEDIA_SUPPORTED\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100238 *outbuf = cpu_to_le32(params->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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000243 case RNDIS_OID_GEN_MEDIA_IN_USE:
244 pr_debug("%s: RNDIS_OID_GEN_MEDIA_IN_USE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* one medium, one transport... (maybe you do it better) */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100246 *outbuf = cpu_to_le32(params->medium);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 retval = 0;
248 break;
David Brownell7e27f182006-06-13 09:54:40 -0700249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000251 case RNDIS_OID_GEN_MAXIMUM_FRAME_SIZE:
252 pr_debug("%s: RNDIS_OID_GEN_MAXIMUM_FRAME_SIZE\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100253 if (params->dev) {
254 *outbuf = cpu_to_le32(params->dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257 break;
David Brownell7e27f182006-06-13 09:54:40 -0700258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000260 case RNDIS_OID_GEN_LINK_SPEED:
David Brownell340600a2005-04-28 13:45:25 -0700261 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000262 pr_debug("%s: RNDIS_OID_GEN_LINK_SPEED\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100263 if (params->media_state == RNDIS_MEDIA_STATE_DISCONNECTED)
Mihai Donțua1df4e42010-09-08 02:54:02 +0300264 *outbuf = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 else
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100266 *outbuf = cpu_to_le32(params->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 retval = 0;
268 break;
269
270 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000271 case RNDIS_OID_GEN_TRANSMIT_BLOCK_SIZE:
272 pr_debug("%s: RNDIS_OID_GEN_TRANSMIT_BLOCK_SIZE\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100273 if (params->dev) {
274 *outbuf = cpu_to_le32(params->dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 retval = 0;
276 }
277 break;
David Brownell7e27f182006-06-13 09:54:40 -0700278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000280 case RNDIS_OID_GEN_RECEIVE_BLOCK_SIZE:
281 pr_debug("%s: RNDIS_OID_GEN_RECEIVE_BLOCK_SIZE\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100282 if (params->dev) {
283 *outbuf = cpu_to_le32(params->dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 retval = 0;
285 }
286 break;
David Brownell7e27f182006-06-13 09:54:40 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000289 case RNDIS_OID_GEN_VENDOR_ID:
290 pr_debug("%s: RNDIS_OID_GEN_VENDOR_ID\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100291 *outbuf = cpu_to_le32(params->vendorID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 retval = 0;
293 break;
David Brownell7e27f182006-06-13 09:54:40 -0700294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000296 case RNDIS_OID_GEN_VENDOR_DESCRIPTION:
297 pr_debug("%s: RNDIS_OID_GEN_VENDOR_DESCRIPTION\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100298 if (params->vendorDescr) {
299 length = strlen(params->vendorDescr);
300 memcpy(outbuf, params->vendorDescr, length);
Maxim Osipov037d3652010-08-21 14:54:06 +0400301 } else {
302 outbuf[0] = 0;
303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 retval = 0;
305 break;
306
Linus Walleij8cdddc32012-05-11 22:16:08 +0000307 case RNDIS_OID_GEN_VENDOR_DRIVER_VERSION:
308 pr_debug("%s: RNDIS_OID_GEN_VENDOR_DRIVER_VERSION\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* Created as LE */
David Brownell340600a2005-04-28 13:45:25 -0700310 *outbuf = rndis_driver_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 retval = 0;
312 break;
313
314 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000315 case RNDIS_OID_GEN_CURRENT_PACKET_FILTER:
316 pr_debug("%s: RNDIS_OID_GEN_CURRENT_PACKET_FILTER\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100317 *outbuf = cpu_to_le32(*params->filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 retval = 0;
319 break;
320
321 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000322 case RNDIS_OID_GEN_MAXIMUM_TOTAL_SIZE:
323 pr_debug("%s: RNDIS_OID_GEN_MAXIMUM_TOTAL_SIZE\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800324 *outbuf = cpu_to_le32(RNDIS_MAX_TOTAL_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 retval = 0;
326 break;
327
328 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000329 case RNDIS_OID_GEN_MEDIA_CONNECT_STATUS:
David Brownell340600a2005-04-28 13:45:25 -0700330 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000331 pr_debug("%s: RNDIS_OID_GEN_MEDIA_CONNECT_STATUS\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100332 *outbuf = cpu_to_le32(params->media_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 retval = 0;
334 break;
335
Linus Walleij8cdddc32012-05-11 22:16:08 +0000336 case RNDIS_OID_GEN_PHYSICAL_MEDIUM:
337 pr_debug("%s: RNDIS_OID_GEN_PHYSICAL_MEDIUM\n", __func__);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300338 *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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000346 case RNDIS_OID_GEN_MAC_OPTIONS: /* from WinME */
347 pr_debug("%s: RNDIS_OID_GEN_MAC_OPTIONS\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800348 *outbuf = cpu_to_le32(
Linus Walleije20289e2012-05-11 22:17:19 +0000349 RNDIS_MAC_OPTION_RECEIVE_SERIALIZED
350 | RNDIS_MAC_OPTION_FULL_DUPLEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 retval = 0;
352 break;
353
354 /* statistics OIDs (table 4-2) */
355
356 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000357 case RNDIS_OID_GEN_XMIT_OK:
David Brownell340600a2005-04-28 13:45:25 -0700358 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000359 pr_debug("%s: RNDIS_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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000368 case RNDIS_OID_GEN_RCV_OK:
David Brownell340600a2005-04-28 13:45:25 -0700369 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000370 pr_debug("%s: RNDIS_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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000379 case RNDIS_OID_GEN_XMIT_ERROR:
David Brownell340600a2005-04-28 13:45:25 -0700380 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000381 pr_debug("%s: RNDIS_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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000389 case RNDIS_OID_GEN_RCV_ERROR:
David Brownell340600a2005-04-28 13:45:25 -0700390 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000391 pr_debug("%s: RNDIS_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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000399 case RNDIS_OID_GEN_RCV_NO_BUFFER:
400 pr_debug("%s: RNDIS_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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000410 case RNDIS_OID_802_3_PERMANENT_ADDRESS:
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000411 pr_debug("%s: RNDIS_OID_802_3_PERMANENT_ADDRESS\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100412 if (params->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 length = ETH_ALEN;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100414 memcpy(outbuf, params->host_mac, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417 break;
David Brownell7e27f182006-06-13 09:54:40 -0700418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 /* mandatory */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000420 case RNDIS_OID_802_3_CURRENT_ADDRESS:
421 pr_debug("%s: RNDIS_OID_802_3_CURRENT_ADDRESS\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100422 if (params->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 length = ETH_ALEN;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100424 memcpy(outbuf, params->host_mac, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 retval = 0;
426 }
427 break;
David Brownell7e27f182006-06-13 09:54:40 -0700428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /* mandatory */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000430 case RNDIS_OID_802_3_MULTICAST_LIST:
431 pr_debug("%s: RNDIS_OID_802_3_MULTICAST_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /* Multicast base address only */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300433 *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 */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000438 case RNDIS_OID_802_3_MAXIMUM_LIST_SIZE:
439 pr_debug("%s: RNDIS_OID_802_3_MAXIMUM_LIST_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /* Multicast base address only */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300441 *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 Walleij4cc6c4d2012-05-11 22:16:16 +0000445 case RNDIS_OID_802_3_MAC_OPTIONS:
446 pr_debug("%s: RNDIS_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 */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000454 case RNDIS_OID_802_3_RCV_ERROR_ALIGNMENT:
455 pr_debug("%s: RNDIS_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 */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000463 case RNDIS_OID_802_3_XMIT_ONE_COLLISION:
464 pr_debug("%s: RNDIS_OID_802_3_XMIT_ONE_COLLISION\n", __func__);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300465 *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 */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000470 case RNDIS_OID_802_3_XMIT_MORE_COLLISIONS:
471 pr_debug("%s: RNDIS_OID_802_3_XMIT_MORE_COLLISIONS\n", __func__);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300472 *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:
Joe Perches3f5ad862016-09-27 09:16:59 -0700477 pr_warn("%s: query unknown OID 0x%08X\n", __func__, OID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
David Brownell340600a2005-04-28 13:45:25 -0700479 if (retval < 0)
480 length = 0;
David Brownell7e27f182006-06-13 09:54:40 -0700481
Mihai Donțua1df4e42010-09-08 02:54:02 +0300482 resp->InformationBufferLength = cpu_to_le32(length);
483 r->length = length + sizeof(*resp);
484 resp->MessageLength = cpu_to_le32(r->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return retval;
486}
487
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100488static int gen_ndis_set_resp(struct rndis_params *params, u32 OID,
489 u8 *buf, u32 buf_len, rndis_resp_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300491 rndis_set_cmplt_type *resp;
492 int i, retval = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 if (!r)
495 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300496 resp = (rndis_set_cmplt_type *)r->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (!resp)
498 return -ENOMEM;
499
David Brownell340600a2005-04-28 13:45:25 -0700500 if (buf_len && rndis_debug > 1) {
David Brownell33376c12008-08-18 17:45:07 -0700501 pr_debug("set OID %08x value, len %d:\n", OID, buf_len);
David Brownell340600a2005-04-28 13:45:25 -0700502 for (i = 0; i < buf_len; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700503 pr_debug("%03d: %08x %08x %08x %08x\n", i,
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700504 get_unaligned_le32(&buf[i]),
505 get_unaligned_le32(&buf[i + 4]),
506 get_unaligned_le32(&buf[i + 8]),
507 get_unaligned_le32(&buf[i + 12]));
David Brownell340600a2005-04-28 13:45:25 -0700508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510
511 switch (OID) {
Linus Walleij8cdddc32012-05-11 22:16:08 +0000512 case RNDIS_OID_GEN_CURRENT_PACKET_FILTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
David Brownell340600a2005-04-28 13:45:25 -0700514 /* these NDIS_PACKET_TYPE_* bitflags are shared with
515 * cdc_filter; it's not RNDIS-specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 * NDIS_PACKET_TYPE_x == USB_CDC_PACKET_TYPE_x for x in:
517 * PROMISCUOUS, DIRECTED,
518 * MULTICAST, ALL_MULTICAST, BROADCAST
519 */
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700520 *params->filter = (u16)get_unaligned_le32(buf);
Linus Walleij8cdddc32012-05-11 22:16:08 +0000521 pr_debug("%s: RNDIS_OID_GEN_CURRENT_PACKET_FILTER %08x\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800522 __func__, *params->filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /* this call has a significant side effect: it's
525 * what makes the packet flow start and stop, like
526 * activating the CDC Ethernet altsetting.
527 */
David Brownell340600a2005-04-28 13:45:25 -0700528 retval = 0;
529 if (*params->filter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 params->state = RNDIS_DATA_INITIALIZED;
531 netif_carrier_on(params->dev);
532 if (netif_running(params->dev))
Mihai Donțua1df4e42010-09-08 02:54:02 +0300533 netif_wake_queue(params->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 } else {
535 params->state = RNDIS_INITIALIZED;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300536 netif_carrier_off(params->dev);
537 netif_stop_queue(params->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539 break;
David Brownell7e27f182006-06-13 09:54:40 -0700540
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000541 case RNDIS_OID_802_3_MULTICAST_LIST:
David Brownell7e27f182006-06-13 09:54:40 -0700542 /* I think we can ignore this */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000543 pr_debug("%s: RNDIS_OID_802_3_MULTICAST_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 retval = 0;
545 break;
David Brownell340600a2005-04-28 13:45:25 -0700546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 default:
Joe Perches3f5ad862016-09-27 09:16:59 -0700548 pr_warn("%s: set unknown OID 0x%08X, size %d\n",
549 __func__, OID, buf_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
David Brownell7e27f182006-06-13 09:54:40 -0700551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return retval;
553}
554
David Brownell7e27f182006-06-13 09:54:40 -0700555/*
556 * Response Functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
558
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100559static int rndis_init_response(struct rndis_params *params,
560 rndis_init_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300562 rndis_init_cmplt_type *resp;
563 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700564
David Brownell15b2d2b2008-06-19 18:19:16 -0700565 if (!params->dev)
566 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700567
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100568 r = rndis_add_response(params, sizeof(rndis_init_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700569 if (!r)
570 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300571 resp = (rndis_init_cmplt_type *)r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700572
Linus Walleij51491162012-05-11 22:17:07 +0000573 resp->MessageType = cpu_to_le32(RNDIS_MSG_INIT_C);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300574 resp->MessageLength = cpu_to_le32(52);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300576 resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS);
577 resp->MajorVersion = cpu_to_le32(RNDIS_MAJOR_VERSION);
578 resp->MinorVersion = cpu_to_le32(RNDIS_MINOR_VERSION);
579 resp->DeviceFlags = cpu_to_le32(RNDIS_DF_CONNECTIONLESS);
580 resp->Medium = cpu_to_le32(RNDIS_MEDIUM_802_3);
581 resp->MaxPacketsPerTransfer = cpu_to_le32(1);
582 resp->MaxTransferSize = cpu_to_le32(
David Brownell15b2d2b2008-06-19 18:19:16 -0700583 params->dev->mtu
Mihai Donțua1df4e42010-09-08 02:54:02 +0300584 + sizeof(struct ethhdr)
585 + sizeof(struct rndis_packet_msg_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 + 22);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300587 resp->PacketAlignmentFactor = cpu_to_le32(0);
588 resp->AFListOffset = cpu_to_le32(0);
589 resp->AFListSize = cpu_to_le32(0);
David Brownell7e27f182006-06-13 09:54:40 -0700590
David Brownell15b2d2b2008-06-19 18:19:16 -0700591 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return 0;
593}
594
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100595static int rndis_query_response(struct rndis_params *params,
596 rndis_query_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 rndis_query_cmplt_type *resp;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300599 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700600
David Brownell33376c12008-08-18 17:45:07 -0700601 /* pr_debug("%s: OID = %08X\n", __func__, cpu_to_le32(buf->OID)); */
David Brownell15b2d2b2008-06-19 18:19:16 -0700602 if (!params->dev)
603 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700604
Shaun Tancheff87637162006-02-22 19:47:19 -0800605 /*
606 * we need more memory:
607 * gen_ndis_query_resp expects enough space for
608 * rndis_query_cmplt_type followed by data.
609 * oid_supported_list is the largest data reply
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100611 r = rndis_add_response(params,
Mihai Donțua1df4e42010-09-08 02:54:02 +0300612 sizeof(oid_supported_list) + sizeof(rndis_query_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700613 if (!r)
614 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300615 resp = (rndis_query_cmplt_type *)r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700616
Linus Walleij51491162012-05-11 22:17:07 +0000617 resp->MessageType = cpu_to_le32(RNDIS_MSG_QUERY_C);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
David Brownell7e27f182006-06-13 09:54:40 -0700619
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100620 if (gen_ndis_query_resp(params, le32_to_cpu(buf->OID),
David Brownell340600a2005-04-28 13:45:25 -0700621 le32_to_cpu(buf->InformationBufferOffset)
Mihai Donțua1df4e42010-09-08 02:54:02 +0300622 + 8 + (u8 *)buf,
David Brownell340600a2005-04-28 13:45:25 -0700623 le32_to_cpu(buf->InformationBufferLength),
624 r)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /* OID not supported */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300626 resp->Status = cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED);
627 resp->MessageLength = cpu_to_le32(sizeof *resp);
628 resp->InformationBufferLength = cpu_to_le32(0);
629 resp->InformationBufferOffset = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 } else
Mihai Donțua1df4e42010-09-08 02:54:02 +0300631 resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700632
David Brownell15b2d2b2008-06-19 18:19:16 -0700633 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return 0;
635}
636
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100637static int rndis_set_response(struct rndis_params *params,
638 rndis_set_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300640 u32 BufLength, BufOffset;
641 rndis_set_cmplt_type *resp;
642 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700643
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100644 r = rndis_add_response(params, sizeof(rndis_set_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700645 if (!r)
646 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300647 resp = (rndis_set_cmplt_type *)r->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Mihai Donțua1df4e42010-09-08 02:54:02 +0300649 BufLength = le32_to_cpu(buf->InformationBufferLength);
650 BufOffset = le32_to_cpu(buf->InformationBufferOffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
David Brownell15b2d2b2008-06-19 18:19:16 -0700652#ifdef VERBOSE_DEBUG
David Brownell33376c12008-08-18 17:45:07 -0700653 pr_debug("%s: Length: %d\n", __func__, BufLength);
654 pr_debug("%s: Offset: %d\n", __func__, BufOffset);
655 pr_debug("%s: InfoBuffer: ", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 for (i = 0; i < BufLength; i++) {
David Brownell33376c12008-08-18 17:45:07 -0700658 pr_debug("%02x ", *(((u8 *) buf) + i + 8 + BufOffset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
David Brownell7e27f182006-06-13 09:54:40 -0700660
David Brownell33376c12008-08-18 17:45:07 -0700661 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662#endif
David Brownell7e27f182006-06-13 09:54:40 -0700663
Linus Walleij51491162012-05-11 22:17:07 +0000664 resp->MessageType = cpu_to_le32(RNDIS_MSG_SET_C);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300665 resp->MessageLength = cpu_to_le32(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100667 if (gen_ndis_set_resp(params, le32_to_cpu(buf->OID),
Mihai Donțua1df4e42010-09-08 02:54:02 +0300668 ((u8 *)buf) + 8 + BufOffset, BufLength, r))
669 resp->Status = cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED);
David Brownell7e27f182006-06-13 09:54:40 -0700670 else
Mihai Donțua1df4e42010-09-08 02:54:02 +0300671 resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700672
David Brownell15b2d2b2008-06-19 18:19:16 -0700673 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return 0;
675}
676
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100677static int rndis_reset_response(struct rndis_params *params,
678 rndis_reset_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300680 rndis_reset_cmplt_type *resp;
681 rndis_resp_t *r;
Xerox Lin207707d2016-06-29 14:34:21 +0530682 u8 *xbuf;
683 u32 length;
684
685 /* drain the response queue */
686 while ((xbuf = rndis_get_next_response(params, &length)))
687 rndis_free_response(params, xbuf);
David Brownell7e27f182006-06-13 09:54:40 -0700688
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100689 r = rndis_add_response(params, sizeof(rndis_reset_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700690 if (!r)
691 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300692 resp = (rndis_reset_cmplt_type *)r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700693
Linus Walleij51491162012-05-11 22:17:07 +0000694 resp->MessageType = cpu_to_le32(RNDIS_MSG_RESET_C);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300695 resp->MessageLength = cpu_to_le32(16);
696 resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 /* resent information */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300698 resp->AddressingReset = cpu_to_le32(1);
David Brownell7e27f182006-06-13 09:54:40 -0700699
David Brownell15b2d2b2008-06-19 18:19:16 -0700700 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return 0;
702}
703
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100704static int rndis_keepalive_response(struct rndis_params *params,
Mihai Donțua1df4e42010-09-08 02:54:02 +0300705 rndis_keepalive_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300707 rndis_keepalive_cmplt_type *resp;
708 rndis_resp_t *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 /* host "should" check only in RNDIS_DATA_INITIALIZED state */
711
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100712 r = rndis_add_response(params, sizeof(rndis_keepalive_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700713 if (!r)
714 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300715 resp = (rndis_keepalive_cmplt_type *)r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700716
Linus Walleij51491162012-05-11 22:17:07 +0000717 resp->MessageType = cpu_to_le32(RNDIS_MSG_KEEPALIVE_C);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300718 resp->MessageLength = cpu_to_le32(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300720 resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700721
David Brownell15b2d2b2008-06-19 18:19:16 -0700722 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return 0;
724}
725
726
David Brownell7e27f182006-06-13 09:54:40 -0700727/*
728 * Device to Host Comunication
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100730static int rndis_indicate_status_msg(struct rndis_params *params, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300732 rndis_indicate_status_msg_type *resp;
733 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700734
David Brownell15b2d2b2008-06-19 18:19:16 -0700735 if (params->state == RNDIS_UNINITIALIZED)
David Brownell7e27f182006-06-13 09:54:40 -0700736 return -ENOTSUPP;
737
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100738 r = rndis_add_response(params, sizeof(rndis_indicate_status_msg_type));
David Brownell340600a2005-04-28 13:45:25 -0700739 if (!r)
740 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300741 resp = (rndis_indicate_status_msg_type *)r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700742
Linus Walleij51491162012-05-11 22:17:07 +0000743 resp->MessageType = cpu_to_le32(RNDIS_MSG_INDICATE);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300744 resp->MessageLength = cpu_to_le32(20);
745 resp->Status = cpu_to_le32(status);
746 resp->StatusBufferLength = cpu_to_le32(0);
747 resp->StatusBufferOffset = cpu_to_le32(0);
David Brownell7e27f182006-06-13 09:54:40 -0700748
David Brownell15b2d2b2008-06-19 18:19:16 -0700749 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return 0;
751}
752
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100753int rndis_signal_connect(struct rndis_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100755 params->media_state = RNDIS_MEDIA_STATE_CONNECTED;
756 return rndis_indicate_status_msg(params, RNDIS_STATUS_MEDIA_CONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500758EXPORT_SYMBOL_GPL(rndis_signal_connect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100760int rndis_signal_disconnect(struct rndis_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100762 params->media_state = RNDIS_MEDIA_STATE_DISCONNECTED;
763 return rndis_indicate_status_msg(params, RNDIS_STATUS_MEDIA_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500765EXPORT_SYMBOL_GPL(rndis_signal_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100767void rndis_uninit(struct rndis_params *params)
David Brownell340600a2005-04-28 13:45:25 -0700768{
David Brownell486e2df2005-05-24 17:51:52 -0700769 u8 *buf;
770 u32 length;
771
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100772 if (!params)
David Brownell340600a2005-04-28 13:45:25 -0700773 return;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100774 params->state = RNDIS_UNINITIALIZED;
David Brownell486e2df2005-05-24 17:51:52 -0700775
776 /* drain the response queue */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100777 while ((buf = rndis_get_next_response(params, &length)))
778 rndis_free_response(params, buf);
David Brownell340600a2005-04-28 13:45:25 -0700779}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500780EXPORT_SYMBOL_GPL(rndis_uninit);
David Brownell340600a2005-04-28 13:45:25 -0700781
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100782void rndis_set_host_mac(struct rndis_params *params, const u8 *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100784 params->host_mac = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500786EXPORT_SYMBOL_GPL(rndis_set_host_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
David Brownell7e27f182006-06-13 09:54:40 -0700788/*
789 * Message Parser
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100791int rndis_msg_parser(struct rndis_params *params, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 u32 MsgType, MsgLength;
794 __le32 *tmp;
David Brownell7e27f182006-06-13 09:54:40 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (!buf)
797 return -ENOMEM;
David Brownell7e27f182006-06-13 09:54:40 -0700798
Mihai Donțua1df4e42010-09-08 02:54:02 +0300799 tmp = (__le32 *)buf;
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700800 MsgType = get_unaligned_le32(tmp++);
801 MsgLength = get_unaligned_le32(tmp++);
David Brownell7e27f182006-06-13 09:54:40 -0700802
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100803 if (!params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700805
David Brownell340600a2005-04-28 13:45:25 -0700806 /* NOTE: RNDIS is *EXTREMELY* chatty ... Windows constantly polls for
807 * rx/tx statistics and link status, in addition to KEEPALIVE traffic
808 * and normal HC level polling to see if there's any IN traffic.
809 */
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 /* For USB: responses may take up to 10 seconds */
David Brownell340600a2005-04-28 13:45:25 -0700812 switch (MsgType) {
Linus Walleij51491162012-05-11 22:17:07 +0000813 case RNDIS_MSG_INIT:
814 pr_debug("%s: RNDIS_MSG_INIT\n",
Mihai Donțua1df4e42010-09-08 02:54:02 +0300815 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 params->state = RNDIS_INITIALIZED;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100817 return rndis_init_response(params, (rndis_init_msg_type *)buf);
David Brownell7e27f182006-06-13 09:54:40 -0700818
Linus Walleij51491162012-05-11 22:17:07 +0000819 case RNDIS_MSG_HALT:
820 pr_debug("%s: RNDIS_MSG_HALT\n",
Mihai Donțua1df4e42010-09-08 02:54:02 +0300821 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 params->state = RNDIS_UNINITIALIZED;
823 if (params->dev) {
Mihai Donțua1df4e42010-09-08 02:54:02 +0300824 netif_carrier_off(params->dev);
825 netif_stop_queue(params->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827 return 0;
David Brownell7e27f182006-06-13 09:54:40 -0700828
Linus Walleij51491162012-05-11 22:17:07 +0000829 case RNDIS_MSG_QUERY:
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100830 return rndis_query_response(params,
Mihai Donțua1df4e42010-09-08 02:54:02 +0300831 (rndis_query_msg_type *)buf);
David Brownell7e27f182006-06-13 09:54:40 -0700832
Linus Walleij51491162012-05-11 22:17:07 +0000833 case RNDIS_MSG_SET:
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100834 return rndis_set_response(params, (rndis_set_msg_type *)buf);
David Brownell7e27f182006-06-13 09:54:40 -0700835
Linus Walleij51491162012-05-11 22:17:07 +0000836 case RNDIS_MSG_RESET:
837 pr_debug("%s: RNDIS_MSG_RESET\n",
Mihai Donțua1df4e42010-09-08 02:54:02 +0300838 __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100839 return rndis_reset_response(params,
Mihai Donțua1df4e42010-09-08 02:54:02 +0300840 (rndis_reset_msg_type *)buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Linus Walleij51491162012-05-11 22:17:07 +0000842 case RNDIS_MSG_KEEPALIVE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 /* For USB: host does this every 5 seconds */
David Brownell340600a2005-04-28 13:45:25 -0700844 if (rndis_debug > 1)
Linus Walleij51491162012-05-11 22:17:07 +0000845 pr_debug("%s: RNDIS_MSG_KEEPALIVE\n",
Mihai Donțua1df4e42010-09-08 02:54:02 +0300846 __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100847 return rndis_keepalive_response(params,
David Brownell7e27f182006-06-13 09:54:40 -0700848 (rndis_keepalive_msg_type *)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 buf);
David Brownell7e27f182006-06-13 09:54:40 -0700850
851 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 /* At least Windows XP emits some undefined RNDIS messages.
853 * In one case those messages seemed to relate to the host
854 * suspending itself.
855 */
Joe Perches3f5ad862016-09-27 09:16:59 -0700856 pr_warn("%s: unknown RNDIS message 0x%08X len %d\n",
Mihai Donțua1df4e42010-09-08 02:54:02 +0300857 __func__, MsgType, MsgLength);
Andy Shevchenkod3091cf2012-08-07 19:07:58 +0300858 print_hex_dump_bytes(__func__, DUMP_PREFIX_OFFSET,
859 buf, MsgLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 break;
861 }
David Brownell7e27f182006-06-13 09:54:40 -0700862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return -ENOTSUPP;
864}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500865EXPORT_SYMBOL_GPL(rndis_msg_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100867static inline int rndis_get_nr(void)
868{
869 return ida_simple_get(&rndis_ida, 0, 0, GFP_KERNEL);
870}
871
872static inline void rndis_put_nr(int nr)
873{
874 ida_simple_remove(&rndis_ida, nr);
875}
876
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100877struct rndis_params *rndis_register(void (*resp_avail)(void *v), void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100879 struct rndis_params *params;
Andrzej Pietrasiewicz81dff862015-05-18 17:40:04 +0200880 int i;
David Brownell7e27f182006-06-13 09:54:40 -0700881
David Brownell15b2d2b2008-06-19 18:19:16 -0700882 if (!resp_avail)
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100883 return ERR_PTR(-EINVAL);
David Brownell15b2d2b2008-06-19 18:19:16 -0700884
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100885 i = rndis_get_nr();
886 if (i < 0) {
887 pr_debug("failed\n");
888
889 return ERR_PTR(-ENODEV);
890 }
891
892 params = kzalloc(sizeof(*params), GFP_KERNEL);
893 if (!params) {
894 rndis_put_nr(i);
895
896 return ERR_PTR(-ENOMEM);
897 }
898
899#ifdef CONFIG_USB_GADGET_DEBUG_FILES
900 {
901 struct proc_dir_entry *proc_entry;
902 char name[20];
903
904 sprintf(name, NAME_TEMPLATE, i);
905 proc_entry = proc_create_data(name, 0660, NULL,
906 &rndis_proc_fops, params);
907 if (!proc_entry) {
908 kfree(params);
909 rndis_put_nr(i);
910
911 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913 }
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100914#endif
David Brownell7e27f182006-06-13 09:54:40 -0700915
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100916 params->confignr = i;
917 params->used = 1;
918 params->state = RNDIS_UNINITIALIZED;
919 params->media_state = RNDIS_MEDIA_STATE_DISCONNECTED;
920 params->resp_avail = resp_avail;
921 params->v = v;
Geliang Tangf6281af2015-12-19 00:34:33 +0800922 INIT_LIST_HEAD(&params->resp_queue);
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100923 pr_debug("%s: configNr = %d\n", __func__, i);
924
925 return params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500927EXPORT_SYMBOL_GPL(rndis_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100929void rndis_deregister(struct rndis_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Andrzej Pietrasiewicz81dff862015-05-18 17:40:04 +0200931 int i;
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100932
Mihai Donțua1df4e42010-09-08 02:54:02 +0300933 pr_debug("%s:\n", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700934
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100935 if (!params)
936 return;
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100937
938 i = params->confignr;
939
940#ifdef CONFIG_USB_GADGET_DEBUG_FILES
941 {
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100942 char name[20];
943
944 sprintf(name, NAME_TEMPLATE, i);
945 remove_proc_entry(name, NULL);
946 }
947#endif
948
949 kfree(params);
950 rndis_put_nr(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500952EXPORT_SYMBOL_GPL(rndis_deregister);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100953int rndis_set_param_dev(struct rndis_params *params, struct net_device *dev,
954 u16 *cdc_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
David Brownell33376c12008-08-18 17:45:07 -0700956 pr_debug("%s:\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700957 if (!dev)
958 return -EINVAL;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100959 if (!params)
960 return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700961
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100962 params->dev = dev;
963 params->filter = cdc_filter;
David Brownell7e27f182006-06-13 09:54:40 -0700964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return 0;
966}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500967EXPORT_SYMBOL_GPL(rndis_set_param_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100969int rndis_set_param_vendor(struct rndis_params *params, u32 vendorID,
970 const char *vendorDescr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
David Brownell33376c12008-08-18 17:45:07 -0700972 pr_debug("%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (!vendorDescr) return -1;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100974 if (!params)
975 return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700976
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100977 params->vendorID = vendorID;
978 params->vendorDescr = vendorDescr;
David Brownell7e27f182006-06-13 09:54:40 -0700979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return 0;
981}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500982EXPORT_SYMBOL_GPL(rndis_set_param_vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100984int rndis_set_param_medium(struct rndis_params *params, u32 medium, u32 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
David Brownell33376c12008-08-18 17:45:07 -0700986 pr_debug("%s: %u %u\n", __func__, medium, speed);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100987 if (!params)
988 return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700989
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100990 params->medium = medium;
991 params->speed = speed;
David Brownell7e27f182006-06-13 09:54:40 -0700992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return 0;
994}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500995EXPORT_SYMBOL_GPL(rndis_set_param_medium);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Mihai Donțua1df4e42010-09-08 02:54:02 +0300997void rndis_add_hdr(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300999 struct rndis_packet_msg_type *header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 if (!skb)
1002 return;
Mihai Donțua1df4e42010-09-08 02:54:02 +03001003 header = (void *)skb_push(skb, sizeof(*header));
1004 memset(header, 0, sizeof *header);
Linus Walleij51491162012-05-11 22:17:07 +00001005 header->MessageType = cpu_to_le32(RNDIS_MSG_PACKET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 header->MessageLength = cpu_to_le32(skb->len);
Mihai Donțua1df4e42010-09-08 02:54:02 +03001007 header->DataOffset = cpu_to_le32(36);
1008 header->DataLength = cpu_to_le32(skb->len - sizeof(*header));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
Felipe Balbi0700faa2014-04-01 13:19:32 -05001010EXPORT_SYMBOL_GPL(rndis_add_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +01001012void rndis_free_response(struct rndis_params *params, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Geliang Tangf6281af2015-12-19 00:34:33 +08001014 rndis_resp_t *r, *n;
David Brownell7e27f182006-06-13 09:54:40 -07001015
Geliang Tangf6281af2015-12-19 00:34:33 +08001016 list_for_each_entry_safe(r, n, &params->resp_queue, list) {
Julia Lawall1c17a352016-01-25 16:21:54 +01001017 if (r->buf == buf) {
Mihai Donțua1df4e42010-09-08 02:54:02 +03001018 list_del(&r->list);
1019 kfree(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
1021 }
1022}
Felipe Balbi0700faa2014-04-01 13:19:32 -05001023EXPORT_SYMBOL_GPL(rndis_free_response);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +01001025u8 *rndis_get_next_response(struct rndis_params *params, u32 *length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
Geliang Tangf6281af2015-12-19 00:34:33 +08001027 rndis_resp_t *r, *n;
David Brownell7e27f182006-06-13 09:54:40 -07001028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (!length) return NULL;
David Brownell7e27f182006-06-13 09:54:40 -07001030
Geliang Tangf6281af2015-12-19 00:34:33 +08001031 list_for_each_entry_safe(r, n, &params->resp_queue, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (!r->send) {
1033 r->send = 1;
1034 *length = r->length;
1035 return r->buf;
1036 }
1037 }
David Brownell7e27f182006-06-13 09:54:40 -07001038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 return NULL;
1040}
Felipe Balbi0700faa2014-04-01 13:19:32 -05001041EXPORT_SYMBOL_GPL(rndis_get_next_response);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +01001043static rndis_resp_t *rndis_add_response(struct rndis_params *params, u32 length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Mihai Donțua1df4e42010-09-08 02:54:02 +03001045 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -07001046
Mihai Donțua1df4e42010-09-08 02:54:02 +03001047 /* NOTE: this gets copied into ether.c USB_BUFSIZ bytes ... */
1048 r = kmalloc(sizeof(rndis_resp_t) + length, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 if (!r) return NULL;
David Brownell7e27f182006-06-13 09:54:40 -07001050
Mihai Donțua1df4e42010-09-08 02:54:02 +03001051 r->buf = (u8 *)(r + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 r->length = length;
1053 r->send = 0;
David Brownell7e27f182006-06-13 09:54:40 -07001054
Geliang Tangf6281af2015-12-19 00:34:33 +08001055 list_add_tail(&r->list, &params->resp_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return r;
1057}
1058
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001059int rndis_rm_hdr(struct gether *port,
1060 struct sk_buff *skb,
1061 struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
David Brownell6cdee102005-04-18 17:39:34 -07001063 /* tmp points to a struct rndis_packet_msg_type */
Mihai Donțua1df4e42010-09-08 02:54:02 +03001064 __le32 *tmp = (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
David Brownell6cdee102005-04-18 17:39:34 -07001066 /* MessageType, MessageLength */
Linus Walleij51491162012-05-11 22:17:07 +00001067 if (cpu_to_le32(RNDIS_MSG_PACKET)
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001068 != get_unaligned(tmp++)) {
1069 dev_kfree_skb_any(skb);
David Brownell6cdee102005-04-18 17:39:34 -07001070 return -EINVAL;
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001071 }
David Brownell6cdee102005-04-18 17:39:34 -07001072 tmp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
David Brownell6cdee102005-04-18 17:39:34 -07001074 /* DataOffset, DataLength */
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001075 if (!skb_pull(skb, get_unaligned_le32(tmp++) + 8)) {
1076 dev_kfree_skb_any(skb);
David Brownell6cdee102005-04-18 17:39:34 -07001077 return -EOVERFLOW;
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001078 }
Harvey Harrisona5abdea2008-04-29 01:03:40 -07001079 skb_trim(skb, get_unaligned_le32(tmp++));
David Brownell6cdee102005-04-18 17:39:34 -07001080
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001081 skb_queue_tail(list, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return 0;
1083}
Felipe Balbi0700faa2014-04-01 13:19:32 -05001084EXPORT_SYMBOL_GPL(rndis_rm_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Mihai Donțua1df4e42010-09-08 02:54:02 +03001086#ifdef CONFIG_USB_GADGET_DEBUG_FILES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001088static int rndis_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001090 rndis_params *param = m->private;
David Brownell7e27f182006-06-13 09:54:40 -07001091
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001092 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 "Config Nr. %d\n"
1094 "used : %s\n"
1095 "state : %s\n"
1096 "medium : 0x%08X\n"
1097 "speed : %d\n"
1098 "cable : %s\n"
1099 "vendor ID : 0x%08X\n"
David Brownell7e27f182006-06-13 09:54:40 -07001100 "vendor : %s\n",
1101 param->confignr, (param->used) ? "y" : "n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 ({ char *s = "?";
1103 switch (param->state) {
1104 case RNDIS_UNINITIALIZED:
1105 s = "RNDIS_UNINITIALIZED"; break;
1106 case RNDIS_INITIALIZED:
1107 s = "RNDIS_INITIALIZED"; break;
1108 case RNDIS_DATA_INITIALIZED:
1109 s = "RNDIS_DATA_INITIALIZED"; break;
Joe Perches2b84f922013-10-08 16:01:37 -07001110 } s; }),
David Brownell7e27f182006-06-13 09:54:40 -07001111 param->medium,
1112 (param->media_state) ? 0 : param->speed*100,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 (param->media_state) ? "disconnected" : "connected",
David Brownell7e27f182006-06-13 09:54:40 -07001114 param->vendorID, param->vendorDescr);
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001115 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
1117
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001118static ssize_t rndis_proc_write(struct file *file, const char __user *buffer,
Mihai Donțua1df4e42010-09-08 02:54:02 +03001119 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Al Virod9dda782013-03-31 18:16:14 -04001121 rndis_params *p = PDE_DATA(file_inode(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 u32 speed = 0;
1123 int i, fl_speed = 0;
David Brownell7e27f182006-06-13 09:54:40 -07001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 for (i = 0; i < count; i++) {
1126 char c;
1127 if (get_user(c, buffer))
1128 return -EFAULT;
1129 switch (c) {
1130 case '0':
1131 case '1':
1132 case '2':
1133 case '3':
1134 case '4':
1135 case '5':
1136 case '6':
1137 case '7':
1138 case '8':
1139 case '9':
1140 fl_speed = 1;
Mihai Donțua1df4e42010-09-08 02:54:02 +03001141 speed = speed * 10 + c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 break;
1143 case 'C':
1144 case 'c':
Andrzej Pietrasiewicz868055f2015-05-18 17:40:02 +02001145 rndis_signal_connect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 break;
1147 case 'D':
1148 case 'd':
Andrzej Pietrasiewicz868055f2015-05-18 17:40:02 +02001149 rndis_signal_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 break;
David Brownell7e27f182006-06-13 09:54:40 -07001151 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (fl_speed) p->speed = speed;
David Brownell33376c12008-08-18 17:45:07 -07001153 else pr_debug("%c is not valid\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 break;
1155 }
David Brownell7e27f182006-06-13 09:54:40 -07001156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 buffer++;
1158 }
David Brownell7e27f182006-06-13 09:54:40 -07001159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 return count;
1161}
1162
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001163static int rndis_proc_open(struct inode *inode, struct file *file)
1164{
Al Virod9dda782013-03-31 18:16:14 -04001165 return single_open(file, rndis_proc_show, PDE_DATA(inode));
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001166}
1167
1168static const struct file_operations rndis_proc_fops = {
1169 .owner = THIS_MODULE,
1170 .open = rndis_proc_open,
1171 .read = seq_read,
1172 .llseek = seq_lseek,
1173 .release = single_release,
1174 .write = rndis_proc_write,
1175};
1176
Mihai Donțua1df4e42010-09-08 02:54:02 +03001177#define NAME_TEMPLATE "driver/rndis-%03d"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Mihai Donțua1df4e42010-09-08 02:54:02 +03001179#endif /* CONFIG_USB_GADGET_DEBUG_FILES */