blob: a322a16d9cf8a52f0548dc2845a1b47534196801 [file] [log] [blame]
David Brownell64e04912005-08-31 09:54:36 -07001/*
2 * Host Side support for RNDIS Networking Links
3 * Copyright (C) 2005 by David Brownell
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20// #define DEBUG // error path messages, extra info
21// #define VERBOSE // more; success messages
22
David Brownell64e04912005-08-31 09:54:36 -070023#include <linux/module.h>
24#include <linux/sched.h>
25#include <linux/init.h>
26#include <linux/netdevice.h>
27#include <linux/etherdevice.h>
28#include <linux/ethtool.h>
29#include <linux/workqueue.h>
30#include <linux/mii.h>
31#include <linux/usb.h>
David Brownella8c28f22006-06-13 09:57:47 -070032#include <linux/usb/cdc.h>
David Brownell64e04912005-08-31 09:54:36 -070033
34#include "usbnet.h"
35
36
37/*
38 * RNDIS is NDIS remoted over USB. It's a MSFT variant of CDC ACM ... of
39 * course ACM was intended for modems, not Ethernet links! USB's standard
40 * for Ethernet links is "CDC Ethernet", which is significantly simpler.
David Brownell51400f12006-04-02 10:19:08 -080041 *
42 * NOTE that Microsoft's "RNDIS 1.0" specification is incomplete. Issues
43 * include:
44 * - Power management in particular relies on information that's scattered
45 * through other documentation, and which is incomplete or incorrect even
46 * there.
47 * - There are various undocumented protocol requirements, such as the
48 * need to send unused garbage in control-OUT messages.
49 * - In some cases, MS-Windows will emit undocumented requests; this
50 * matters more to peripheral implementations than host ones.
51 *
52 * For these reasons and others, ** USE OF RNDIS IS STRONGLY DISCOURAGED ** in
53 * favor of such non-proprietary alternatives as CDC Ethernet or the newer (and
54 * currently rare) "Ethernet Emulation Model" (EEM).
David Brownell64e04912005-08-31 09:54:36 -070055 */
56
57/*
58 * CONTROL uses CDC "encapsulated commands" with funky notifications.
59 * - control-out: SEND_ENCAPSULATED
60 * - interrupt-in: RESPONSE_AVAILABLE
61 * - control-in: GET_ENCAPSULATED
62 *
63 * We'll try to ignore the RESPONSE_AVAILABLE notifications.
64 */
65struct rndis_msg_hdr {
66 __le32 msg_type; /* RNDIS_MSG_* */
67 __le32 msg_len;
68 // followed by data that varies between messages
69 __le32 request_id;
70 __le32 status;
71 // ... and more
72} __attribute__ ((packed));
73
74/* RNDIS defines this (absurdly huge) control timeout */
75#define RNDIS_CONTROL_TIMEOUT_MS (10 * 1000)
76
77
78#define ccpu2 __constant_cpu_to_le32
79
80#define RNDIS_MSG_COMPLETION ccpu2(0x80000000)
81
82/* codes for "msg_type" field of rndis messages;
83 * only the data channel uses packet messages (maybe batched);
84 * everything else goes on the control channel.
85 */
86#define RNDIS_MSG_PACKET ccpu2(0x00000001) /* 1-N packets */
87#define RNDIS_MSG_INIT ccpu2(0x00000002)
David Brownell51400f12006-04-02 10:19:08 -080088#define RNDIS_MSG_INIT_C (RNDIS_MSG_INIT|RNDIS_MSG_COMPLETION)
David Brownell64e04912005-08-31 09:54:36 -070089#define RNDIS_MSG_HALT ccpu2(0x00000003)
90#define RNDIS_MSG_QUERY ccpu2(0x00000004)
David Brownell51400f12006-04-02 10:19:08 -080091#define RNDIS_MSG_QUERY_C (RNDIS_MSG_QUERY|RNDIS_MSG_COMPLETION)
David Brownell64e04912005-08-31 09:54:36 -070092#define RNDIS_MSG_SET ccpu2(0x00000005)
David Brownell51400f12006-04-02 10:19:08 -080093#define RNDIS_MSG_SET_C (RNDIS_MSG_SET|RNDIS_MSG_COMPLETION)
David Brownell64e04912005-08-31 09:54:36 -070094#define RNDIS_MSG_RESET ccpu2(0x00000006)
David Brownell51400f12006-04-02 10:19:08 -080095#define RNDIS_MSG_RESET_C (RNDIS_MSG_RESET|RNDIS_MSG_COMPLETION)
David Brownell64e04912005-08-31 09:54:36 -070096#define RNDIS_MSG_INDICATE ccpu2(0x00000007)
97#define RNDIS_MSG_KEEPALIVE ccpu2(0x00000008)
David Brownell51400f12006-04-02 10:19:08 -080098#define RNDIS_MSG_KEEPALIVE_C (RNDIS_MSG_KEEPALIVE|RNDIS_MSG_COMPLETION)
David Brownell64e04912005-08-31 09:54:36 -070099
100/* codes for "status" field of completion messages */
101#define RNDIS_STATUS_SUCCESS ccpu2(0x00000000)
102#define RNDIS_STATUS_FAILURE ccpu2(0xc0000001)
103#define RNDIS_STATUS_INVALID_DATA ccpu2(0xc0010015)
104#define RNDIS_STATUS_NOT_SUPPORTED ccpu2(0xc00000bb)
105#define RNDIS_STATUS_MEDIA_CONNECT ccpu2(0x4001000b)
106#define RNDIS_STATUS_MEDIA_DISCONNECT ccpu2(0x4001000c)
107
108
109struct rndis_data_hdr {
110 __le32 msg_type; /* RNDIS_MSG_PACKET */
111 __le32 msg_len; // rndis_data_hdr + data_len + pad
112 __le32 data_offset; // 36 -- right after header
113 __le32 data_len; // ... real packet size
114
115 __le32 oob_data_offset; // zero
116 __le32 oob_data_len; // zero
117 __le32 num_oob; // zero
118 __le32 packet_data_offset; // zero
119
120 __le32 packet_data_len; // zero
121 __le32 vc_handle; // zero
122 __le32 reserved; // zero
123} __attribute__ ((packed));
124
125struct rndis_init { /* OUT */
126 // header and:
127 __le32 msg_type; /* RNDIS_MSG_INIT */
128 __le32 msg_len; // 24
129 __le32 request_id;
130 __le32 major_version; // of rndis (1.0)
131 __le32 minor_version;
132 __le32 max_transfer_size;
133} __attribute__ ((packed));
134
135struct rndis_init_c { /* IN */
136 // header and:
137 __le32 msg_type; /* RNDIS_MSG_INIT_C */
138 __le32 msg_len;
139 __le32 request_id;
140 __le32 status;
141 __le32 major_version; // of rndis (1.0)
142 __le32 minor_version;
143 __le32 device_flags;
144 __le32 medium; // zero == 802.3
145 __le32 max_packets_per_message;
146 __le32 max_transfer_size;
147 __le32 packet_alignment; // max 7; (1<<n) bytes
148 __le32 af_list_offset; // zero
149 __le32 af_list_size; // zero
150} __attribute__ ((packed));
151
152struct rndis_halt { /* OUT (no reply) */
153 // header and:
154 __le32 msg_type; /* RNDIS_MSG_HALT */
155 __le32 msg_len;
156 __le32 request_id;
157} __attribute__ ((packed));
158
159struct rndis_query { /* OUT */
160 // header and:
161 __le32 msg_type; /* RNDIS_MSG_QUERY */
162 __le32 msg_len;
163 __le32 request_id;
164 __le32 oid;
165 __le32 len;
166 __le32 offset;
167/*?*/ __le32 handle; // zero
168} __attribute__ ((packed));
169
170struct rndis_query_c { /* IN */
171 // header and:
172 __le32 msg_type; /* RNDIS_MSG_QUERY_C */
173 __le32 msg_len;
174 __le32 request_id;
175 __le32 status;
176 __le32 len;
177 __le32 offset;
178} __attribute__ ((packed));
179
180struct rndis_set { /* OUT */
181 // header and:
182 __le32 msg_type; /* RNDIS_MSG_SET */
183 __le32 msg_len;
184 __le32 request_id;
185 __le32 oid;
186 __le32 len;
187 __le32 offset;
188/*?*/ __le32 handle; // zero
189} __attribute__ ((packed));
190
191struct rndis_set_c { /* IN */
192 // header and:
193 __le32 msg_type; /* RNDIS_MSG_SET_C */
194 __le32 msg_len;
195 __le32 request_id;
196 __le32 status;
197} __attribute__ ((packed));
198
199struct rndis_reset { /* IN */
200 // header and:
201 __le32 msg_type; /* RNDIS_MSG_RESET */
202 __le32 msg_len;
203 __le32 reserved;
204} __attribute__ ((packed));
205
206struct rndis_reset_c { /* OUT */
207 // header and:
208 __le32 msg_type; /* RNDIS_MSG_RESET_C */
209 __le32 msg_len;
210 __le32 status;
211 __le32 addressing_lost;
212} __attribute__ ((packed));
213
214struct rndis_indicate { /* IN (unrequested) */
215 // header and:
216 __le32 msg_type; /* RNDIS_MSG_INDICATE */
217 __le32 msg_len;
218 __le32 status;
219 __le32 length;
220 __le32 offset;
221/**/ __le32 diag_status;
222 __le32 error_offset;
223/**/ __le32 message;
224} __attribute__ ((packed));
225
226struct rndis_keepalive { /* OUT (optionally IN) */
227 // header and:
228 __le32 msg_type; /* RNDIS_MSG_KEEPALIVE */
229 __le32 msg_len;
230 __le32 request_id;
231} __attribute__ ((packed));
232
233struct rndis_keepalive_c { /* IN (optionally OUT) */
234 // header and:
235 __le32 msg_type; /* RNDIS_MSG_KEEPALIVE_C */
236 __le32 msg_len;
237 __le32 request_id;
238 __le32 status;
239} __attribute__ ((packed));
240
241/* NOTE: about 30 OIDs are "mandatory" for peripherals to support ... and
242 * there are gobs more that may optionally be supported. We'll avoid as much
243 * of that mess as possible.
244 */
245#define OID_802_3_PERMANENT_ADDRESS ccpu2(0x01010101)
246#define OID_GEN_CURRENT_PACKET_FILTER ccpu2(0x0001010e)
247
248/*
249 * RNDIS notifications from device: command completion; "reverse"
250 * keepalives; etc
251 */
252static void rndis_status(struct usbnet *dev, struct urb *urb)
253{
254 devdbg(dev, "rndis status urb, len %d stat %d",
255 urb->actual_length, urb->status);
256 // FIXME for keepalives, respond immediately (asynchronously)
257 // if not an RNDIS status, do like cdc_status(dev,urb) does
258}
259
260/*
261 * RPC done RNDIS-style. Caller guarantees:
262 * - message is properly byteswapped
263 * - there's no other request pending
264 * - buf can hold up to 1KB response (required by RNDIS spec)
265 * On return, the first few entries are already byteswapped.
266 *
267 * Call context is likely probe(), before interface name is known,
268 * which is why we won't try to use it in the diagnostics.
269 */
270static int rndis_command(struct usbnet *dev, struct rndis_msg_hdr *buf)
271{
272 struct cdc_state *info = (void *) &dev->data;
273 int retval;
274 unsigned count;
275 __le32 rsp;
276 u32 xid = 0, msg_len, request_id;
277
278 /* REVISIT when this gets called from contexts other than probe() or
279 * disconnect(): either serialize, or dispatch responses on xid
280 */
281
282 /* Issue the request; don't bother byteswapping our xid */
283 if (likely(buf->msg_type != RNDIS_MSG_HALT
284 && buf->msg_type != RNDIS_MSG_RESET)) {
285 xid = dev->xid++;
286 if (!xid)
287 xid = dev->xid++;
288 buf->request_id = (__force __le32) xid;
289 }
290 retval = usb_control_msg(dev->udev,
291 usb_sndctrlpipe(dev->udev, 0),
292 USB_CDC_SEND_ENCAPSULATED_COMMAND,
293 USB_TYPE_CLASS | USB_RECIP_INTERFACE,
294 0, info->u->bMasterInterface0,
295 buf, le32_to_cpu(buf->msg_len),
296 RNDIS_CONTROL_TIMEOUT_MS);
297 if (unlikely(retval < 0 || xid == 0))
298 return retval;
299
300 // FIXME Seems like some devices discard responses when
301 // we time out and cancel our "get response" requests...
302 // so, this is fragile. Probably need to poll for status.
303
304 /* ignore status endpoint, just poll the control channel;
305 * the request probably completed immediately
306 */
307 rsp = buf->msg_type | RNDIS_MSG_COMPLETION;
308 for (count = 0; count < 10; count++) {
309 memset(buf, 0, 1024);
310 retval = usb_control_msg(dev->udev,
311 usb_rcvctrlpipe(dev->udev, 0),
312 USB_CDC_GET_ENCAPSULATED_RESPONSE,
313 USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
314 0, info->u->bMasterInterface0,
315 buf, 1024,
316 RNDIS_CONTROL_TIMEOUT_MS);
317 if (likely(retval >= 8)) {
318 msg_len = le32_to_cpu(buf->msg_len);
319 request_id = (__force u32) buf->request_id;
320 if (likely(buf->msg_type == rsp)) {
321 if (likely(request_id == xid)) {
322 if (unlikely(rsp == RNDIS_MSG_RESET_C))
323 return 0;
324 if (likely(RNDIS_STATUS_SUCCESS
325 == buf->status))
326 return 0;
327 dev_dbg(&info->control->dev,
328 "rndis reply status %08x\n",
329 le32_to_cpu(buf->status));
330 return -EL3RST;
331 }
332 dev_dbg(&info->control->dev,
333 "rndis reply id %d expected %d\n",
334 request_id, xid);
335 /* then likely retry */
336 } else switch (buf->msg_type) {
337 case RNDIS_MSG_INDICATE: { /* fault */
338 // struct rndis_indicate *msg = (void *)buf;
339 dev_info(&info->control->dev,
340 "rndis fault indication\n");
341 }
342 break;
343 case RNDIS_MSG_KEEPALIVE: { /* ping */
344 struct rndis_keepalive_c *msg = (void *)buf;
345
346 msg->msg_type = RNDIS_MSG_KEEPALIVE_C;
347 msg->msg_len = ccpu2(sizeof *msg);
348 msg->status = RNDIS_STATUS_SUCCESS;
349 retval = usb_control_msg(dev->udev,
350 usb_sndctrlpipe(dev->udev, 0),
351 USB_CDC_SEND_ENCAPSULATED_COMMAND,
352 USB_TYPE_CLASS | USB_RECIP_INTERFACE,
353 0, info->u->bMasterInterface0,
354 msg, sizeof *msg,
355 RNDIS_CONTROL_TIMEOUT_MS);
356 if (unlikely(retval < 0))
357 dev_dbg(&info->control->dev,
358 "rndis keepalive err %d\n",
359 retval);
360 }
361 break;
362 default:
363 dev_dbg(&info->control->dev,
364 "unexpected rndis msg %08x len %d\n",
365 le32_to_cpu(buf->msg_type), msg_len);
366 }
367 } else {
368 /* device probably issued a protocol stall; ignore */
369 dev_dbg(&info->control->dev,
370 "rndis response error, code %d\n", retval);
371 }
372 msleep(2);
373 }
374 dev_dbg(&info->control->dev, "rndis response timeout\n");
375 return -ETIMEDOUT;
376}
377
378static int rndis_bind(struct usbnet *dev, struct usb_interface *intf)
379{
380 int retval;
381 struct net_device *net = dev->net;
Daniel Gollubdeb31f12007-01-16 11:03:01 +0100382 struct cdc_state *info = (void *) &dev->data;
David Brownell64e04912005-08-31 09:54:36 -0700383 union {
384 void *buf;
385 struct rndis_msg_hdr *header;
386 struct rndis_init *init;
387 struct rndis_init_c *init_c;
388 struct rndis_query *get;
389 struct rndis_query_c *get_c;
390 struct rndis_set *set;
391 struct rndis_set_c *set_c;
392 } u;
393 u32 tmp;
394
395 /* we can't rely on i/o from stack working, or stack allocation */
396 u.buf = kmalloc(1024, GFP_KERNEL);
397 if (!u.buf)
398 return -ENOMEM;
399 retval = usbnet_generic_cdc_bind(dev, intf);
400 if (retval < 0)
Daniel Gollubdeb31f12007-01-16 11:03:01 +0100401 goto fail;
David Brownell64e04912005-08-31 09:54:36 -0700402
403 net->hard_header_len += sizeof (struct rndis_data_hdr);
404
405 /* initialize; max transfer is 16KB at full speed */
406 u.init->msg_type = RNDIS_MSG_INIT;
407 u.init->msg_len = ccpu2(sizeof *u.init);
408 u.init->major_version = ccpu2(1);
409 u.init->minor_version = ccpu2(0);
410 u.init->max_transfer_size = ccpu2(net->mtu + net->hard_header_len);
411
412 retval = rndis_command(dev, u.header);
413 if (unlikely(retval < 0)) {
414 /* it might not even be an RNDIS device!! */
415 dev_err(&intf->dev, "RNDIS init failed, %d\n", retval);
Daniel Gollubdeb31f12007-01-16 11:03:01 +0100416 goto fail_and_release;
David Brownell64e04912005-08-31 09:54:36 -0700417 }
418 dev->hard_mtu = le32_to_cpu(u.init_c->max_transfer_size);
419 /* REVISIT: peripheral "alignment" request is ignored ... */
420 dev_dbg(&intf->dev, "hard mtu %u, align %d\n", dev->hard_mtu,
421 1 << le32_to_cpu(u.init_c->packet_alignment));
422
423 /* get designated host ethernet address */
424 memset(u.get, 0, sizeof *u.get);
425 u.get->msg_type = RNDIS_MSG_QUERY;
426 u.get->msg_len = ccpu2(sizeof *u.get);
427 u.get->oid = OID_802_3_PERMANENT_ADDRESS;
428
429 retval = rndis_command(dev, u.header);
430 if (unlikely(retval < 0)) {
431 dev_err(&intf->dev, "rndis get ethaddr, %d\n", retval);
Daniel Gollubdeb31f12007-01-16 11:03:01 +0100432 goto fail_and_release;
David Brownell64e04912005-08-31 09:54:36 -0700433 }
434 tmp = le32_to_cpu(u.get_c->offset);
435 if (unlikely((tmp + 8) > (1024 - ETH_ALEN)
436 || u.get_c->len != ccpu2(ETH_ALEN))) {
437 dev_err(&intf->dev, "rndis ethaddr off %d len %d ?\n",
438 tmp, le32_to_cpu(u.get_c->len));
439 retval = -EDOM;
Daniel Gollubdeb31f12007-01-16 11:03:01 +0100440 goto fail_and_release;
David Brownell64e04912005-08-31 09:54:36 -0700441 }
442 memcpy(net->dev_addr, tmp + (char *)&u.get_c->request_id, ETH_ALEN);
443
444 /* set a nonzero filter to enable data transfers */
445 memset(u.set, 0, sizeof *u.set);
446 u.set->msg_type = RNDIS_MSG_SET;
447 u.set->msg_len = ccpu2(4 + sizeof *u.set);
448 u.set->oid = OID_GEN_CURRENT_PACKET_FILTER;
449 u.set->len = ccpu2(4);
450 u.set->offset = ccpu2((sizeof *u.set) - 8);
451 *(__le32 *)(u.buf + sizeof *u.set) = ccpu2(DEFAULT_FILTER);
452
453 retval = rndis_command(dev, u.header);
454 if (unlikely(retval < 0)) {
455 dev_err(&intf->dev, "rndis set packet filter, %d\n", retval);
Daniel Gollubdeb31f12007-01-16 11:03:01 +0100456 goto fail_and_release;
David Brownell64e04912005-08-31 09:54:36 -0700457 }
458
459 retval = 0;
Daniel Gollubdeb31f12007-01-16 11:03:01 +0100460
461 kfree(u.buf);
462 return retval;
463
464fail_and_release:
465 usb_set_intfdata(info->data, NULL);
466 usb_driver_release_interface(driver_of(intf), info->data);
467fail:
David Brownell64e04912005-08-31 09:54:36 -0700468 kfree(u.buf);
469 return retval;
470}
471
472static void rndis_unbind(struct usbnet *dev, struct usb_interface *intf)
473{
474 struct rndis_halt *halt;
475
476 /* try to clear any rndis state/activity (no i/o from stack!) */
Robert P. J. Daycd861282006-12-13 00:34:52 -0800477 halt = kzalloc(sizeof *halt, GFP_KERNEL);
David Brownell64e04912005-08-31 09:54:36 -0700478 if (halt) {
479 halt->msg_type = RNDIS_MSG_HALT;
480 halt->msg_len = ccpu2(sizeof *halt);
481 (void) rndis_command(dev, (void *)halt);
482 kfree(halt);
483 }
484
485 return usbnet_cdc_unbind(dev, intf);
486}
487
488/*
489 * DATA -- host must not write zlps
490 */
491static int rndis_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
492{
493 /* peripheral may have batched packets to us... */
494 while (likely(skb->len)) {
495 struct rndis_data_hdr *hdr = (void *)skb->data;
496 struct sk_buff *skb2;
497 u32 msg_len, data_offset, data_len;
498
499 msg_len = le32_to_cpu(hdr->msg_len);
500 data_offset = le32_to_cpu(hdr->data_offset);
501 data_len = le32_to_cpu(hdr->data_len);
502
503 /* don't choke if we see oob, per-packet data, etc */
504 if (unlikely(hdr->msg_type != RNDIS_MSG_PACKET
505 || skb->len < msg_len
506 || (data_offset + data_len + 8) > msg_len)) {
507 dev->stats.rx_frame_errors++;
508 devdbg(dev, "bad rndis message %d/%d/%d/%d, len %d",
509 le32_to_cpu(hdr->msg_type),
510 msg_len, data_offset, data_len, skb->len);
511 return 0;
512 }
513 skb_pull(skb, 8 + data_offset);
514
515 /* at most one packet left? */
516 if (likely((data_len - skb->len) <= sizeof *hdr)) {
517 skb_trim(skb, data_len);
518 break;
519 }
520
521 /* try to return all the packets in the batch */
522 skb2 = skb_clone(skb, GFP_ATOMIC);
523 if (unlikely(!skb2))
524 break;
525 skb_pull(skb, msg_len - sizeof *hdr);
526 skb_trim(skb2, data_len);
527 usbnet_skb_return(dev, skb2);
528 }
529
530 /* caller will usbnet_skb_return the remaining packet */
531 return 1;
532}
533
534static struct sk_buff *
Al Viro55016f12005-10-21 03:21:58 -0400535rndis_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags)
David Brownell64e04912005-08-31 09:54:36 -0700536{
537 struct rndis_data_hdr *hdr;
538 struct sk_buff *skb2;
539 unsigned len = skb->len;
540
541 if (likely(!skb_cloned(skb))) {
542 int room = skb_headroom(skb);
543
544 /* enough head room as-is? */
545 if (unlikely((sizeof *hdr) <= room))
546 goto fill;
547
548 /* enough room, but needs to be readjusted? */
549 room += skb_tailroom(skb);
550 if (likely((sizeof *hdr) <= room)) {
551 skb->data = memmove(skb->head + sizeof *hdr,
552 skb->data, len);
553 skb->tail = skb->data + len;
554 goto fill;
555 }
556 }
557
558 /* create a new skb, with the correct size (and tailpad) */
559 skb2 = skb_copy_expand(skb, sizeof *hdr, 1, flags);
560 dev_kfree_skb_any(skb);
561 if (unlikely(!skb2))
562 return skb2;
563 skb = skb2;
564
565 /* fill out the RNDIS header. we won't bother trying to batch
566 * packets; Linux minimizes wasted bandwidth through tx queues.
567 */
568fill:
569 hdr = (void *) __skb_push(skb, sizeof *hdr);
570 memset(hdr, 0, sizeof *hdr);
571 hdr->msg_type = RNDIS_MSG_PACKET;
572 hdr->msg_len = cpu_to_le32(skb->len);
573 hdr->data_offset = ccpu2(sizeof(*hdr) - 8);
574 hdr->data_len = cpu_to_le32(len);
575
576 /* FIXME make the last packet always be short ... */
577 return skb;
578}
579
580
581static const struct driver_info rndis_info = {
582 .description = "RNDIS device",
583 .flags = FLAG_ETHER | FLAG_FRAMING_RN,
584 .bind = rndis_bind,
585 .unbind = rndis_unbind,
586 .status = rndis_status,
587 .rx_fixup = rndis_rx_fixup,
588 .tx_fixup = rndis_tx_fixup,
589};
590
591#undef ccpu2
592
593
594/*-------------------------------------------------------------------------*/
595
596static const struct usb_device_id products [] = {
597{
598 /* RNDIS is MSFT's un-official variant of CDC ACM */
599 USB_INTERFACE_INFO(USB_CLASS_COMM, 2 /* ACM */, 0x0ff),
600 .driver_info = (unsigned long) &rndis_info,
601},
602 { }, // END
603};
604MODULE_DEVICE_TABLE(usb, products);
605
606static struct usb_driver rndis_driver = {
David Brownell64e04912005-08-31 09:54:36 -0700607 .name = "rndis_host",
608 .id_table = products,
609 .probe = usbnet_probe,
610 .disconnect = usbnet_disconnect,
611 .suspend = usbnet_suspend,
612 .resume = usbnet_resume,
613};
614
615static int __init rndis_init(void)
616{
David Brownell51400f12006-04-02 10:19:08 -0800617 return usb_register(&rndis_driver);
David Brownell64e04912005-08-31 09:54:36 -0700618}
619module_init(rndis_init);
620
621static void __exit rndis_exit(void)
622{
David Brownell51400f12006-04-02 10:19:08 -0800623 usb_deregister(&rndis_driver);
David Brownell64e04912005-08-31 09:54:36 -0700624}
625module_exit(rndis_exit);
626
627MODULE_AUTHOR("David Brownell");
628MODULE_DESCRIPTION("USB Host side RNDIS driver");
629MODULE_LICENSE("GPL");