| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * RNDIS MSG parser | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 3 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * Authors:	Benedikt Spranger, Pengutronix | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 5 | *		Robert Schwebel, Pengutronix | 
|  | 6 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | *              This program is free software; you can redistribute it and/or | 
|  | 8 | *              modify it under the terms of the GNU General Public License | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 9 | *              version 2, as published by the Free Software Foundation. | 
|  | 10 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | *		This software was originally developed in conformance with | 
|  | 12 | *		Microsoft's Remote NDIS Specification License Agreement. | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 13 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * 03/12/2004 Kai-Uwe Bloem <linux-development@auerswald.de> | 
|  | 15 | *		Fixed message length bug in init_response | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 16 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * 03/25/2004 Kai-Uwe Bloem <linux-development@auerswald.de> | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 18 | *		Fixed rndis_rm_hdr length bug. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * | 
|  | 20 | * Copyright (C) 2004 by David Brownell | 
|  | 21 | *		updates to merge with Linux 2.6, better match RNDIS spec | 
|  | 22 | */ | 
|  | 23 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/module.h> | 
|  | 25 | #include <linux/moduleparam.h> | 
|  | 26 | #include <linux/kernel.h> | 
|  | 27 | #include <linux/errno.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/init.h> | 
|  | 29 | #include <linux/list.h> | 
|  | 30 | #include <linux/proc_fs.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 31 | #include <linux/slab.h> | 
| Alexey Dobriyan | e184d5f | 2008-05-14 16:25:13 -0700 | [diff] [blame] | 32 | #include <linux/seq_file.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/netdevice.h> | 
|  | 34 |  | 
|  | 35 | #include <asm/io.h> | 
|  | 36 | #include <asm/byteorder.h> | 
|  | 37 | #include <asm/system.h> | 
| David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 38 | #include <asm/unaligned.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 |  | 
|  | 40 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 41 | #undef	VERBOSE_DEBUG | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 |  | 
|  | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | static int rndis_debug = 0; | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 55 | module_param (rndis_debug, int, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | MODULE_PARM_DESC (rndis_debug, "enable debugging"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #define rndis_debug		0 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #endif | 
|  | 60 |  | 
|  | 61 | #define RNDIS_MAX_CONFIGS	1 | 
|  | 62 |  | 
|  | 63 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 64 | static rndis_params rndis_per_dev_params[RNDIS_MAX_CONFIGS]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 |  | 
|  | 66 | /* Driver Version */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 67 | static const __le32 rndis_driver_version = cpu_to_le32(1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 |  | 
|  | 69 | /* Function Prototypes */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 70 | static rndis_resp_t *rndis_add_response(int configNr, u32 length); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 |  | 
|  | 72 |  | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 73 | /* supported OIDs */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 74 | static const u32 oid_supported_list[] = | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 75 | { | 
|  | 76 | /* the general stuff */ | 
|  | 77 | OID_GEN_SUPPORTED_LIST, | 
|  | 78 | OID_GEN_HARDWARE_STATUS, | 
|  | 79 | OID_GEN_MEDIA_SUPPORTED, | 
|  | 80 | OID_GEN_MEDIA_IN_USE, | 
|  | 81 | OID_GEN_MAXIMUM_FRAME_SIZE, | 
|  | 82 | OID_GEN_LINK_SPEED, | 
|  | 83 | OID_GEN_TRANSMIT_BLOCK_SIZE, | 
|  | 84 | OID_GEN_RECEIVE_BLOCK_SIZE, | 
|  | 85 | OID_GEN_VENDOR_ID, | 
|  | 86 | OID_GEN_VENDOR_DESCRIPTION, | 
|  | 87 | OID_GEN_VENDOR_DRIVER_VERSION, | 
|  | 88 | OID_GEN_CURRENT_PACKET_FILTER, | 
|  | 89 | OID_GEN_MAXIMUM_TOTAL_SIZE, | 
|  | 90 | OID_GEN_MEDIA_CONNECT_STATUS, | 
|  | 91 | OID_GEN_PHYSICAL_MEDIUM, | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 92 |  | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 93 | /* the statistical stuff */ | 
|  | 94 | OID_GEN_XMIT_OK, | 
|  | 95 | OID_GEN_RCV_OK, | 
|  | 96 | OID_GEN_XMIT_ERROR, | 
|  | 97 | OID_GEN_RCV_ERROR, | 
|  | 98 | OID_GEN_RCV_NO_BUFFER, | 
|  | 99 | #ifdef	RNDIS_OPTIONAL_STATS | 
|  | 100 | OID_GEN_DIRECTED_BYTES_XMIT, | 
|  | 101 | OID_GEN_DIRECTED_FRAMES_XMIT, | 
|  | 102 | OID_GEN_MULTICAST_BYTES_XMIT, | 
|  | 103 | OID_GEN_MULTICAST_FRAMES_XMIT, | 
|  | 104 | OID_GEN_BROADCAST_BYTES_XMIT, | 
|  | 105 | OID_GEN_BROADCAST_FRAMES_XMIT, | 
|  | 106 | OID_GEN_DIRECTED_BYTES_RCV, | 
|  | 107 | OID_GEN_DIRECTED_FRAMES_RCV, | 
|  | 108 | OID_GEN_MULTICAST_BYTES_RCV, | 
|  | 109 | OID_GEN_MULTICAST_FRAMES_RCV, | 
|  | 110 | OID_GEN_BROADCAST_BYTES_RCV, | 
|  | 111 | OID_GEN_BROADCAST_FRAMES_RCV, | 
|  | 112 | OID_GEN_RCV_CRC_ERROR, | 
|  | 113 | OID_GEN_TRANSMIT_QUEUE_LENGTH, | 
|  | 114 | #endif	/* RNDIS_OPTIONAL_STATS */ | 
|  | 115 |  | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 116 | /* mandatory 802.3 */ | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 117 | /* the general stuff */ | 
|  | 118 | OID_802_3_PERMANENT_ADDRESS, | 
|  | 119 | OID_802_3_CURRENT_ADDRESS, | 
|  | 120 | OID_802_3_MULTICAST_LIST, | 
|  | 121 | OID_802_3_MAC_OPTIONS, | 
|  | 122 | OID_802_3_MAXIMUM_LIST_SIZE, | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 123 |  | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 124 | /* the statistical stuff */ | 
|  | 125 | OID_802_3_RCV_ERROR_ALIGNMENT, | 
|  | 126 | OID_802_3_XMIT_ONE_COLLISION, | 
|  | 127 | OID_802_3_XMIT_MORE_COLLISIONS, | 
|  | 128 | #ifdef	RNDIS_OPTIONAL_STATS | 
|  | 129 | OID_802_3_XMIT_DEFERRED, | 
|  | 130 | OID_802_3_XMIT_MAX_COLLISIONS, | 
|  | 131 | OID_802_3_RCV_OVERRUN, | 
|  | 132 | OID_802_3_XMIT_UNDERRUN, | 
|  | 133 | OID_802_3_XMIT_HEARTBEAT_FAILURE, | 
|  | 134 | OID_802_3_XMIT_TIMES_CRS_LOST, | 
|  | 135 | OID_802_3_XMIT_LATE_COLLISIONS, | 
|  | 136 | #endif	/* RNDIS_OPTIONAL_STATS */ | 
|  | 137 |  | 
|  | 138 | #ifdef	RNDIS_PM | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 139 | /* PM and wakeup are "mandatory" for USB, but the RNDIS specs | 
|  | 140 | * don't say what they mean ... and the NDIS specs are often | 
|  | 141 | * confusing and/or ambiguous in this context.  (That is, more | 
|  | 142 | * so than their specs for the other OIDs.) | 
|  | 143 | * | 
|  | 144 | * FIXME someone who knows what these should do, please | 
|  | 145 | * implement them! | 
|  | 146 | */ | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 147 |  | 
|  | 148 | /* power management */ | 
|  | 149 | OID_PNP_CAPABILITIES, | 
|  | 150 | OID_PNP_QUERY_POWER, | 
|  | 151 | OID_PNP_SET_POWER, | 
|  | 152 |  | 
|  | 153 | #ifdef	RNDIS_WAKEUP | 
|  | 154 | /* wake up host */ | 
|  | 155 | OID_PNP_ENABLE_WAKE_UP, | 
|  | 156 | OID_PNP_ADD_WAKE_UP_PATTERN, | 
|  | 157 | OID_PNP_REMOVE_WAKE_UP_PATTERN, | 
|  | 158 | #endif	/* RNDIS_WAKEUP */ | 
|  | 159 | #endif	/* RNDIS_PM */ | 
|  | 160 | }; | 
|  | 161 |  | 
|  | 162 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | /* NDIS Functions */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 164 | static int gen_ndis_query_resp(int configNr, u32 OID, u8 *buf, | 
|  | 165 | unsigned buf_len, rndis_resp_t *r) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 167 | int retval = -ENOTSUPP; | 
|  | 168 | u32 length = 4;	/* usually */ | 
|  | 169 | __le32 *outbuf; | 
|  | 170 | int i, count; | 
|  | 171 | rndis_query_cmplt_type *resp; | 
|  | 172 | struct net_device *net; | 
| Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 173 | struct rtnl_link_stats64 temp; | 
| David S. Miller | fdb93f8a | 2010-06-15 21:50:14 -0700 | [diff] [blame] | 174 | const struct rtnl_link_stats64 *stats; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 |  | 
|  | 176 | if (!r) return -ENOMEM; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 177 | resp = (rndis_query_cmplt_type *)r->buf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 |  | 
|  | 179 | if (!resp) return -ENOMEM; | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 180 |  | 
|  | 181 | if (buf_len && rndis_debug > 1) { | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 182 | pr_debug("query OID %08x value, len %d:\n", OID, buf_len); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 183 | for (i = 0; i < buf_len; i += 16) { | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 184 | pr_debug("%03d: %08x %08x %08x %08x\n", i, | 
| Harvey Harrison | a5abdea | 2008-04-29 01:03:40 -0700 | [diff] [blame] | 185 | get_unaligned_le32(&buf[i]), | 
|  | 186 | get_unaligned_le32(&buf[i + 4]), | 
|  | 187 | get_unaligned_le32(&buf[i + 8]), | 
|  | 188 | get_unaligned_le32(&buf[i + 12])); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 189 | } | 
|  | 190 | } | 
|  | 191 |  | 
|  | 192 | /* response goes here, right after the header */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 193 | outbuf = (__le32 *)&resp[1]; | 
|  | 194 | resp->InformationBufferOffset = cpu_to_le32(16); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 195 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 196 | net = rndis_per_dev_params[configNr].dev; | 
| Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 197 | stats = dev_get_stats(net, &temp); | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 198 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | switch (OID) { | 
|  | 200 |  | 
|  | 201 | /* general oids (table 4-1) */ | 
|  | 202 |  | 
|  | 203 | /* mandatory */ | 
|  | 204 | case OID_GEN_SUPPORTED_LIST: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 205 | pr_debug("%s: OID_GEN_SUPPORTED_LIST\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 206 | length = sizeof(oid_supported_list); | 
|  | 207 | count  = length / sizeof(u32); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | for (i = 0; i < count; i++) | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 209 | outbuf[i] = cpu_to_le32(oid_supported_list[i]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | retval = 0; | 
|  | 211 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 212 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | /* mandatory */ | 
|  | 214 | case OID_GEN_HARDWARE_STATUS: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 215 | pr_debug("%s: OID_GEN_HARDWARE_STATUS\n", __func__); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 216 | /* Bogus question! | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | * Hardware must be ready to receive high level protocols. | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 218 | * BTW: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | * reddite ergo quae sunt Caesaris Caesari | 
|  | 220 | * et quae sunt Dei Deo! | 
|  | 221 | */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 222 | *outbuf = cpu_to_le32(0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | retval = 0; | 
|  | 224 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 225 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | /* mandatory */ | 
|  | 227 | case OID_GEN_MEDIA_SUPPORTED: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 228 | pr_debug("%s: OID_GEN_MEDIA_SUPPORTED\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 229 | *outbuf = cpu_to_le32(rndis_per_dev_params[configNr].medium); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | retval = 0; | 
|  | 231 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 232 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | /* mandatory */ | 
|  | 234 | case OID_GEN_MEDIA_IN_USE: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 235 | pr_debug("%s: OID_GEN_MEDIA_IN_USE\n", __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | /* one medium, one transport... (maybe you do it better) */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 237 | *outbuf = cpu_to_le32(rndis_per_dev_params[configNr].medium); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | retval = 0; | 
|  | 239 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 240 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | /* mandatory */ | 
|  | 242 | case OID_GEN_MAXIMUM_FRAME_SIZE: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 243 | pr_debug("%s: OID_GEN_MAXIMUM_FRAME_SIZE\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 244 | if (rndis_per_dev_params[configNr].dev) { | 
|  | 245 | *outbuf = cpu_to_le32( | 
|  | 246 | rndis_per_dev_params[configNr].dev->mtu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | retval = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | } | 
|  | 249 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 250 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | /* mandatory */ | 
|  | 252 | case OID_GEN_LINK_SPEED: | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 253 | if (rndis_debug > 1) | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 254 | pr_debug("%s: OID_GEN_LINK_SPEED\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 255 | if (rndis_per_dev_params[configNr].media_state | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 256 | == NDIS_MEDIA_STATE_DISCONNECTED) | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 257 | *outbuf = cpu_to_le32(0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | else | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 259 | *outbuf = cpu_to_le32( | 
|  | 260 | rndis_per_dev_params[configNr].speed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | retval = 0; | 
|  | 262 | break; | 
|  | 263 |  | 
|  | 264 | /* mandatory */ | 
|  | 265 | case OID_GEN_TRANSMIT_BLOCK_SIZE: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 266 | pr_debug("%s: OID_GEN_TRANSMIT_BLOCK_SIZE\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 267 | if (rndis_per_dev_params[configNr].dev) { | 
|  | 268 | *outbuf = cpu_to_le32( | 
|  | 269 | rndis_per_dev_params[configNr].dev->mtu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | retval = 0; | 
|  | 271 | } | 
|  | 272 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 273 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | /* mandatory */ | 
|  | 275 | case OID_GEN_RECEIVE_BLOCK_SIZE: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 276 | pr_debug("%s: OID_GEN_RECEIVE_BLOCK_SIZE\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 277 | if (rndis_per_dev_params[configNr].dev) { | 
|  | 278 | *outbuf = cpu_to_le32( | 
|  | 279 | rndis_per_dev_params[configNr].dev->mtu); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | retval = 0; | 
|  | 281 | } | 
|  | 282 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 283 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | /* mandatory */ | 
|  | 285 | case OID_GEN_VENDOR_ID: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 286 | pr_debug("%s: OID_GEN_VENDOR_ID\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 287 | *outbuf = cpu_to_le32( | 
|  | 288 | rndis_per_dev_params[configNr].vendorID); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | retval = 0; | 
|  | 290 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 291 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | /* mandatory */ | 
|  | 293 | case OID_GEN_VENDOR_DESCRIPTION: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 294 | pr_debug("%s: OID_GEN_VENDOR_DESCRIPTION\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 295 | if (rndis_per_dev_params[configNr].vendorDescr) { | 
|  | 296 | length = strlen(rndis_per_dev_params[configNr]. | 
|  | 297 | vendorDescr); | 
|  | 298 | memcpy(outbuf, | 
|  | 299 | rndis_per_dev_params[configNr].vendorDescr, | 
|  | 300 | length); | 
| Maxim Osipov | 037d365 | 2010-08-21 14:54:06 +0400 | [diff] [blame] | 301 | } else { | 
|  | 302 | outbuf[0] = 0; | 
|  | 303 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | retval = 0; | 
|  | 305 | break; | 
|  | 306 |  | 
|  | 307 | case OID_GEN_VENDOR_DRIVER_VERSION: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 308 | pr_debug("%s: OID_GEN_VENDOR_DRIVER_VERSION\n", __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | /* Created as LE */ | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 310 | *outbuf = rndis_driver_version; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | retval = 0; | 
|  | 312 | break; | 
|  | 313 |  | 
|  | 314 | /* mandatory */ | 
|  | 315 | case OID_GEN_CURRENT_PACKET_FILTER: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 316 | pr_debug("%s: OID_GEN_CURRENT_PACKET_FILTER\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 317 | *outbuf = cpu_to_le32(*rndis_per_dev_params[configNr].filter); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | retval = 0; | 
|  | 319 | break; | 
|  | 320 |  | 
|  | 321 | /* mandatory */ | 
|  | 322 | case OID_GEN_MAXIMUM_TOTAL_SIZE: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 323 | pr_debug("%s: OID_GEN_MAXIMUM_TOTAL_SIZE\n", __func__); | 
| Harvey Harrison | 35c26c2 | 2009-02-14 22:56:56 -0800 | [diff] [blame] | 324 | *outbuf = cpu_to_le32(RNDIS_MAX_TOTAL_SIZE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | retval = 0; | 
|  | 326 | break; | 
|  | 327 |  | 
|  | 328 | /* mandatory */ | 
|  | 329 | case OID_GEN_MEDIA_CONNECT_STATUS: | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 330 | if (rndis_debug > 1) | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 331 | pr_debug("%s: OID_GEN_MEDIA_CONNECT_STATUS\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 332 | *outbuf = cpu_to_le32(rndis_per_dev_params[configNr] | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | .media_state); | 
|  | 334 | retval = 0; | 
|  | 335 | break; | 
|  | 336 |  | 
|  | 337 | case OID_GEN_PHYSICAL_MEDIUM: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 338 | pr_debug("%s: OID_GEN_PHYSICAL_MEDIUM\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 339 | *outbuf = cpu_to_le32(0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | retval = 0; | 
|  | 341 | break; | 
|  | 342 |  | 
|  | 343 | /* The RNDIS specification is incomplete/wrong.   Some versions | 
|  | 344 | * of MS-Windows expect OIDs that aren't specified there.  Other | 
|  | 345 | * versions emit undefined RNDIS messages. DOCUMENT ALL THESE! | 
|  | 346 | */ | 
|  | 347 | case OID_GEN_MAC_OPTIONS:		/* from WinME */ | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 348 | pr_debug("%s: OID_GEN_MAC_OPTIONS\n", __func__); | 
| Harvey Harrison | 35c26c2 | 2009-02-14 22:56:56 -0800 | [diff] [blame] | 349 | *outbuf = cpu_to_le32( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | NDIS_MAC_OPTION_RECEIVE_SERIALIZED | 
|  | 351 | | NDIS_MAC_OPTION_FULL_DUPLEX); | 
|  | 352 | retval = 0; | 
|  | 353 | break; | 
|  | 354 |  | 
|  | 355 | /* statistics OIDs (table 4-2) */ | 
|  | 356 |  | 
|  | 357 | /* mandatory */ | 
|  | 358 | case OID_GEN_XMIT_OK: | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 359 | if (rndis_debug > 1) | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 360 | pr_debug("%s: OID_GEN_XMIT_OK\n", __func__); | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 361 | if (stats) { | 
|  | 362 | *outbuf = cpu_to_le32(stats->tx_packets | 
|  | 363 | - stats->tx_errors - stats->tx_dropped); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | retval = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | } | 
|  | 366 | break; | 
|  | 367 |  | 
|  | 368 | /* mandatory */ | 
|  | 369 | case OID_GEN_RCV_OK: | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 370 | if (rndis_debug > 1) | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 371 | pr_debug("%s: OID_GEN_RCV_OK\n", __func__); | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 372 | if (stats) { | 
|  | 373 | *outbuf = cpu_to_le32(stats->rx_packets | 
|  | 374 | - stats->rx_errors - stats->rx_dropped); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | retval = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } | 
|  | 377 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 378 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | /* mandatory */ | 
|  | 380 | case OID_GEN_XMIT_ERROR: | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 381 | if (rndis_debug > 1) | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 382 | pr_debug("%s: OID_GEN_XMIT_ERROR\n", __func__); | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 383 | if (stats) { | 
|  | 384 | *outbuf = cpu_to_le32(stats->tx_errors); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | retval = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } | 
|  | 387 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 388 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | /* mandatory */ | 
|  | 390 | case OID_GEN_RCV_ERROR: | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 391 | if (rndis_debug > 1) | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 392 | pr_debug("%s: OID_GEN_RCV_ERROR\n", __func__); | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 393 | if (stats) { | 
|  | 394 | *outbuf = cpu_to_le32(stats->rx_errors); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | retval = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } | 
|  | 397 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 398 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | /* mandatory */ | 
|  | 400 | case OID_GEN_RCV_NO_BUFFER: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 401 | pr_debug("%s: OID_GEN_RCV_NO_BUFFER\n", __func__); | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 402 | if (stats) { | 
|  | 403 | *outbuf = cpu_to_le32(stats->rx_dropped); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | retval = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | } | 
|  | 406 | break; | 
|  | 407 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | /* ieee802.3 OIDs (table 4-3) */ | 
|  | 409 |  | 
|  | 410 | /* mandatory */ | 
|  | 411 | case OID_802_3_PERMANENT_ADDRESS: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 412 | pr_debug("%s: OID_802_3_PERMANENT_ADDRESS\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 413 | if (rndis_per_dev_params[configNr].dev) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | length = ETH_ALEN; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 415 | memcpy(outbuf, | 
|  | 416 | rndis_per_dev_params[configNr].host_mac, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | length); | 
|  | 418 | retval = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | } | 
|  | 420 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 421 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | /* mandatory */ | 
|  | 423 | case OID_802_3_CURRENT_ADDRESS: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 424 | pr_debug("%s: OID_802_3_CURRENT_ADDRESS\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 425 | if (rndis_per_dev_params[configNr].dev) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | length = ETH_ALEN; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 427 | memcpy(outbuf, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | rndis_per_dev_params [configNr].host_mac, | 
|  | 429 | length); | 
|  | 430 | retval = 0; | 
|  | 431 | } | 
|  | 432 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 433 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | /* mandatory */ | 
|  | 435 | case OID_802_3_MULTICAST_LIST: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 436 | pr_debug("%s: OID_802_3_MULTICAST_LIST\n", __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | /* Multicast base address only */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 438 | *outbuf = cpu_to_le32(0xE0000000); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | retval = 0; | 
|  | 440 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 441 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | /* mandatory */ | 
|  | 443 | case OID_802_3_MAXIMUM_LIST_SIZE: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 444 | pr_debug("%s: OID_802_3_MAXIMUM_LIST_SIZE\n", __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | /* Multicast base address only */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 446 | *outbuf = cpu_to_le32(1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | retval = 0; | 
|  | 448 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 449 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | case OID_802_3_MAC_OPTIONS: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 451 | pr_debug("%s: OID_802_3_MAC_OPTIONS\n", __func__); | 
| Qiuping Chen | 6bc2146 | 2009-07-01 03:49:29 -0700 | [diff] [blame] | 452 | *outbuf = cpu_to_le32(0); | 
|  | 453 | retval = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | break; | 
|  | 455 |  | 
|  | 456 | /* ieee802.3 statistics OIDs (table 4-4) */ | 
|  | 457 |  | 
|  | 458 | /* mandatory */ | 
|  | 459 | case OID_802_3_RCV_ERROR_ALIGNMENT: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 460 | pr_debug("%s: OID_802_3_RCV_ERROR_ALIGNMENT\n", __func__); | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 461 | if (stats) { | 
|  | 462 | *outbuf = cpu_to_le32(stats->rx_frame_errors); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | retval = 0; | 
|  | 464 | } | 
|  | 465 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 466 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | /* mandatory */ | 
|  | 468 | case OID_802_3_XMIT_ONE_COLLISION: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 469 | pr_debug("%s: OID_802_3_XMIT_ONE_COLLISION\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 470 | *outbuf = cpu_to_le32(0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | retval = 0; | 
|  | 472 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 473 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | /* mandatory */ | 
|  | 475 | case OID_802_3_XMIT_MORE_COLLISIONS: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 476 | pr_debug("%s: OID_802_3_XMIT_MORE_COLLISIONS\n", __func__); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 477 | *outbuf = cpu_to_le32(0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | retval = 0; | 
|  | 479 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 480 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | default: | 
| David Brownell | 0027492 | 2007-11-19 12:58:36 -0800 | [diff] [blame] | 482 | pr_warning("%s: query unknown OID 0x%08X\n", | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 483 | __func__, OID); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | } | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 485 | if (retval < 0) | 
|  | 486 | length = 0; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 487 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 488 | resp->InformationBufferLength = cpu_to_le32(length); | 
|  | 489 | r->length = length + sizeof(*resp); | 
|  | 490 | resp->MessageLength = cpu_to_le32(r->length); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | return retval; | 
|  | 492 | } | 
|  | 493 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 494 | static int gen_ndis_set_resp(u8 configNr, u32 OID, u8 *buf, u32 buf_len, | 
|  | 495 | rndis_resp_t *r) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 497 | rndis_set_cmplt_type *resp; | 
|  | 498 | int i, retval = -ENOTSUPP; | 
|  | 499 | struct rndis_params *params; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 |  | 
|  | 501 | if (!r) | 
|  | 502 | return -ENOMEM; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 503 | resp = (rndis_set_cmplt_type *)r->buf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | if (!resp) | 
|  | 505 | return -ENOMEM; | 
|  | 506 |  | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 507 | if (buf_len && rndis_debug > 1) { | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 508 | pr_debug("set OID %08x value, len %d:\n", OID, buf_len); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 509 | for (i = 0; i < buf_len; i += 16) { | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 510 | pr_debug("%03d: %08x %08x %08x %08x\n", i, | 
| Harvey Harrison | a5abdea | 2008-04-29 01:03:40 -0700 | [diff] [blame] | 511 | get_unaligned_le32(&buf[i]), | 
|  | 512 | get_unaligned_le32(&buf[i + 4]), | 
|  | 513 | get_unaligned_le32(&buf[i + 8]), | 
|  | 514 | get_unaligned_le32(&buf[i + 12])); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 515 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } | 
|  | 517 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 518 | params = &rndis_per_dev_params[configNr]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | switch (OID) { | 
|  | 520 | case OID_GEN_CURRENT_PACKET_FILTER: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 |  | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 522 | /* these NDIS_PACKET_TYPE_* bitflags are shared with | 
|  | 523 | * cdc_filter; it's not RNDIS-specific | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | * NDIS_PACKET_TYPE_x == USB_CDC_PACKET_TYPE_x for x in: | 
|  | 525 | *	PROMISCUOUS, DIRECTED, | 
|  | 526 | *	MULTICAST, ALL_MULTICAST, BROADCAST | 
|  | 527 | */ | 
| Harvey Harrison | a5abdea | 2008-04-29 01:03:40 -0700 | [diff] [blame] | 528 | *params->filter = (u16)get_unaligned_le32(buf); | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 529 | pr_debug("%s: OID_GEN_CURRENT_PACKET_FILTER %08x\n", | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 530 | __func__, *params->filter); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 |  | 
|  | 532 | /* this call has a significant side effect:  it's | 
|  | 533 | * what makes the packet flow start and stop, like | 
|  | 534 | * activating the CDC Ethernet altsetting. | 
|  | 535 | */ | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 536 | retval = 0; | 
|  | 537 | if (*params->filter) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | params->state = RNDIS_DATA_INITIALIZED; | 
|  | 539 | netif_carrier_on(params->dev); | 
|  | 540 | if (netif_running(params->dev)) | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 541 | netif_wake_queue(params->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | } else { | 
|  | 543 | params->state = RNDIS_INITIALIZED; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 544 | netif_carrier_off(params->dev); | 
|  | 545 | netif_stop_queue(params->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } | 
|  | 547 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 548 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | case OID_802_3_MULTICAST_LIST: | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 550 | /* I think we can ignore this */ | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 551 | pr_debug("%s: OID_802_3_MULTICAST_LIST\n", __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | retval = 0; | 
|  | 553 | break; | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 554 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | default: | 
| David Brownell | 0027492 | 2007-11-19 12:58:36 -0800 | [diff] [blame] | 556 | pr_warning("%s: set unknown OID 0x%08X, size %d\n", | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 557 | __func__, OID, buf_len); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | } | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 559 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | return retval; | 
|  | 561 | } | 
|  | 562 |  | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 563 | /* | 
|  | 564 | * Response Functions | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | */ | 
|  | 566 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 567 | static int rndis_init_response(int configNr, rndis_init_msg_type *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 569 | rndis_init_cmplt_type *resp; | 
|  | 570 | rndis_resp_t *r; | 
|  | 571 | struct rndis_params *params = rndis_per_dev_params + configNr; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 572 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 573 | if (!params->dev) | 
|  | 574 | return -ENOTSUPP; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 575 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 576 | r = rndis_add_response(configNr, sizeof(rndis_init_cmplt_type)); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 577 | if (!r) | 
|  | 578 | return -ENOMEM; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 579 | resp = (rndis_init_cmplt_type *)r->buf; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 580 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 581 | resp->MessageType = cpu_to_le32(REMOTE_NDIS_INITIALIZE_CMPLT); | 
|  | 582 | resp->MessageLength = cpu_to_le32(52); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | resp->RequestID = buf->RequestID; /* Still LE in msg buffer */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 584 | resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS); | 
|  | 585 | resp->MajorVersion = cpu_to_le32(RNDIS_MAJOR_VERSION); | 
|  | 586 | resp->MinorVersion = cpu_to_le32(RNDIS_MINOR_VERSION); | 
|  | 587 | resp->DeviceFlags = cpu_to_le32(RNDIS_DF_CONNECTIONLESS); | 
|  | 588 | resp->Medium = cpu_to_le32(RNDIS_MEDIUM_802_3); | 
|  | 589 | resp->MaxPacketsPerTransfer = cpu_to_le32(1); | 
|  | 590 | resp->MaxTransferSize = cpu_to_le32( | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 591 | params->dev->mtu | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 592 | + sizeof(struct ethhdr) | 
|  | 593 | + sizeof(struct rndis_packet_msg_type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | + 22); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 595 | resp->PacketAlignmentFactor = cpu_to_le32(0); | 
|  | 596 | resp->AFListOffset = cpu_to_le32(0); | 
|  | 597 | resp->AFListSize = cpu_to_le32(0); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 598 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 599 | params->resp_avail(params->v); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | return 0; | 
|  | 601 | } | 
|  | 602 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 603 | static int rndis_query_response(int configNr, rndis_query_msg_type *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | { | 
|  | 605 | rndis_query_cmplt_type *resp; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 606 | rndis_resp_t *r; | 
|  | 607 | struct rndis_params *params = rndis_per_dev_params + configNr; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 608 |  | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 609 | /* pr_debug("%s: OID = %08X\n", __func__, cpu_to_le32(buf->OID)); */ | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 610 | if (!params->dev) | 
|  | 611 | return -ENOTSUPP; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 612 |  | 
| Shaun Tancheff | 8763716 | 2006-02-22 19:47:19 -0800 | [diff] [blame] | 613 | /* | 
|  | 614 | * we need more memory: | 
|  | 615 | * gen_ndis_query_resp expects enough space for | 
|  | 616 | * rndis_query_cmplt_type followed by data. | 
|  | 617 | * oid_supported_list is the largest data reply | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 619 | r = rndis_add_response(configNr, | 
|  | 620 | sizeof(oid_supported_list) + sizeof(rndis_query_cmplt_type)); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 621 | if (!r) | 
|  | 622 | return -ENOMEM; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 623 | resp = (rndis_query_cmplt_type *)r->buf; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 624 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 625 | resp->MessageType = cpu_to_le32(REMOTE_NDIS_QUERY_CMPLT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | resp->RequestID = buf->RequestID; /* Still LE in msg buffer */ | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 627 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 628 | if (gen_ndis_query_resp(configNr, le32_to_cpu(buf->OID), | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 629 | le32_to_cpu(buf->InformationBufferOffset) | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 630 | + 8 + (u8 *)buf, | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 631 | le32_to_cpu(buf->InformationBufferLength), | 
|  | 632 | r)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | /* OID not supported */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 634 | resp->Status = cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED); | 
|  | 635 | resp->MessageLength = cpu_to_le32(sizeof *resp); | 
|  | 636 | resp->InformationBufferLength = cpu_to_le32(0); | 
|  | 637 | resp->InformationBufferOffset = cpu_to_le32(0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | } else | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 639 | resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 640 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 641 | params->resp_avail(params->v); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | return 0; | 
|  | 643 | } | 
|  | 644 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 645 | static int rndis_set_response(int configNr, rndis_set_msg_type *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 647 | u32 BufLength, BufOffset; | 
|  | 648 | rndis_set_cmplt_type *resp; | 
|  | 649 | rndis_resp_t *r; | 
|  | 650 | struct rndis_params *params = rndis_per_dev_params + configNr; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 651 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 652 | r = rndis_add_response(configNr, sizeof(rndis_set_cmplt_type)); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 653 | if (!r) | 
|  | 654 | return -ENOMEM; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 655 | resp = (rndis_set_cmplt_type *)r->buf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 657 | BufLength = le32_to_cpu(buf->InformationBufferLength); | 
|  | 658 | BufOffset = le32_to_cpu(buf->InformationBufferOffset); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 660 | #ifdef	VERBOSE_DEBUG | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 661 | pr_debug("%s: Length: %d\n", __func__, BufLength); | 
|  | 662 | pr_debug("%s: Offset: %d\n", __func__, BufOffset); | 
|  | 663 | pr_debug("%s: InfoBuffer: ", __func__); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 664 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | for (i = 0; i < BufLength; i++) { | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 666 | pr_debug("%02x ", *(((u8 *) buf) + i + 8 + BufOffset)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | } | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 668 |  | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 669 | pr_debug("\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | #endif | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 671 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 672 | resp->MessageType = cpu_to_le32(REMOTE_NDIS_SET_CMPLT); | 
|  | 673 | resp->MessageLength = cpu_to_le32(16); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | resp->RequestID = buf->RequestID; /* Still LE in msg buffer */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 675 | if (gen_ndis_set_resp(configNr, le32_to_cpu(buf->OID), | 
|  | 676 | ((u8 *)buf) + 8 + BufOffset, BufLength, r)) | 
|  | 677 | resp->Status = cpu_to_le32(RNDIS_STATUS_NOT_SUPPORTED); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 678 | else | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 679 | resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 680 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 681 | params->resp_avail(params->v); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | return 0; | 
|  | 683 | } | 
|  | 684 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 685 | static int rndis_reset_response(int configNr, rndis_reset_msg_type *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 687 | rndis_reset_cmplt_type *resp; | 
|  | 688 | rndis_resp_t *r; | 
|  | 689 | struct rndis_params *params = rndis_per_dev_params + configNr; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 690 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 691 | r = rndis_add_response(configNr, sizeof(rndis_reset_cmplt_type)); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 692 | if (!r) | 
|  | 693 | return -ENOMEM; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 694 | resp = (rndis_reset_cmplt_type *)r->buf; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 695 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 696 | resp->MessageType = cpu_to_le32(REMOTE_NDIS_RESET_CMPLT); | 
|  | 697 | resp->MessageLength = cpu_to_le32(16); | 
|  | 698 | resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | /* resent information */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 700 | resp->AddressingReset = cpu_to_le32(1); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 701 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 702 | params->resp_avail(params->v); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | return 0; | 
|  | 704 | } | 
|  | 705 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 706 | static int rndis_keepalive_response(int configNr, | 
|  | 707 | rndis_keepalive_msg_type *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 709 | rndis_keepalive_cmplt_type *resp; | 
|  | 710 | rndis_resp_t *r; | 
|  | 711 | struct rndis_params *params = rndis_per_dev_params + configNr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 |  | 
|  | 713 | /* host "should" check only in RNDIS_DATA_INITIALIZED state */ | 
|  | 714 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 715 | r = rndis_add_response(configNr, sizeof(rndis_keepalive_cmplt_type)); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 716 | if (!r) | 
|  | 717 | return -ENOMEM; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 718 | resp = (rndis_keepalive_cmplt_type *)r->buf; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 719 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 720 | resp->MessageType = cpu_to_le32( | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | REMOTE_NDIS_KEEPALIVE_CMPLT); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 722 | resp->MessageLength = cpu_to_le32(16); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | resp->RequestID = buf->RequestID; /* Still LE in msg buffer */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 724 | resp->Status = cpu_to_le32(RNDIS_STATUS_SUCCESS); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 725 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 726 | params->resp_avail(params->v); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | return 0; | 
|  | 728 | } | 
|  | 729 |  | 
|  | 730 |  | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 731 | /* | 
|  | 732 | * Device to Host Comunication | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 734 | static int rndis_indicate_status_msg(int configNr, u32 status) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 736 | rndis_indicate_status_msg_type *resp; | 
|  | 737 | rndis_resp_t *r; | 
|  | 738 | struct rndis_params *params = rndis_per_dev_params + configNr; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 739 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 740 | if (params->state == RNDIS_UNINITIALIZED) | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 741 | return -ENOTSUPP; | 
|  | 742 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 743 | r = rndis_add_response(configNr, | 
|  | 744 | sizeof(rndis_indicate_status_msg_type)); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 745 | if (!r) | 
|  | 746 | return -ENOMEM; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 747 | resp = (rndis_indicate_status_msg_type *)r->buf; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 748 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 749 | resp->MessageType = cpu_to_le32(REMOTE_NDIS_INDICATE_STATUS_MSG); | 
|  | 750 | resp->MessageLength = cpu_to_le32(20); | 
|  | 751 | resp->Status = cpu_to_le32(status); | 
|  | 752 | resp->StatusBufferLength = cpu_to_le32(0); | 
|  | 753 | resp->StatusBufferOffset = cpu_to_le32(0); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 754 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 755 | params->resp_avail(params->v); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | return 0; | 
|  | 757 | } | 
|  | 758 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 759 | int rndis_signal_connect(int configNr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 761 | rndis_per_dev_params[configNr].media_state | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | = NDIS_MEDIA_STATE_CONNECTED; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 763 | return rndis_indicate_status_msg(configNr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | RNDIS_STATUS_MEDIA_CONNECT); | 
|  | 765 | } | 
|  | 766 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 767 | int rndis_signal_disconnect(int configNr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 769 | rndis_per_dev_params[configNr].media_state | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | = NDIS_MEDIA_STATE_DISCONNECTED; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 771 | return rndis_indicate_status_msg(configNr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | RNDIS_STATUS_MEDIA_DISCONNECT); | 
|  | 773 | } | 
|  | 774 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 775 | void rndis_uninit(int configNr) | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 776 | { | 
| David Brownell | 486e2df | 2005-05-24 17:51:52 -0700 | [diff] [blame] | 777 | u8 *buf; | 
|  | 778 | u32 length; | 
|  | 779 |  | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 780 | if (configNr >= RNDIS_MAX_CONFIGS) | 
|  | 781 | return; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 782 | rndis_per_dev_params[configNr].state = RNDIS_UNINITIALIZED; | 
| David Brownell | 486e2df | 2005-05-24 17:51:52 -0700 | [diff] [blame] | 783 |  | 
|  | 784 | /* drain the response queue */ | 
|  | 785 | while ((buf = rndis_get_next_response(configNr, &length))) | 
|  | 786 | rndis_free_response(configNr, buf); | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 787 | } | 
|  | 788 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 789 | void rndis_set_host_mac(int configNr, const u8 *addr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 791 | rndis_per_dev_params[configNr].host_mac = addr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | } | 
|  | 793 |  | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 794 | /* | 
|  | 795 | * Message Parser | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 797 | int rndis_msg_parser(u8 configNr, u8 *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | { | 
|  | 799 | u32 MsgType, MsgLength; | 
|  | 800 | __le32 *tmp; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 801 | struct rndis_params *params; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 802 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | if (!buf) | 
|  | 804 | return -ENOMEM; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 805 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 806 | tmp = (__le32 *)buf; | 
| Harvey Harrison | a5abdea | 2008-04-29 01:03:40 -0700 | [diff] [blame] | 807 | MsgType   = get_unaligned_le32(tmp++); | 
|  | 808 | MsgLength = get_unaligned_le32(tmp++); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 809 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | if (configNr >= RNDIS_MAX_CONFIGS) | 
|  | 811 | return -ENOTSUPP; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 812 | params = &rndis_per_dev_params[configNr]; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 813 |  | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 814 | /* NOTE: RNDIS is *EXTREMELY* chatty ... Windows constantly polls for | 
|  | 815 | * rx/tx statistics and link status, in addition to KEEPALIVE traffic | 
|  | 816 | * and normal HC level polling to see if there's any IN traffic. | 
|  | 817 | */ | 
|  | 818 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | /* For USB: responses may take up to 10 seconds */ | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 820 | switch (MsgType) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | case REMOTE_NDIS_INITIALIZE_MSG: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 822 | pr_debug("%s: REMOTE_NDIS_INITIALIZE_MSG\n", | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 823 | __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | params->state = RNDIS_INITIALIZED; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 825 | return rndis_init_response(configNr, | 
|  | 826 | (rndis_init_msg_type *)buf); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 827 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | case REMOTE_NDIS_HALT_MSG: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 829 | pr_debug("%s: REMOTE_NDIS_HALT_MSG\n", | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 830 | __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | params->state = RNDIS_UNINITIALIZED; | 
|  | 832 | if (params->dev) { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 833 | netif_carrier_off(params->dev); | 
|  | 834 | netif_stop_queue(params->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | } | 
|  | 836 | return 0; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 837 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | case REMOTE_NDIS_QUERY_MSG: | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 839 | return rndis_query_response(configNr, | 
|  | 840 | (rndis_query_msg_type *)buf); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 841 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | case REMOTE_NDIS_SET_MSG: | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 843 | return rndis_set_response(configNr, | 
|  | 844 | (rndis_set_msg_type *)buf); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 845 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | case REMOTE_NDIS_RESET_MSG: | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 847 | pr_debug("%s: REMOTE_NDIS_RESET_MSG\n", | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 848 | __func__); | 
|  | 849 | return rndis_reset_response(configNr, | 
|  | 850 | (rndis_reset_msg_type *)buf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 |  | 
|  | 852 | case REMOTE_NDIS_KEEPALIVE_MSG: | 
|  | 853 | /* For USB: host does this every 5 seconds */ | 
| David Brownell | 340600a | 2005-04-28 13:45:25 -0700 | [diff] [blame] | 854 | if (rndis_debug > 1) | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 855 | pr_debug("%s: REMOTE_NDIS_KEEPALIVE_MSG\n", | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 856 | __func__); | 
|  | 857 | return rndis_keepalive_response(configNr, | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 858 | (rndis_keepalive_msg_type *) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | buf); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 860 |  | 
|  | 861 | default: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | /* At least Windows XP emits some undefined RNDIS messages. | 
|  | 863 | * In one case those messages seemed to relate to the host | 
|  | 864 | * suspending itself. | 
|  | 865 | */ | 
| David Brownell | 0027492 | 2007-11-19 12:58:36 -0800 | [diff] [blame] | 866 | pr_warning("%s: unknown RNDIS message 0x%08X len %d\n", | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 867 | __func__, MsgType, MsgLength); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | { | 
|  | 869 | unsigned i; | 
|  | 870 | for (i = 0; i < MsgLength; i += 16) { | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 871 | pr_debug("%03d: " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | " %02x %02x %02x %02x" | 
|  | 873 | " %02x %02x %02x %02x" | 
|  | 874 | " %02x %02x %02x %02x" | 
|  | 875 | " %02x %02x %02x %02x" | 
|  | 876 | "\n", | 
|  | 877 | i, | 
|  | 878 | buf[i], buf [i+1], | 
|  | 879 | buf[i+2], buf[i+3], | 
|  | 880 | buf[i+4], buf [i+5], | 
|  | 881 | buf[i+6], buf[i+7], | 
|  | 882 | buf[i+8], buf [i+9], | 
|  | 883 | buf[i+10], buf[i+11], | 
|  | 884 | buf[i+12], buf [i+13], | 
|  | 885 | buf[i+14], buf[i+15]); | 
|  | 886 | } | 
|  | 887 | } | 
|  | 888 | break; | 
|  | 889 | } | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 890 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | return -ENOTSUPP; | 
|  | 892 | } | 
|  | 893 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 894 | int rndis_register(void (*resp_avail)(void *v), void *v) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | { | 
|  | 896 | u8 i; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 897 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 898 | if (!resp_avail) | 
|  | 899 | return -EINVAL; | 
|  | 900 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | for (i = 0; i < RNDIS_MAX_CONFIGS; i++) { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 902 | if (!rndis_per_dev_params[i].used) { | 
|  | 903 | rndis_per_dev_params[i].used = 1; | 
|  | 904 | rndis_per_dev_params[i].resp_avail = resp_avail; | 
|  | 905 | rndis_per_dev_params[i].v = v; | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 906 | pr_debug("%s: configNr = %d\n", __func__, i); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | return i; | 
|  | 908 | } | 
|  | 909 | } | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 910 | pr_debug("failed\n"); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 911 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 912 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | } | 
|  | 914 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 915 | void rndis_deregister(int configNr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 917 | pr_debug("%s:\n", __func__); | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 918 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | if (configNr >= RNDIS_MAX_CONFIGS) return; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 920 | rndis_per_dev_params[configNr].used = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | } | 
|  | 922 |  | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 923 | int rndis_set_param_dev(u8 configNr, struct net_device *dev, u16 *cdc_filter) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | { | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 925 | pr_debug("%s:\n", __func__); | 
| David Brownell | 15b2d2b | 2008-06-19 18:19:16 -0700 | [diff] [blame] | 926 | if (!dev) | 
|  | 927 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | if (configNr >= RNDIS_MAX_CONFIGS) return -1; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 929 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 930 | rndis_per_dev_params[configNr].dev = dev; | 
|  | 931 | rndis_per_dev_params[configNr].filter = cdc_filter; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 932 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | return 0; | 
|  | 934 | } | 
|  | 935 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 936 | int rndis_set_param_vendor(u8 configNr, u32 vendorID, const char *vendorDescr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | { | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 938 | pr_debug("%s:\n", __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | if (!vendorDescr) return -1; | 
|  | 940 | if (configNr >= RNDIS_MAX_CONFIGS) return -1; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 941 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 942 | rndis_per_dev_params[configNr].vendorID = vendorID; | 
|  | 943 | rndis_per_dev_params[configNr].vendorDescr = vendorDescr; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 944 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | return 0; | 
|  | 946 | } | 
|  | 947 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 948 | int rndis_set_param_medium(u8 configNr, u32 medium, u32 speed) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | { | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 950 | pr_debug("%s: %u %u\n", __func__, medium, speed); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | if (configNr >= RNDIS_MAX_CONFIGS) return -1; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 952 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 953 | rndis_per_dev_params[configNr].medium = medium; | 
|  | 954 | rndis_per_dev_params[configNr].speed = speed; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 955 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | return 0; | 
|  | 957 | } | 
|  | 958 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 959 | void rndis_add_hdr(struct sk_buff *skb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 961 | struct rndis_packet_msg_type *header; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 |  | 
|  | 963 | if (!skb) | 
|  | 964 | return; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 965 | header = (void *)skb_push(skb, sizeof(*header)); | 
|  | 966 | memset(header, 0, sizeof *header); | 
| Harvey Harrison | 35c26c2 | 2009-02-14 22:56:56 -0800 | [diff] [blame] | 967 | header->MessageType = cpu_to_le32(REMOTE_NDIS_PACKET_MSG); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | header->MessageLength = cpu_to_le32(skb->len); | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 969 | header->DataOffset = cpu_to_le32(36); | 
|  | 970 | header->DataLength = cpu_to_le32(skb->len - sizeof(*header)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | } | 
|  | 972 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 973 | void rndis_free_response(int configNr, u8 *buf) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 975 | rndis_resp_t *r; | 
|  | 976 | struct list_head *act, *tmp; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 977 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 978 | list_for_each_safe(act, tmp, | 
|  | 979 | &(rndis_per_dev_params[configNr].resp_queue)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 981 | r = list_entry(act, rndis_resp_t, list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | if (r && r->buf == buf) { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 983 | list_del(&r->list); | 
|  | 984 | kfree(r); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | } | 
|  | 986 | } | 
|  | 987 | } | 
|  | 988 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 989 | u8 *rndis_get_next_response(int configNr, u32 *length) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 991 | rndis_resp_t *r; | 
|  | 992 | struct list_head *act, *tmp; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 993 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | if (!length) return NULL; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 995 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 996 | list_for_each_safe(act, tmp, | 
|  | 997 | &(rndis_per_dev_params[configNr].resp_queue)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 999 | r = list_entry(act, rndis_resp_t, list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | if (!r->send) { | 
|  | 1001 | r->send = 1; | 
|  | 1002 | *length = r->length; | 
|  | 1003 | return r->buf; | 
|  | 1004 | } | 
|  | 1005 | } | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1006 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | return NULL; | 
|  | 1008 | } | 
|  | 1009 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1010 | static rndis_resp_t *rndis_add_response(int configNr, u32 length) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1012 | rndis_resp_t *r; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1013 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1014 | /* NOTE: this gets copied into ether.c USB_BUFSIZ bytes ... */ | 
|  | 1015 | r = kmalloc(sizeof(rndis_resp_t) + length, GFP_ATOMIC); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | if (!r) return NULL; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1017 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1018 | r->buf = (u8 *)(r + 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | r->length = length; | 
|  | 1020 | r->send = 0; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1021 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1022 | list_add_tail(&r->list, | 
|  | 1023 | &(rndis_per_dev_params[configNr].resp_queue)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | return r; | 
|  | 1025 | } | 
|  | 1026 |  | 
| Brian Niebuhr | 9b39e9d | 2009-08-14 10:04:22 -0500 | [diff] [blame] | 1027 | int rndis_rm_hdr(struct gether *port, | 
|  | 1028 | struct sk_buff *skb, | 
|  | 1029 | struct sk_buff_head *list) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | { | 
| David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1031 | /* tmp points to a struct rndis_packet_msg_type */ | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1032 | __le32 *tmp = (void *)skb->data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 |  | 
| David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1034 | /* MessageType, MessageLength */ | 
| Harvey Harrison | 35c26c2 | 2009-02-14 22:56:56 -0800 | [diff] [blame] | 1035 | if (cpu_to_le32(REMOTE_NDIS_PACKET_MSG) | 
| Brian Niebuhr | 9b39e9d | 2009-08-14 10:04:22 -0500 | [diff] [blame] | 1036 | != get_unaligned(tmp++)) { | 
|  | 1037 | dev_kfree_skb_any(skb); | 
| David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1038 | return -EINVAL; | 
| Brian Niebuhr | 9b39e9d | 2009-08-14 10:04:22 -0500 | [diff] [blame] | 1039 | } | 
| David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1040 | tmp++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 |  | 
| David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1042 | /* DataOffset, DataLength */ | 
| Brian Niebuhr | 9b39e9d | 2009-08-14 10:04:22 -0500 | [diff] [blame] | 1043 | if (!skb_pull(skb, get_unaligned_le32(tmp++) + 8)) { | 
|  | 1044 | dev_kfree_skb_any(skb); | 
| David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1045 | return -EOVERFLOW; | 
| Brian Niebuhr | 9b39e9d | 2009-08-14 10:04:22 -0500 | [diff] [blame] | 1046 | } | 
| Harvey Harrison | a5abdea | 2008-04-29 01:03:40 -0700 | [diff] [blame] | 1047 | skb_trim(skb, get_unaligned_le32(tmp++)); | 
| David Brownell | 6cdee10 | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1048 |  | 
| Brian Niebuhr | 9b39e9d | 2009-08-14 10:04:22 -0500 | [diff] [blame] | 1049 | skb_queue_tail(list, skb); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | return 0; | 
|  | 1051 | } | 
|  | 1052 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1053 | #ifdef CONFIG_USB_GADGET_DEBUG_FILES | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 |  | 
| Alexey Dobriyan | e184d5f | 2008-05-14 16:25:13 -0700 | [diff] [blame] | 1055 | static int rndis_proc_show(struct seq_file *m, void *v) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | { | 
| Alexey Dobriyan | e184d5f | 2008-05-14 16:25:13 -0700 | [diff] [blame] | 1057 | rndis_params *param = m->private; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1058 |  | 
| Alexey Dobriyan | e184d5f | 2008-05-14 16:25:13 -0700 | [diff] [blame] | 1059 | seq_printf(m, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | "Config Nr. %d\n" | 
|  | 1061 | "used      : %s\n" | 
|  | 1062 | "state     : %s\n" | 
|  | 1063 | "medium    : 0x%08X\n" | 
|  | 1064 | "speed     : %d\n" | 
|  | 1065 | "cable     : %s\n" | 
|  | 1066 | "vendor ID : 0x%08X\n" | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1067 | "vendor    : %s\n", | 
|  | 1068 | param->confignr, (param->used) ? "y" : "n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | ({ char *s = "?"; | 
|  | 1070 | switch (param->state) { | 
|  | 1071 | case RNDIS_UNINITIALIZED: | 
|  | 1072 | s = "RNDIS_UNINITIALIZED"; break; | 
|  | 1073 | case RNDIS_INITIALIZED: | 
|  | 1074 | s = "RNDIS_INITIALIZED"; break; | 
|  | 1075 | case RNDIS_DATA_INITIALIZED: | 
|  | 1076 | s = "RNDIS_DATA_INITIALIZED"; break; | 
|  | 1077 | }; s; }), | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1078 | param->medium, | 
|  | 1079 | (param->media_state) ? 0 : param->speed*100, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | (param->media_state) ? "disconnected" : "connected", | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1081 | param->vendorID, param->vendorDescr); | 
| Alexey Dobriyan | e184d5f | 2008-05-14 16:25:13 -0700 | [diff] [blame] | 1082 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | } | 
|  | 1084 |  | 
| Alexey Dobriyan | e184d5f | 2008-05-14 16:25:13 -0700 | [diff] [blame] | 1085 | static ssize_t rndis_proc_write(struct file *file, const char __user *buffer, | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1086 | size_t count, loff_t *ppos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | { | 
| Alexey Dobriyan | e184d5f | 2008-05-14 16:25:13 -0700 | [diff] [blame] | 1088 | rndis_params *p = PDE(file->f_path.dentry->d_inode)->data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | u32 speed = 0; | 
|  | 1090 | int i, fl_speed = 0; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1091 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | for (i = 0; i < count; i++) { | 
|  | 1093 | char c; | 
|  | 1094 | if (get_user(c, buffer)) | 
|  | 1095 | return -EFAULT; | 
|  | 1096 | switch (c) { | 
|  | 1097 | case '0': | 
|  | 1098 | case '1': | 
|  | 1099 | case '2': | 
|  | 1100 | case '3': | 
|  | 1101 | case '4': | 
|  | 1102 | case '5': | 
|  | 1103 | case '6': | 
|  | 1104 | case '7': | 
|  | 1105 | case '8': | 
|  | 1106 | case '9': | 
|  | 1107 | fl_speed = 1; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1108 | speed = speed * 10 + c - '0'; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | break; | 
|  | 1110 | case 'C': | 
|  | 1111 | case 'c': | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1112 | rndis_signal_connect(p->confignr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | break; | 
|  | 1114 | case 'D': | 
|  | 1115 | case 'd': | 
|  | 1116 | rndis_signal_disconnect(p->confignr); | 
|  | 1117 | break; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1118 | default: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | if (fl_speed) p->speed = speed; | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 1120 | else pr_debug("%c is not valid\n", c); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | break; | 
|  | 1122 | } | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1123 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | buffer++; | 
|  | 1125 | } | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1126 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | return count; | 
|  | 1128 | } | 
|  | 1129 |  | 
| Alexey Dobriyan | e184d5f | 2008-05-14 16:25:13 -0700 | [diff] [blame] | 1130 | static int rndis_proc_open(struct inode *inode, struct file *file) | 
|  | 1131 | { | 
|  | 1132 | return single_open(file, rndis_proc_show, PDE(inode)->data); | 
|  | 1133 | } | 
|  | 1134 |  | 
|  | 1135 | static const struct file_operations rndis_proc_fops = { | 
|  | 1136 | .owner		= THIS_MODULE, | 
|  | 1137 | .open		= rndis_proc_open, | 
|  | 1138 | .read		= seq_read, | 
|  | 1139 | .llseek		= seq_lseek, | 
|  | 1140 | .release	= single_release, | 
|  | 1141 | .write		= rndis_proc_write, | 
|  | 1142 | }; | 
|  | 1143 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1144 | #define	NAME_TEMPLATE "driver/rndis-%03d" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 |  | 
|  | 1146 | static struct proc_dir_entry *rndis_connect_state [RNDIS_MAX_CONFIGS]; | 
|  | 1147 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1148 | #endif /* CONFIG_USB_GADGET_DEBUG_FILES */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 |  | 
|  | 1150 |  | 
| Henrik Kretzschmar | 793f03a | 2010-08-20 19:57:50 +0200 | [diff] [blame] | 1151 | int rndis_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | { | 
|  | 1153 | u8 i; | 
|  | 1154 |  | 
|  | 1155 | for (i = 0; i < RNDIS_MAX_CONFIGS; i++) { | 
|  | 1156 | #ifdef	CONFIG_USB_GADGET_DEBUG_FILES | 
|  | 1157 | char name [20]; | 
|  | 1158 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1159 | sprintf(name, NAME_TEMPLATE, i); | 
|  | 1160 | rndis_connect_state[i] = proc_create_data(name, 0660, NULL, | 
| Alexey Dobriyan | e184d5f | 2008-05-14 16:25:13 -0700 | [diff] [blame] | 1161 | &rndis_proc_fops, | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1162 | (void *)(rndis_per_dev_params + i)); | 
|  | 1163 | if (!rndis_connect_state[i]) { | 
|  | 1164 | pr_debug("%s: remove entries", __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | while (i) { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1166 | sprintf(name, NAME_TEMPLATE, --i); | 
|  | 1167 | remove_proc_entry(name, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | } | 
| David Brownell | 33376c1 | 2008-08-18 17:45:07 -0700 | [diff] [blame] | 1169 | pr_debug("\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | return -EIO; | 
|  | 1171 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1172 | #endif | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1173 | rndis_per_dev_params[i].confignr = i; | 
|  | 1174 | rndis_per_dev_params[i].used = 0; | 
|  | 1175 | rndis_per_dev_params[i].state = RNDIS_UNINITIALIZED; | 
|  | 1176 | rndis_per_dev_params[i].media_state | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | = NDIS_MEDIA_STATE_DISCONNECTED; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1178 | INIT_LIST_HEAD(&(rndis_per_dev_params[i].resp_queue)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | } | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1180 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | return 0; | 
|  | 1182 | } | 
|  | 1183 |  | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1184 | void rndis_exit(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1186 | #ifdef CONFIG_USB_GADGET_DEBUG_FILES | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | u8 i; | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1188 | char name[20]; | 
| David Brownell | 7e27f18 | 2006-06-13 09:54:40 -0700 | [diff] [blame] | 1189 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | for (i = 0; i < RNDIS_MAX_CONFIGS; i++) { | 
| Mihai Donțu | a1df4e4 | 2010-09-08 02:54:02 +0300 | [diff] [blame] | 1191 | sprintf(name, NAME_TEMPLATE, i); | 
|  | 1192 | remove_proc_entry(name, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | } | 
|  | 1194 | #endif | 
|  | 1195 | } |