blob: 431d5a7d737e2b0f43e062f095ed67b4605be3d4 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
David Brownell7e27f182006-06-13 09:54:40 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * RNDIS MSG parser
David Brownell7e27f182006-06-13 09:54:40 -07004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Authors: Benedikt Spranger, Pengutronix
David Brownell7e27f182006-06-13 09:54:40 -07006 * Robert Schwebel, Pengutronix
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This software was originally developed in conformance with
9 * Microsoft's Remote NDIS Specification License Agreement.
David Brownell7e27f182006-06-13 09:54:40 -070010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * 03/12/2004 Kai-Uwe Bloem <linux-development@auerswald.de>
12 * Fixed message length bug in init_response
David Brownell7e27f182006-06-13 09:54:40 -070013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * 03/25/2004 Kai-Uwe Bloem <linux-development@auerswald.de>
David Brownell7e27f182006-06-13 09:54:40 -070015 * Fixed rndis_rm_hdr length bug.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * Copyright (C) 2004 by David Brownell
18 * updates to merge with Linux 2.6, better match RNDIS spec
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/moduleparam.h>
23#include <linux/kernel.h>
24#include <linux/errno.h>
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010025#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/list.h>
27#include <linux/proc_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Alexey Dobriyane184d5f2008-05-14 16:25:13 -070029#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/netdevice.h>
31
32#include <asm/io.h>
33#include <asm/byteorder.h>
David Brownell6cdee102005-04-18 17:39:34 -070034#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Fabio Estevamae8dd0c2014-04-04 22:27:59 -030036#include "u_rndis.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
David Brownell15b2d2b2008-06-19 18:19:16 -070038#undef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include "rndis.h"
41
42
43/* The driver for your USB chip needs to support ep0 OUT to work with
44 * RNDIS, plus all three CDC Ethernet endpoints (interrupt not optional).
45 *
46 * Windows hosts need an INF file like Documentation/usb/linux.inf
47 * and will be happier if you provide the host_addr module parameter.
48 */
49
50#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static int rndis_debug = 0;
David Brownell340600a2005-04-28 13:45:25 -070052module_param (rndis_debug, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053MODULE_PARM_DESC (rndis_debug, "enable debugging");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define rndis_debug 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#endif
57
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010058#ifdef CONFIG_USB_GADGET_DEBUG_FILES
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010060#define NAME_TEMPLATE "driver/rndis-%03d"
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010062#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
63
64static DEFINE_IDA(rndis_ida);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/* Driver Version */
Mihai Donțua1df4e42010-09-08 02:54:02 +030067static const __le32 rndis_driver_version = cpu_to_le32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* Function Prototypes */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +010070static rndis_resp_t *rndis_add_response(struct rndis_params *params,
71 u32 length);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010073#ifdef CONFIG_USB_GADGET_DEBUG_FILES
74
Alexey Dobriyan97a32532020-02-03 17:37:17 -080075static const struct proc_ops rndis_proc_ops;
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +010076
77#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
David Brownell340600a2005-04-28 13:45:25 -070079/* supported OIDs */
Anson Jacob97f01172016-11-11 19:07:01 -050080static const u32 oid_supported_list[] = {
David Brownell340600a2005-04-28 13:45:25 -070081 /* the general stuff */
Linus Walleij8cdddc32012-05-11 22:16:08 +000082 RNDIS_OID_GEN_SUPPORTED_LIST,
83 RNDIS_OID_GEN_HARDWARE_STATUS,
84 RNDIS_OID_GEN_MEDIA_SUPPORTED,
85 RNDIS_OID_GEN_MEDIA_IN_USE,
86 RNDIS_OID_GEN_MAXIMUM_FRAME_SIZE,
87 RNDIS_OID_GEN_LINK_SPEED,
88 RNDIS_OID_GEN_TRANSMIT_BLOCK_SIZE,
89 RNDIS_OID_GEN_RECEIVE_BLOCK_SIZE,
90 RNDIS_OID_GEN_VENDOR_ID,
91 RNDIS_OID_GEN_VENDOR_DESCRIPTION,
92 RNDIS_OID_GEN_VENDOR_DRIVER_VERSION,
93 RNDIS_OID_GEN_CURRENT_PACKET_FILTER,
94 RNDIS_OID_GEN_MAXIMUM_TOTAL_SIZE,
95 RNDIS_OID_GEN_MEDIA_CONNECT_STATUS,
96 RNDIS_OID_GEN_PHYSICAL_MEDIUM,
David Brownell7e27f182006-06-13 09:54:40 -070097
David Brownell340600a2005-04-28 13:45:25 -070098 /* the statistical stuff */
Linus Walleij8cdddc32012-05-11 22:16:08 +000099 RNDIS_OID_GEN_XMIT_OK,
100 RNDIS_OID_GEN_RCV_OK,
101 RNDIS_OID_GEN_XMIT_ERROR,
102 RNDIS_OID_GEN_RCV_ERROR,
103 RNDIS_OID_GEN_RCV_NO_BUFFER,
David Brownell340600a2005-04-28 13:45:25 -0700104#ifdef RNDIS_OPTIONAL_STATS
Linus Walleij8cdddc32012-05-11 22:16:08 +0000105 RNDIS_OID_GEN_DIRECTED_BYTES_XMIT,
106 RNDIS_OID_GEN_DIRECTED_FRAMES_XMIT,
107 RNDIS_OID_GEN_MULTICAST_BYTES_XMIT,
108 RNDIS_OID_GEN_MULTICAST_FRAMES_XMIT,
109 RNDIS_OID_GEN_BROADCAST_BYTES_XMIT,
110 RNDIS_OID_GEN_BROADCAST_FRAMES_XMIT,
111 RNDIS_OID_GEN_DIRECTED_BYTES_RCV,
112 RNDIS_OID_GEN_DIRECTED_FRAMES_RCV,
113 RNDIS_OID_GEN_MULTICAST_BYTES_RCV,
114 RNDIS_OID_GEN_MULTICAST_FRAMES_RCV,
115 RNDIS_OID_GEN_BROADCAST_BYTES_RCV,
116 RNDIS_OID_GEN_BROADCAST_FRAMES_RCV,
117 RNDIS_OID_GEN_RCV_CRC_ERROR,
118 RNDIS_OID_GEN_TRANSMIT_QUEUE_LENGTH,
David Brownell340600a2005-04-28 13:45:25 -0700119#endif /* RNDIS_OPTIONAL_STATS */
120
David Brownell7e27f182006-06-13 09:54:40 -0700121 /* mandatory 802.3 */
David Brownell340600a2005-04-28 13:45:25 -0700122 /* the general stuff */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000123 RNDIS_OID_802_3_PERMANENT_ADDRESS,
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000124 RNDIS_OID_802_3_CURRENT_ADDRESS,
125 RNDIS_OID_802_3_MULTICAST_LIST,
126 RNDIS_OID_802_3_MAC_OPTIONS,
127 RNDIS_OID_802_3_MAXIMUM_LIST_SIZE,
David Brownell7e27f182006-06-13 09:54:40 -0700128
David Brownell340600a2005-04-28 13:45:25 -0700129 /* the statistical stuff */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000130 RNDIS_OID_802_3_RCV_ERROR_ALIGNMENT,
131 RNDIS_OID_802_3_XMIT_ONE_COLLISION,
132 RNDIS_OID_802_3_XMIT_MORE_COLLISIONS,
David Brownell340600a2005-04-28 13:45:25 -0700133#ifdef RNDIS_OPTIONAL_STATS
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000134 RNDIS_OID_802_3_XMIT_DEFERRED,
135 RNDIS_OID_802_3_XMIT_MAX_COLLISIONS,
136 RNDIS_OID_802_3_RCV_OVERRUN,
137 RNDIS_OID_802_3_XMIT_UNDERRUN,
138 RNDIS_OID_802_3_XMIT_HEARTBEAT_FAILURE,
139 RNDIS_OID_802_3_XMIT_TIMES_CRS_LOST,
140 RNDIS_OID_802_3_XMIT_LATE_COLLISIONS,
David Brownell340600a2005-04-28 13:45:25 -0700141#endif /* RNDIS_OPTIONAL_STATS */
142
143#ifdef RNDIS_PM
David Brownell15b2d2b2008-06-19 18:19:16 -0700144 /* PM and wakeup are "mandatory" for USB, but the RNDIS specs
145 * don't say what they mean ... and the NDIS specs are often
146 * confusing and/or ambiguous in this context. (That is, more
147 * so than their specs for the other OIDs.)
148 *
149 * FIXME someone who knows what these should do, please
150 * implement them!
151 */
David Brownell340600a2005-04-28 13:45:25 -0700152
153 /* power management */
154 OID_PNP_CAPABILITIES,
155 OID_PNP_QUERY_POWER,
156 OID_PNP_SET_POWER,
157
158#ifdef RNDIS_WAKEUP
159 /* wake up host */
160 OID_PNP_ENABLE_WAKE_UP,
161 OID_PNP_ADD_WAKE_UP_PATTERN,
162 OID_PNP_REMOVE_WAKE_UP_PATTERN,
163#endif /* RNDIS_WAKEUP */
164#endif /* RNDIS_PM */
165};
166
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/* NDIS Functions */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100169static int gen_ndis_query_resp(struct rndis_params *params, u32 OID, u8 *buf,
Mihai Donțua1df4e42010-09-08 02:54:02 +0300170 unsigned buf_len, rndis_resp_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300172 int retval = -ENOTSUPP;
173 u32 length = 4; /* usually */
174 __le32 *outbuf;
175 int i, count;
176 rndis_query_cmplt_type *resp;
177 struct net_device *net;
Eric Dumazet28172732010-07-07 14:58:56 -0700178 struct rtnl_link_stats64 temp;
David S. Millerfdb93f8a2010-06-15 21:50:14 -0700179 const struct rtnl_link_stats64 *stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 if (!r) return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300182 resp = (rndis_query_cmplt_type *)r->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 if (!resp) return -ENOMEM;
David Brownell340600a2005-04-28 13:45:25 -0700185
186 if (buf_len && rndis_debug > 1) {
David Brownell33376c12008-08-18 17:45:07 -0700187 pr_debug("query OID %08x value, len %d:\n", OID, buf_len);
David Brownell340600a2005-04-28 13:45:25 -0700188 for (i = 0; i < buf_len; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700189 pr_debug("%03d: %08x %08x %08x %08x\n", i,
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700190 get_unaligned_le32(&buf[i]),
191 get_unaligned_le32(&buf[i + 4]),
192 get_unaligned_le32(&buf[i + 8]),
193 get_unaligned_le32(&buf[i + 12]));
David Brownell340600a2005-04-28 13:45:25 -0700194 }
195 }
196
197 /* response goes here, right after the header */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300198 outbuf = (__le32 *)&resp[1];
199 resp->InformationBufferOffset = cpu_to_le32(16);
David Brownell340600a2005-04-28 13:45:25 -0700200
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100201 net = params->dev;
Eric Dumazet28172732010-07-07 14:58:56 -0700202 stats = dev_get_stats(net, &temp);
David Brownell15b2d2b2008-06-19 18:19:16 -0700203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 switch (OID) {
205
206 /* general oids (table 4-1) */
207
208 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000209 case RNDIS_OID_GEN_SUPPORTED_LIST:
210 pr_debug("%s: RNDIS_OID_GEN_SUPPORTED_LIST\n", __func__);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300211 length = sizeof(oid_supported_list);
212 count = length / sizeof(u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 for (i = 0; i < count; i++)
Mihai Donțua1df4e42010-09-08 02:54:02 +0300214 outbuf[i] = cpu_to_le32(oid_supported_list[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 retval = 0;
216 break;
David Brownell7e27f182006-06-13 09:54:40 -0700217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000219 case RNDIS_OID_GEN_HARDWARE_STATUS:
220 pr_debug("%s: RNDIS_OID_GEN_HARDWARE_STATUS\n", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700221 /* Bogus question!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 * Hardware must be ready to receive high level protocols.
David Brownell7e27f182006-06-13 09:54:40 -0700223 * BTW:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 * reddite ergo quae sunt Caesaris Caesari
225 * et quae sunt Dei Deo!
226 */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300227 *outbuf = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 retval = 0;
229 break;
David Brownell7e27f182006-06-13 09:54:40 -0700230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000232 case RNDIS_OID_GEN_MEDIA_SUPPORTED:
233 pr_debug("%s: RNDIS_OID_GEN_MEDIA_SUPPORTED\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100234 *outbuf = cpu_to_le32(params->medium);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 retval = 0;
236 break;
David Brownell7e27f182006-06-13 09:54:40 -0700237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000239 case RNDIS_OID_GEN_MEDIA_IN_USE:
240 pr_debug("%s: RNDIS_OID_GEN_MEDIA_IN_USE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /* one medium, one transport... (maybe you do it better) */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100242 *outbuf = cpu_to_le32(params->medium);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 retval = 0;
244 break;
David Brownell7e27f182006-06-13 09:54:40 -0700245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000247 case RNDIS_OID_GEN_MAXIMUM_FRAME_SIZE:
248 pr_debug("%s: RNDIS_OID_GEN_MAXIMUM_FRAME_SIZE\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100249 if (params->dev) {
250 *outbuf = cpu_to_le32(params->dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 break;
David Brownell7e27f182006-06-13 09:54:40 -0700254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000256 case RNDIS_OID_GEN_LINK_SPEED:
David Brownell340600a2005-04-28 13:45:25 -0700257 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000258 pr_debug("%s: RNDIS_OID_GEN_LINK_SPEED\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100259 if (params->media_state == RNDIS_MEDIA_STATE_DISCONNECTED)
Mihai Donțua1df4e42010-09-08 02:54:02 +0300260 *outbuf = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 else
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100262 *outbuf = cpu_to_le32(params->speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 retval = 0;
264 break;
265
266 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000267 case RNDIS_OID_GEN_TRANSMIT_BLOCK_SIZE:
268 pr_debug("%s: RNDIS_OID_GEN_TRANSMIT_BLOCK_SIZE\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100269 if (params->dev) {
270 *outbuf = cpu_to_le32(params->dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 retval = 0;
272 }
273 break;
David Brownell7e27f182006-06-13 09:54:40 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000276 case RNDIS_OID_GEN_RECEIVE_BLOCK_SIZE:
277 pr_debug("%s: RNDIS_OID_GEN_RECEIVE_BLOCK_SIZE\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100278 if (params->dev) {
279 *outbuf = cpu_to_le32(params->dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 retval = 0;
281 }
282 break;
David Brownell7e27f182006-06-13 09:54:40 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000285 case RNDIS_OID_GEN_VENDOR_ID:
286 pr_debug("%s: RNDIS_OID_GEN_VENDOR_ID\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100287 *outbuf = cpu_to_le32(params->vendorID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 retval = 0;
289 break;
David Brownell7e27f182006-06-13 09:54:40 -0700290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000292 case RNDIS_OID_GEN_VENDOR_DESCRIPTION:
293 pr_debug("%s: RNDIS_OID_GEN_VENDOR_DESCRIPTION\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100294 if (params->vendorDescr) {
295 length = strlen(params->vendorDescr);
296 memcpy(outbuf, params->vendorDescr, length);
Maxim Osipov037d3652010-08-21 14:54:06 +0400297 } else {
298 outbuf[0] = 0;
299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 retval = 0;
301 break;
302
Linus Walleij8cdddc32012-05-11 22:16:08 +0000303 case RNDIS_OID_GEN_VENDOR_DRIVER_VERSION:
304 pr_debug("%s: RNDIS_OID_GEN_VENDOR_DRIVER_VERSION\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /* Created as LE */
David Brownell340600a2005-04-28 13:45:25 -0700306 *outbuf = rndis_driver_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 retval = 0;
308 break;
309
310 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000311 case RNDIS_OID_GEN_CURRENT_PACKET_FILTER:
312 pr_debug("%s: RNDIS_OID_GEN_CURRENT_PACKET_FILTER\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100313 *outbuf = cpu_to_le32(*params->filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 retval = 0;
315 break;
316
317 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000318 case RNDIS_OID_GEN_MAXIMUM_TOTAL_SIZE:
319 pr_debug("%s: RNDIS_OID_GEN_MAXIMUM_TOTAL_SIZE\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800320 *outbuf = cpu_to_le32(RNDIS_MAX_TOTAL_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 retval = 0;
322 break;
323
324 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000325 case RNDIS_OID_GEN_MEDIA_CONNECT_STATUS:
David Brownell340600a2005-04-28 13:45:25 -0700326 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000327 pr_debug("%s: RNDIS_OID_GEN_MEDIA_CONNECT_STATUS\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100328 *outbuf = cpu_to_le32(params->media_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 retval = 0;
330 break;
331
Linus Walleij8cdddc32012-05-11 22:16:08 +0000332 case RNDIS_OID_GEN_PHYSICAL_MEDIUM:
333 pr_debug("%s: RNDIS_OID_GEN_PHYSICAL_MEDIUM\n", __func__);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300334 *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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000342 case RNDIS_OID_GEN_MAC_OPTIONS: /* from WinME */
343 pr_debug("%s: RNDIS_OID_GEN_MAC_OPTIONS\n", __func__);
Harvey Harrison35c26c22009-02-14 22:56:56 -0800344 *outbuf = cpu_to_le32(
Linus Walleije20289e2012-05-11 22:17:19 +0000345 RNDIS_MAC_OPTION_RECEIVE_SERIALIZED
346 | RNDIS_MAC_OPTION_FULL_DUPLEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 retval = 0;
348 break;
349
350 /* statistics OIDs (table 4-2) */
351
352 /* mandatory */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000353 case RNDIS_OID_GEN_XMIT_OK:
David Brownell340600a2005-04-28 13:45:25 -0700354 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000355 pr_debug("%s: RNDIS_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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000364 case RNDIS_OID_GEN_RCV_OK:
David Brownell340600a2005-04-28 13:45:25 -0700365 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000366 pr_debug("%s: RNDIS_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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000375 case RNDIS_OID_GEN_XMIT_ERROR:
David Brownell340600a2005-04-28 13:45:25 -0700376 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000377 pr_debug("%s: RNDIS_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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000385 case RNDIS_OID_GEN_RCV_ERROR:
David Brownell340600a2005-04-28 13:45:25 -0700386 if (rndis_debug > 1)
Linus Walleij8cdddc32012-05-11 22:16:08 +0000387 pr_debug("%s: RNDIS_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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000395 case RNDIS_OID_GEN_RCV_NO_BUFFER:
396 pr_debug("%s: RNDIS_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 */
Linus Walleij8cdddc32012-05-11 22:16:08 +0000406 case RNDIS_OID_802_3_PERMANENT_ADDRESS:
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000407 pr_debug("%s: RNDIS_OID_802_3_PERMANENT_ADDRESS\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100408 if (params->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 length = ETH_ALEN;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100410 memcpy(outbuf, params->host_mac, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 break;
David Brownell7e27f182006-06-13 09:54:40 -0700414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /* mandatory */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000416 case RNDIS_OID_802_3_CURRENT_ADDRESS:
417 pr_debug("%s: RNDIS_OID_802_3_CURRENT_ADDRESS\n", __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100418 if (params->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 length = ETH_ALEN;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100420 memcpy(outbuf, params->host_mac, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 retval = 0;
422 }
423 break;
David Brownell7e27f182006-06-13 09:54:40 -0700424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /* mandatory */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000426 case RNDIS_OID_802_3_MULTICAST_LIST:
427 pr_debug("%s: RNDIS_OID_802_3_MULTICAST_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 /* Multicast base address only */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300429 *outbuf = cpu_to_le32(0xE0000000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 retval = 0;
431 break;
David Brownell7e27f182006-06-13 09:54:40 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 /* mandatory */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000434 case RNDIS_OID_802_3_MAXIMUM_LIST_SIZE:
435 pr_debug("%s: RNDIS_OID_802_3_MAXIMUM_LIST_SIZE\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /* Multicast base address only */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300437 *outbuf = cpu_to_le32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 retval = 0;
439 break;
David Brownell7e27f182006-06-13 09:54:40 -0700440
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000441 case RNDIS_OID_802_3_MAC_OPTIONS:
442 pr_debug("%s: RNDIS_OID_802_3_MAC_OPTIONS\n", __func__);
Qiuping Chen6bc21462009-07-01 03:49:29 -0700443 *outbuf = cpu_to_le32(0);
444 retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 break;
446
447 /* ieee802.3 statistics OIDs (table 4-4) */
448
449 /* mandatory */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000450 case RNDIS_OID_802_3_RCV_ERROR_ALIGNMENT:
451 pr_debug("%s: RNDIS_OID_802_3_RCV_ERROR_ALIGNMENT\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700452 if (stats) {
453 *outbuf = cpu_to_le32(stats->rx_frame_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 retval = 0;
455 }
456 break;
David Brownell7e27f182006-06-13 09:54:40 -0700457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* mandatory */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000459 case RNDIS_OID_802_3_XMIT_ONE_COLLISION:
460 pr_debug("%s: RNDIS_OID_802_3_XMIT_ONE_COLLISION\n", __func__);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300461 *outbuf = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 retval = 0;
463 break;
David Brownell7e27f182006-06-13 09:54:40 -0700464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /* mandatory */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000466 case RNDIS_OID_802_3_XMIT_MORE_COLLISIONS:
467 pr_debug("%s: RNDIS_OID_802_3_XMIT_MORE_COLLISIONS\n", __func__);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300468 *outbuf = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 retval = 0;
470 break;
David Brownell7e27f182006-06-13 09:54:40 -0700471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 default:
Joe Perches3f5ad862016-09-27 09:16:59 -0700473 pr_warn("%s: query unknown OID 0x%08X\n", __func__, OID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 }
David Brownell340600a2005-04-28 13:45:25 -0700475 if (retval < 0)
476 length = 0;
David Brownell7e27f182006-06-13 09:54:40 -0700477
Mihai Donțua1df4e42010-09-08 02:54:02 +0300478 resp->InformationBufferLength = cpu_to_le32(length);
479 r->length = length + sizeof(*resp);
480 resp->MessageLength = cpu_to_le32(r->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return retval;
482}
483
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100484static int gen_ndis_set_resp(struct rndis_params *params, u32 OID,
485 u8 *buf, u32 buf_len, rndis_resp_t *r)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300487 rndis_set_cmplt_type *resp;
488 int i, retval = -ENOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 if (!r)
491 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300492 resp = (rndis_set_cmplt_type *)r->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (!resp)
494 return -ENOMEM;
495
David Brownell340600a2005-04-28 13:45:25 -0700496 if (buf_len && rndis_debug > 1) {
David Brownell33376c12008-08-18 17:45:07 -0700497 pr_debug("set OID %08x value, len %d:\n", OID, buf_len);
David Brownell340600a2005-04-28 13:45:25 -0700498 for (i = 0; i < buf_len; i += 16) {
David Brownell33376c12008-08-18 17:45:07 -0700499 pr_debug("%03d: %08x %08x %08x %08x\n", i,
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700500 get_unaligned_le32(&buf[i]),
501 get_unaligned_le32(&buf[i + 4]),
502 get_unaligned_le32(&buf[i + 8]),
503 get_unaligned_le32(&buf[i + 12]));
David Brownell340600a2005-04-28 13:45:25 -0700504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
507 switch (OID) {
Linus Walleij8cdddc32012-05-11 22:16:08 +0000508 case RNDIS_OID_GEN_CURRENT_PACKET_FILTER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
David Brownell340600a2005-04-28 13:45:25 -0700510 /* these NDIS_PACKET_TYPE_* bitflags are shared with
511 * cdc_filter; it's not RNDIS-specific
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * NDIS_PACKET_TYPE_x == USB_CDC_PACKET_TYPE_x for x in:
513 * PROMISCUOUS, DIRECTED,
514 * MULTICAST, ALL_MULTICAST, BROADCAST
515 */
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700516 *params->filter = (u16)get_unaligned_le32(buf);
Linus Walleij8cdddc32012-05-11 22:16:08 +0000517 pr_debug("%s: RNDIS_OID_GEN_CURRENT_PACKET_FILTER %08x\n",
Harvey Harrison441b62c2008-03-03 16:08:34 -0800518 __func__, *params->filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 /* this call has a significant side effect: it's
521 * what makes the packet flow start and stop, like
522 * activating the CDC Ethernet altsetting.
523 */
David Brownell340600a2005-04-28 13:45:25 -0700524 retval = 0;
525 if (*params->filter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 params->state = RNDIS_DATA_INITIALIZED;
527 netif_carrier_on(params->dev);
528 if (netif_running(params->dev))
Mihai Donțua1df4e42010-09-08 02:54:02 +0300529 netif_wake_queue(params->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 } else {
531 params->state = RNDIS_INITIALIZED;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300532 netif_carrier_off(params->dev);
533 netif_stop_queue(params->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535 break;
David Brownell7e27f182006-06-13 09:54:40 -0700536
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000537 case RNDIS_OID_802_3_MULTICAST_LIST:
David Brownell7e27f182006-06-13 09:54:40 -0700538 /* I think we can ignore this */
Linus Walleij4cc6c4d2012-05-11 22:16:16 +0000539 pr_debug("%s: RNDIS_OID_802_3_MULTICAST_LIST\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 retval = 0;
541 break;
David Brownell340600a2005-04-28 13:45:25 -0700542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 default:
Joe Perches3f5ad862016-09-27 09:16:59 -0700544 pr_warn("%s: set unknown OID 0x%08X, size %d\n",
545 __func__, OID, buf_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
David Brownell7e27f182006-06-13 09:54:40 -0700547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return retval;
549}
550
David Brownell7e27f182006-06-13 09:54:40 -0700551/*
552 * Response Functions
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 */
554
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100555static int rndis_init_response(struct rndis_params *params,
556 rndis_init_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300558 rndis_init_cmplt_type *resp;
559 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700560
David Brownell15b2d2b2008-06-19 18:19:16 -0700561 if (!params->dev)
562 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700563
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100564 r = rndis_add_response(params, sizeof(rndis_init_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700565 if (!r)
566 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300567 resp = (rndis_init_cmplt_type *)r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700568
Linus Walleij51491162012-05-11 22:17:07 +0000569 resp->MessageType = cpu_to_le32(RNDIS_MSG_INIT_C);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300570 resp->MessageLength = cpu_to_le32(52);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300572 resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS);
573 resp->MajorVersion = cpu_to_le32(RNDIS_MAJOR_VERSION);
574 resp->MinorVersion = cpu_to_le32(RNDIS_MINOR_VERSION);
575 resp->DeviceFlags = cpu_to_le32(RNDIS_DF_CONNECTIONLESS);
576 resp->Medium = cpu_to_le32(RNDIS_MEDIUM_802_3);
577 resp->MaxPacketsPerTransfer = cpu_to_le32(1);
578 resp->MaxTransferSize = cpu_to_le32(
David Brownell15b2d2b2008-06-19 18:19:16 -0700579 params->dev->mtu
Mihai Donțua1df4e42010-09-08 02:54:02 +0300580 + sizeof(struct ethhdr)
581 + sizeof(struct rndis_packet_msg_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 + 22);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300583 resp->PacketAlignmentFactor = cpu_to_le32(0);
584 resp->AFListOffset = cpu_to_le32(0);
585 resp->AFListSize = cpu_to_le32(0);
David Brownell7e27f182006-06-13 09:54:40 -0700586
David Brownell15b2d2b2008-06-19 18:19:16 -0700587 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return 0;
589}
590
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100591static int rndis_query_response(struct rndis_params *params,
592 rndis_query_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 rndis_query_cmplt_type *resp;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300595 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700596
David Brownell33376c12008-08-18 17:45:07 -0700597 /* pr_debug("%s: OID = %08X\n", __func__, cpu_to_le32(buf->OID)); */
David Brownell15b2d2b2008-06-19 18:19:16 -0700598 if (!params->dev)
599 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700600
Shaun Tancheff87637162006-02-22 19:47:19 -0800601 /*
602 * we need more memory:
603 * gen_ndis_query_resp expects enough space for
604 * rndis_query_cmplt_type followed by data.
605 * oid_supported_list is the largest data reply
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100607 r = rndis_add_response(params,
Mihai Donțua1df4e42010-09-08 02:54:02 +0300608 sizeof(oid_supported_list) + sizeof(rndis_query_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700609 if (!r)
610 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300611 resp = (rndis_query_cmplt_type *)r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700612
Linus Walleij51491162012-05-11 22:17:07 +0000613 resp->MessageType = cpu_to_le32(RNDIS_MSG_QUERY_C);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
David Brownell7e27f182006-06-13 09:54:40 -0700615
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100616 if (gen_ndis_query_resp(params, le32_to_cpu(buf->OID),
David Brownell340600a2005-04-28 13:45:25 -0700617 le32_to_cpu(buf->InformationBufferOffset)
Mihai Donțua1df4e42010-09-08 02:54:02 +0300618 + 8 + (u8 *)buf,
David Brownell340600a2005-04-28 13:45:25 -0700619 le32_to_cpu(buf->InformationBufferLength),
620 r)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /* OID not supported */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300622 resp->Status = cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED);
623 resp->MessageLength = cpu_to_le32(sizeof *resp);
624 resp->InformationBufferLength = cpu_to_le32(0);
625 resp->InformationBufferOffset = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 } else
Mihai Donțua1df4e42010-09-08 02:54:02 +0300627 resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700628
David Brownell15b2d2b2008-06-19 18:19:16 -0700629 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return 0;
631}
632
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100633static int rndis_set_response(struct rndis_params *params,
634 rndis_set_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300636 u32 BufLength, BufOffset;
637 rndis_set_cmplt_type *resp;
638 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700639
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100640 r = rndis_add_response(params, sizeof(rndis_set_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700641 if (!r)
642 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300643 resp = (rndis_set_cmplt_type *)r->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Mihai Donțua1df4e42010-09-08 02:54:02 +0300645 BufLength = le32_to_cpu(buf->InformationBufferLength);
646 BufOffset = le32_to_cpu(buf->InformationBufferOffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
David Brownell15b2d2b2008-06-19 18:19:16 -0700648#ifdef VERBOSE_DEBUG
David Brownell33376c12008-08-18 17:45:07 -0700649 pr_debug("%s: Length: %d\n", __func__, BufLength);
650 pr_debug("%s: Offset: %d\n", __func__, BufOffset);
651 pr_debug("%s: InfoBuffer: ", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 for (i = 0; i < BufLength; i++) {
David Brownell33376c12008-08-18 17:45:07 -0700654 pr_debug("%02x ", *(((u8 *) buf) + i + 8 + BufOffset));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
David Brownell7e27f182006-06-13 09:54:40 -0700656
David Brownell33376c12008-08-18 17:45:07 -0700657 pr_debug("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658#endif
David Brownell7e27f182006-06-13 09:54:40 -0700659
Linus Walleij51491162012-05-11 22:17:07 +0000660 resp->MessageType = cpu_to_le32(RNDIS_MSG_SET_C);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300661 resp->MessageLength = cpu_to_le32(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100663 if (gen_ndis_set_resp(params, le32_to_cpu(buf->OID),
Mihai Donțua1df4e42010-09-08 02:54:02 +0300664 ((u8 *)buf) + 8 + BufOffset, BufLength, r))
665 resp->Status = cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED);
David Brownell7e27f182006-06-13 09:54:40 -0700666 else
Mihai Donțua1df4e42010-09-08 02:54:02 +0300667 resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700668
David Brownell15b2d2b2008-06-19 18:19:16 -0700669 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return 0;
671}
672
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100673static int rndis_reset_response(struct rndis_params *params,
674 rndis_reset_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300676 rndis_reset_cmplt_type *resp;
677 rndis_resp_t *r;
Xerox Lin207707d2016-06-29 14:34:21 +0530678 u8 *xbuf;
679 u32 length;
680
681 /* drain the response queue */
682 while ((xbuf = rndis_get_next_response(params, &length)))
683 rndis_free_response(params, xbuf);
David Brownell7e27f182006-06-13 09:54:40 -0700684
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100685 r = rndis_add_response(params, sizeof(rndis_reset_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700686 if (!r)
687 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300688 resp = (rndis_reset_cmplt_type *)r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700689
Linus Walleij51491162012-05-11 22:17:07 +0000690 resp->MessageType = cpu_to_le32(RNDIS_MSG_RESET_C);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300691 resp->MessageLength = cpu_to_le32(16);
692 resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* resent information */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300694 resp->AddressingReset = cpu_to_le32(1);
David Brownell7e27f182006-06-13 09:54:40 -0700695
David Brownell15b2d2b2008-06-19 18:19:16 -0700696 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return 0;
698}
699
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100700static int rndis_keepalive_response(struct rndis_params *params,
Mihai Donțua1df4e42010-09-08 02:54:02 +0300701 rndis_keepalive_msg_type *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300703 rndis_keepalive_cmplt_type *resp;
704 rndis_resp_t *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 /* host "should" check only in RNDIS_DATA_INITIALIZED state */
707
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100708 r = rndis_add_response(params, sizeof(rndis_keepalive_cmplt_type));
David Brownell340600a2005-04-28 13:45:25 -0700709 if (!r)
710 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300711 resp = (rndis_keepalive_cmplt_type *)r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700712
Linus Walleij51491162012-05-11 22:17:07 +0000713 resp->MessageType = cpu_to_le32(RNDIS_MSG_KEEPALIVE_C);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300714 resp->MessageLength = cpu_to_le32(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 resp->RequestID = buf->RequestID; /* Still LE in msg buffer */
Mihai Donțua1df4e42010-09-08 02:54:02 +0300716 resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS);
David Brownell7e27f182006-06-13 09:54:40 -0700717
David Brownell15b2d2b2008-06-19 18:19:16 -0700718 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return 0;
720}
721
722
David Brownell7e27f182006-06-13 09:54:40 -0700723/*
724 * Device to Host Comunication
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100726static int rndis_indicate_status_msg(struct rndis_params *params, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300728 rndis_indicate_status_msg_type *resp;
729 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -0700730
David Brownell15b2d2b2008-06-19 18:19:16 -0700731 if (params->state == RNDIS_UNINITIALIZED)
David Brownell7e27f182006-06-13 09:54:40 -0700732 return -ENOTSUPP;
733
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100734 r = rndis_add_response(params, sizeof(rndis_indicate_status_msg_type));
David Brownell340600a2005-04-28 13:45:25 -0700735 if (!r)
736 return -ENOMEM;
Mihai Donțua1df4e42010-09-08 02:54:02 +0300737 resp = (rndis_indicate_status_msg_type *)r->buf;
David Brownell7e27f182006-06-13 09:54:40 -0700738
Linus Walleij51491162012-05-11 22:17:07 +0000739 resp->MessageType = cpu_to_le32(RNDIS_MSG_INDICATE);
Mihai Donțua1df4e42010-09-08 02:54:02 +0300740 resp->MessageLength = cpu_to_le32(20);
741 resp->Status = cpu_to_le32(status);
742 resp->StatusBufferLength = cpu_to_le32(0);
743 resp->StatusBufferOffset = cpu_to_le32(0);
David Brownell7e27f182006-06-13 09:54:40 -0700744
David Brownell15b2d2b2008-06-19 18:19:16 -0700745 params->resp_avail(params->v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return 0;
747}
748
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100749int rndis_signal_connect(struct rndis_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100751 params->media_state = RNDIS_MEDIA_STATE_CONNECTED;
752 return rndis_indicate_status_msg(params, RNDIS_STATUS_MEDIA_CONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500754EXPORT_SYMBOL_GPL(rndis_signal_connect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100756int rndis_signal_disconnect(struct rndis_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100758 params->media_state = RNDIS_MEDIA_STATE_DISCONNECTED;
759 return rndis_indicate_status_msg(params, RNDIS_STATUS_MEDIA_DISCONNECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500761EXPORT_SYMBOL_GPL(rndis_signal_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100763void rndis_uninit(struct rndis_params *params)
David Brownell340600a2005-04-28 13:45:25 -0700764{
David Brownell486e2df2005-05-24 17:51:52 -0700765 u8 *buf;
766 u32 length;
767
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100768 if (!params)
David Brownell340600a2005-04-28 13:45:25 -0700769 return;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100770 params->state = RNDIS_UNINITIALIZED;
David Brownell486e2df2005-05-24 17:51:52 -0700771
772 /* drain the response queue */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100773 while ((buf = rndis_get_next_response(params, &length)))
774 rndis_free_response(params, buf);
David Brownell340600a2005-04-28 13:45:25 -0700775}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500776EXPORT_SYMBOL_GPL(rndis_uninit);
David Brownell340600a2005-04-28 13:45:25 -0700777
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100778void rndis_set_host_mac(struct rndis_params *params, const u8 *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100780 params->host_mac = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500782EXPORT_SYMBOL_GPL(rndis_set_host_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
David Brownell7e27f182006-06-13 09:54:40 -0700784/*
785 * Message Parser
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 */
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100787int rndis_msg_parser(struct rndis_params *params, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
789 u32 MsgType, MsgLength;
790 __le32 *tmp;
David Brownell7e27f182006-06-13 09:54:40 -0700791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (!buf)
793 return -ENOMEM;
David Brownell7e27f182006-06-13 09:54:40 -0700794
Mihai Donțua1df4e42010-09-08 02:54:02 +0300795 tmp = (__le32 *)buf;
Harvey Harrisona5abdea2008-04-29 01:03:40 -0700796 MsgType = get_unaligned_le32(tmp++);
797 MsgLength = get_unaligned_le32(tmp++);
David Brownell7e27f182006-06-13 09:54:40 -0700798
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100799 if (!params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return -ENOTSUPP;
David Brownell7e27f182006-06-13 09:54:40 -0700801
David Brownell340600a2005-04-28 13:45:25 -0700802 /* NOTE: RNDIS is *EXTREMELY* chatty ... Windows constantly polls for
803 * rx/tx statistics and link status, in addition to KEEPALIVE traffic
804 * and normal HC level polling to see if there's any IN traffic.
805 */
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /* For USB: responses may take up to 10 seconds */
David Brownell340600a2005-04-28 13:45:25 -0700808 switch (MsgType) {
Linus Walleij51491162012-05-11 22:17:07 +0000809 case RNDIS_MSG_INIT:
810 pr_debug("%s: RNDIS_MSG_INIT\n",
Mihai Donțua1df4e42010-09-08 02:54:02 +0300811 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 params->state = RNDIS_INITIALIZED;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100813 return rndis_init_response(params, (rndis_init_msg_type *)buf);
David Brownell7e27f182006-06-13 09:54:40 -0700814
Linus Walleij51491162012-05-11 22:17:07 +0000815 case RNDIS_MSG_HALT:
816 pr_debug("%s: RNDIS_MSG_HALT\n",
Mihai Donțua1df4e42010-09-08 02:54:02 +0300817 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 params->state = RNDIS_UNINITIALIZED;
819 if (params->dev) {
Mihai Donțua1df4e42010-09-08 02:54:02 +0300820 netif_carrier_off(params->dev);
821 netif_stop_queue(params->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823 return 0;
David Brownell7e27f182006-06-13 09:54:40 -0700824
Linus Walleij51491162012-05-11 22:17:07 +0000825 case RNDIS_MSG_QUERY:
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100826 return rndis_query_response(params,
Mihai Donțua1df4e42010-09-08 02:54:02 +0300827 (rndis_query_msg_type *)buf);
David Brownell7e27f182006-06-13 09:54:40 -0700828
Linus Walleij51491162012-05-11 22:17:07 +0000829 case RNDIS_MSG_SET:
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100830 return rndis_set_response(params, (rndis_set_msg_type *)buf);
David Brownell7e27f182006-06-13 09:54:40 -0700831
Linus Walleij51491162012-05-11 22:17:07 +0000832 case RNDIS_MSG_RESET:
833 pr_debug("%s: RNDIS_MSG_RESET\n",
Mihai Donțua1df4e42010-09-08 02:54:02 +0300834 __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100835 return rndis_reset_response(params,
Mihai Donțua1df4e42010-09-08 02:54:02 +0300836 (rndis_reset_msg_type *)buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Linus Walleij51491162012-05-11 22:17:07 +0000838 case RNDIS_MSG_KEEPALIVE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* For USB: host does this every 5 seconds */
David Brownell340600a2005-04-28 13:45:25 -0700840 if (rndis_debug > 1)
Linus Walleij51491162012-05-11 22:17:07 +0000841 pr_debug("%s: RNDIS_MSG_KEEPALIVE\n",
Mihai Donțua1df4e42010-09-08 02:54:02 +0300842 __func__);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100843 return rndis_keepalive_response(params,
David Brownell7e27f182006-06-13 09:54:40 -0700844 (rndis_keepalive_msg_type *)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 buf);
David Brownell7e27f182006-06-13 09:54:40 -0700846
847 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 /* At least Windows XP emits some undefined RNDIS messages.
849 * In one case those messages seemed to relate to the host
850 * suspending itself.
851 */
Joe Perches3f5ad862016-09-27 09:16:59 -0700852 pr_warn("%s: unknown RNDIS message 0x%08X len %d\n",
Mihai Donțua1df4e42010-09-08 02:54:02 +0300853 __func__, MsgType, MsgLength);
Michel Pollet1ca532e2018-05-10 14:09:09 +0100854 /* Garbled message can be huge, so limit what we display */
855 if (MsgLength > 16)
856 MsgLength = 16;
Andy Shevchenkod3091cf2012-08-07 19:07:58 +0300857 print_hex_dump_bytes(__func__, DUMP_PREFIX_OFFSET,
858 buf, MsgLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 break;
860 }
David Brownell7e27f182006-06-13 09:54:40 -0700861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return -ENOTSUPP;
863}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500864EXPORT_SYMBOL_GPL(rndis_msg_parser);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100866static inline int rndis_get_nr(void)
867{
868 return ida_simple_get(&rndis_ida, 0, 0, GFP_KERNEL);
869}
870
871static inline void rndis_put_nr(int nr)
872{
873 ida_simple_remove(&rndis_ida, nr);
874}
875
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100876struct rndis_params *rndis_register(void (*resp_avail)(void *v), void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100878 struct rndis_params *params;
Andrzej Pietrasiewicz81dff862015-05-18 17:40:04 +0200879 int i;
David Brownell7e27f182006-06-13 09:54:40 -0700880
David Brownell15b2d2b2008-06-19 18:19:16 -0700881 if (!resp_avail)
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100882 return ERR_PTR(-EINVAL);
David Brownell15b2d2b2008-06-19 18:19:16 -0700883
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100884 i = rndis_get_nr();
885 if (i < 0) {
886 pr_debug("failed\n");
887
888 return ERR_PTR(-ENODEV);
889 }
890
891 params = kzalloc(sizeof(*params), GFP_KERNEL);
892 if (!params) {
893 rndis_put_nr(i);
894
895 return ERR_PTR(-ENOMEM);
896 }
897
898#ifdef CONFIG_USB_GADGET_DEBUG_FILES
899 {
900 struct proc_dir_entry *proc_entry;
901 char name[20];
902
903 sprintf(name, NAME_TEMPLATE, i);
904 proc_entry = proc_create_data(name, 0660, NULL,
Alexey Dobriyan97a32532020-02-03 17:37:17 -0800905 &rndis_proc_ops, params);
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100906 if (!proc_entry) {
907 kfree(params);
908 rndis_put_nr(i);
909
910 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
912 }
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100913#endif
David Brownell7e27f182006-06-13 09:54:40 -0700914
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100915 params->confignr = i;
916 params->used = 1;
917 params->state = RNDIS_UNINITIALIZED;
918 params->media_state = RNDIS_MEDIA_STATE_DISCONNECTED;
919 params->resp_avail = resp_avail;
920 params->v = v;
Geliang Tangf6281af2015-12-19 00:34:33 +0800921 INIT_LIST_HEAD(&params->resp_queue);
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100922 pr_debug("%s: configNr = %d\n", __func__, i);
923
924 return params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500926EXPORT_SYMBOL_GPL(rndis_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100928void rndis_deregister(struct rndis_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Andrzej Pietrasiewicz81dff862015-05-18 17:40:04 +0200930 int i;
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100931
Mihai Donțua1df4e42010-09-08 02:54:02 +0300932 pr_debug("%s:\n", __func__);
David Brownell7e27f182006-06-13 09:54:40 -0700933
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100934 if (!params)
935 return;
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100936
937 i = params->confignr;
938
939#ifdef CONFIG_USB_GADGET_DEBUG_FILES
940 {
Andrzej Pietrasiewiczd6d22922015-02-06 13:43:30 +0100941 char name[20];
942
943 sprintf(name, NAME_TEMPLATE, i);
944 remove_proc_entry(name, NULL);
945 }
946#endif
947
948 kfree(params);
949 rndis_put_nr(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500951EXPORT_SYMBOL_GPL(rndis_deregister);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100952int rndis_set_param_dev(struct rndis_params *params, struct net_device *dev,
953 u16 *cdc_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
David Brownell33376c12008-08-18 17:45:07 -0700955 pr_debug("%s:\n", __func__);
David Brownell15b2d2b2008-06-19 18:19:16 -0700956 if (!dev)
957 return -EINVAL;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100958 if (!params)
959 return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700960
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100961 params->dev = dev;
962 params->filter = cdc_filter;
David Brownell7e27f182006-06-13 09:54:40 -0700963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return 0;
965}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500966EXPORT_SYMBOL_GPL(rndis_set_param_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100968int rndis_set_param_vendor(struct rndis_params *params, u32 vendorID,
969 const char *vendorDescr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
David Brownell33376c12008-08-18 17:45:07 -0700971 pr_debug("%s:\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (!vendorDescr) return -1;
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100973 if (!params)
974 return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700975
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100976 params->vendorID = vendorID;
977 params->vendorDescr = vendorDescr;
David Brownell7e27f182006-06-13 09:54:40 -0700978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return 0;
980}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500981EXPORT_SYMBOL_GPL(rndis_set_param_vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100983int rndis_set_param_medium(struct rndis_params *params, u32 medium, u32 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
David Brownell33376c12008-08-18 17:45:07 -0700985 pr_debug("%s: %u %u\n", __func__, medium, speed);
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100986 if (!params)
987 return -1;
David Brownell7e27f182006-06-13 09:54:40 -0700988
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +0100989 params->medium = medium;
990 params->speed = speed;
David Brownell7e27f182006-06-13 09:54:40 -0700991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return 0;
993}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500994EXPORT_SYMBOL_GPL(rndis_set_param_medium);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Mihai Donțua1df4e42010-09-08 02:54:02 +0300996void rndis_add_hdr(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Mihai Donțua1df4e42010-09-08 02:54:02 +0300998 struct rndis_packet_msg_type *header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 if (!skb)
1001 return;
Johannes Bergd58ff352017-06-16 14:29:23 +02001002 header = skb_push(skb, sizeof(*header));
Mihai Donțua1df4e42010-09-08 02:54:02 +03001003 memset(header, 0, sizeof *header);
Linus Walleij51491162012-05-11 22:17:07 +00001004 header->MessageType = cpu_to_le32(RNDIS_MSG_PACKET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 header->MessageLength = cpu_to_le32(skb->len);
Mihai Donțua1df4e42010-09-08 02:54:02 +03001006 header->DataOffset = cpu_to_le32(36);
1007 header->DataLength = cpu_to_le32(skb->len - sizeof(*header));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
Felipe Balbi0700faa2014-04-01 13:19:32 -05001009EXPORT_SYMBOL_GPL(rndis_add_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +01001011void rndis_free_response(struct rndis_params *params, u8 *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Geliang Tangf6281af2015-12-19 00:34:33 +08001013 rndis_resp_t *r, *n;
David Brownell7e27f182006-06-13 09:54:40 -07001014
Geliang Tangf6281af2015-12-19 00:34:33 +08001015 list_for_each_entry_safe(r, n, &params->resp_queue, list) {
Julia Lawall1c17a352016-01-25 16:21:54 +01001016 if (r->buf == buf) {
Mihai Donțua1df4e42010-09-08 02:54:02 +03001017 list_del(&r->list);
1018 kfree(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
1020 }
1021}
Felipe Balbi0700faa2014-04-01 13:19:32 -05001022EXPORT_SYMBOL_GPL(rndis_free_response);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +01001024u8 *rndis_get_next_response(struct rndis_params *params, u32 *length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Geliang Tangf6281af2015-12-19 00:34:33 +08001026 rndis_resp_t *r, *n;
David Brownell7e27f182006-06-13 09:54:40 -07001027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (!length) return NULL;
David Brownell7e27f182006-06-13 09:54:40 -07001029
Geliang Tangf6281af2015-12-19 00:34:33 +08001030 list_for_each_entry_safe(r, n, &params->resp_queue, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (!r->send) {
1032 r->send = 1;
1033 *length = r->length;
1034 return r->buf;
1035 }
1036 }
David Brownell7e27f182006-06-13 09:54:40 -07001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return NULL;
1039}
Felipe Balbi0700faa2014-04-01 13:19:32 -05001040EXPORT_SYMBOL_GPL(rndis_get_next_response);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Andrzej Pietrasiewicz83210e52015-03-20 08:18:47 +01001042static rndis_resp_t *rndis_add_response(struct rndis_params *params, u32 length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Mihai Donțua1df4e42010-09-08 02:54:02 +03001044 rndis_resp_t *r;
David Brownell7e27f182006-06-13 09:54:40 -07001045
Mihai Donțua1df4e42010-09-08 02:54:02 +03001046 /* NOTE: this gets copied into ether.c USB_BUFSIZ bytes ... */
1047 r = kmalloc(sizeof(rndis_resp_t) + length, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (!r) return NULL;
David Brownell7e27f182006-06-13 09:54:40 -07001049
Mihai Donțua1df4e42010-09-08 02:54:02 +03001050 r->buf = (u8 *)(r + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 r->length = length;
1052 r->send = 0;
David Brownell7e27f182006-06-13 09:54:40 -07001053
Geliang Tangf6281af2015-12-19 00:34:33 +08001054 list_add_tail(&r->list, &params->resp_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return r;
1056}
1057
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001058int rndis_rm_hdr(struct gether *port,
1059 struct sk_buff *skb,
1060 struct sk_buff_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
David Brownell6cdee102005-04-18 17:39:34 -07001062 /* tmp points to a struct rndis_packet_msg_type */
Mihai Donțua1df4e42010-09-08 02:54:02 +03001063 __le32 *tmp = (void *)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
David Brownell6cdee102005-04-18 17:39:34 -07001065 /* MessageType, MessageLength */
Linus Walleij51491162012-05-11 22:17:07 +00001066 if (cpu_to_le32(RNDIS_MSG_PACKET)
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001067 != get_unaligned(tmp++)) {
1068 dev_kfree_skb_any(skb);
David Brownell6cdee102005-04-18 17:39:34 -07001069 return -EINVAL;
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001070 }
David Brownell6cdee102005-04-18 17:39:34 -07001071 tmp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
David Brownell6cdee102005-04-18 17:39:34 -07001073 /* DataOffset, DataLength */
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001074 if (!skb_pull(skb, get_unaligned_le32(tmp++) + 8)) {
1075 dev_kfree_skb_any(skb);
David Brownell6cdee102005-04-18 17:39:34 -07001076 return -EOVERFLOW;
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001077 }
Harvey Harrisona5abdea2008-04-29 01:03:40 -07001078 skb_trim(skb, get_unaligned_le32(tmp++));
David Brownell6cdee102005-04-18 17:39:34 -07001079
Brian Niebuhr9b39e9d2009-08-14 10:04:22 -05001080 skb_queue_tail(list, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return 0;
1082}
Felipe Balbi0700faa2014-04-01 13:19:32 -05001083EXPORT_SYMBOL_GPL(rndis_rm_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Mihai Donțua1df4e42010-09-08 02:54:02 +03001085#ifdef CONFIG_USB_GADGET_DEBUG_FILES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001087static int rndis_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001089 rndis_params *param = m->private;
David Brownell7e27f182006-06-13 09:54:40 -07001090
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001091 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 "Config Nr. %d\n"
1093 "used : %s\n"
1094 "state : %s\n"
1095 "medium : 0x%08X\n"
1096 "speed : %d\n"
1097 "cable : %s\n"
1098 "vendor ID : 0x%08X\n"
David Brownell7e27f182006-06-13 09:54:40 -07001099 "vendor : %s\n",
1100 param->confignr, (param->used) ? "y" : "n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 ({ char *s = "?";
1102 switch (param->state) {
1103 case RNDIS_UNINITIALIZED:
1104 s = "RNDIS_UNINITIALIZED"; break;
1105 case RNDIS_INITIALIZED:
1106 s = "RNDIS_INITIALIZED"; break;
1107 case RNDIS_DATA_INITIALIZED:
1108 s = "RNDIS_DATA_INITIALIZED"; break;
Joe Perches2b84f922013-10-08 16:01:37 -07001109 } s; }),
David Brownell7e27f182006-06-13 09:54:40 -07001110 param->medium,
1111 (param->media_state) ? 0 : param->speed*100,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 (param->media_state) ? "disconnected" : "connected",
David Brownell7e27f182006-06-13 09:54:40 -07001113 param->vendorID, param->vendorDescr);
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001117static ssize_t rndis_proc_write(struct file *file, const char __user *buffer,
Mihai Donțua1df4e42010-09-08 02:54:02 +03001118 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Muchun Song359745d2022-01-21 22:14:23 -08001120 rndis_params *p = pde_data(file_inode(file));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 u32 speed = 0;
1122 int i, fl_speed = 0;
David Brownell7e27f182006-06-13 09:54:40 -07001123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 for (i = 0; i < count; i++) {
1125 char c;
1126 if (get_user(c, buffer))
1127 return -EFAULT;
1128 switch (c) {
1129 case '0':
1130 case '1':
1131 case '2':
1132 case '3':
1133 case '4':
1134 case '5':
1135 case '6':
1136 case '7':
1137 case '8':
1138 case '9':
1139 fl_speed = 1;
Mihai Donțua1df4e42010-09-08 02:54:02 +03001140 speed = speed * 10 + c - '0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 break;
1142 case 'C':
1143 case 'c':
Andrzej Pietrasiewicz868055f2015-05-18 17:40:02 +02001144 rndis_signal_connect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 break;
1146 case 'D':
1147 case 'd':
Andrzej Pietrasiewicz868055f2015-05-18 17:40:02 +02001148 rndis_signal_disconnect(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 break;
David Brownell7e27f182006-06-13 09:54:40 -07001150 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (fl_speed) p->speed = speed;
David Brownell33376c12008-08-18 17:45:07 -07001152 else pr_debug("%c is not valid\n", c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 break;
1154 }
David Brownell7e27f182006-06-13 09:54:40 -07001155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 buffer++;
1157 }
David Brownell7e27f182006-06-13 09:54:40 -07001158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return count;
1160}
1161
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001162static int rndis_proc_open(struct inode *inode, struct file *file)
1163{
Muchun Song359745d2022-01-21 22:14:23 -08001164 return single_open(file, rndis_proc_show, pde_data(inode));
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001165}
1166
Alexey Dobriyan97a32532020-02-03 17:37:17 -08001167static const struct proc_ops rndis_proc_ops = {
1168 .proc_open = rndis_proc_open,
1169 .proc_read = seq_read,
1170 .proc_lseek = seq_lseek,
1171 .proc_release = single_release,
1172 .proc_write = rndis_proc_write,
Alexey Dobriyane184d5f2008-05-14 16:25:13 -07001173};
1174
Mihai Donțua1df4e42010-09-08 02:54:02 +03001175#define NAME_TEMPLATE "driver/rndis-%03d"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Mihai Donțua1df4e42010-09-08 02:54:02 +03001177#endif /* CONFIG_USB_GADGET_DEBUG_FILES */