1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
|
/* $OpenBSD: if_cdcef.c,v 1.29 2013/08/07 01:06:41 bluhm Exp $ */
/*
* Copyright (c) 2007 Dale Rahn <drahn@openbsd.org>
* Copyright (c) 2006 Uwe Stuehler <uwe@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* USB Communication Device Class Ethernet Emulation Model function driver
* (counterpart of the host-side cdce(4) driver)
*/
#include <bpfilter.h>
#include <sys/param.h>
#include <sys/device.h>
#include <sys/socket.h>
#include <sys/systm.h>
#include <sys/mbuf.h>
#include <sys/timeout.h>
#include <net/if.h>
#include <dev/usb/usb.h>
#include <dev/usb/usbdi.h>
#include <dev/usb/usbf.h>
#include <dev/usb/usbcdc.h>
#if NBPFILTER > 0
#include <net/bpf.h>
#endif
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
#define CDCEF_VENDOR_ID 0x0001
#define CDCEF_PRODUCT_ID 0x0001
#define CDCEF_DEVICE_CODE 0x0100
#define CDCEF_VENDOR_STRING "OpenBSD.org"
#define CDCEF_PRODUCT_STRING "CDC Ethernet Emulation"
#define CDCEF_SERIAL_STRING "1.00"
#define CDCEF_BUFSZ 1600
struct cdcef_softc {
struct usbf_function sc_dev;
struct usbf_config *sc_config;
struct usbf_interface *sc_iface;
struct usbf_endpoint *sc_ep_in;
struct usbf_endpoint *sc_ep_out;
struct usbf_pipe *sc_pipe_in;
struct usbf_pipe *sc_pipe_out;
struct usbf_xfer *sc_xfer_in;
struct usbf_xfer *sc_xfer_out;
void *sc_buffer_in;
void *sc_buffer_out;
struct timeout start_to;
struct mbuf *sc_xmit_mbuf;
struct arpcom sc_arpcom;
#define GET_IFP(sc) (&(sc)->sc_arpcom.ac_if)
int sc_rxeof_errors;
int sc_unit;
int sc_attached;
int sc_listening;
};
int cdcef_match(struct device *, void *, void *);
void cdcef_attach(struct device *, struct device *, void *);
usbf_status cdcef_do_request(struct usbf_function *,
usb_device_request_t *, void **);
void cdcef_start(struct ifnet *);
void cdcef_txeof(struct usbf_xfer *, void *,
usbf_status);
void cdcef_rxeof(struct usbf_xfer *, void *,
usbf_status);
int cdcef_ioctl(struct ifnet *ifp, u_long command, caddr_t data);
void cdcef_watchdog(struct ifnet *ifp);
void cdcef_init(struct cdcef_softc *);
void cdcef_stop(struct cdcef_softc *);
int cdcef_encap(struct cdcef_softc *sc, struct mbuf *m, int idx);
struct mbuf * cdcef_newbuf(void);
void cdcef_start_timeout (void *);
struct cfattach cdcef_ca = {
sizeof(struct cdcef_softc), cdcef_match, cdcef_attach
};
struct cfdriver cdcef_cd = {
NULL, "cdcef", DV_IFNET
};
struct usbf_function_methods cdcef_methods = {
NULL, /* set_config */
cdcef_do_request
};
#ifndef CDCEF_DEBUG
#define DPRINTF(x) do {} while (0)
#else
#define DPRINTF(x) printf x
#endif
#define DEVNAME(sc) ((sc)->sc_dev.bdev.dv_xname)
extern int ticks;
/*
* USB function match/attach/detach
*/
int
cdcef_match(struct device *parent, void *match, void *aux)
{
return UMATCH_GENERIC;
}
void
cdcef_attach(struct device *parent, struct device *self, void *aux)
{
struct cdcef_softc *sc = (struct cdcef_softc *)self;
struct usbf_attach_arg *uaa = aux;
struct usbf_device *dev = uaa->device;
struct ifnet *ifp;
usbf_status err;
struct usb_cdc_union_descriptor udesc;
int s;
u_int16_t macaddr_hi;
/* Set the device identification according to the function. */
usbf_devinfo_setup(dev, UDCLASS_IN_INTERFACE, 0, 0, CDCEF_VENDOR_ID,
CDCEF_PRODUCT_ID, CDCEF_DEVICE_CODE, CDCEF_VENDOR_STRING,
CDCEF_PRODUCT_STRING, CDCEF_SERIAL_STRING);
/* Fill in the fields needed by the parent device. */
sc->sc_dev.methods = &cdcef_methods;
/* timeout to start delayed transfers */
timeout_set(&sc->start_to, cdcef_start_timeout, sc);
/*
* Build descriptors according to the device class specification.
*/
err = usbf_add_config(dev, &sc->sc_config);
if (err) {
printf(": usbf_add_config failed\n");
return;
}
err = usbf_add_interface(sc->sc_config, UICLASS_CDC,
UISUBCLASS_ETHERNET_NETWORKING_CONTROL_MODEL, 0, NULL,
&sc->sc_iface);
if (err) {
printf(": usbf_add_interface failed\n");
return;
}
/* XXX don't use hard-coded values 128 and 16. */
err = usbf_add_endpoint(sc->sc_iface, UE_DIR_IN | 2, UE_BULK,
64, 16, &sc->sc_ep_in) ||
usbf_add_endpoint(sc->sc_iface, UE_DIR_OUT | 1, UE_BULK,
64, 16, &sc->sc_ep_out);
if (err) {
printf(": usbf_add_endpoint failed\n");
return;
}
/* Append a CDC union descriptor. */
bzero(&udesc, sizeof udesc);
udesc.bLength = sizeof udesc;
udesc.bDescriptorType = UDESC_CS_INTERFACE;
udesc.bDescriptorSubtype = UDESCSUB_CDC_UNION;
udesc.bSlaveInterface[0] = usbf_interface_number(sc->sc_iface);
err = usbf_add_config_desc(sc->sc_config,
(usb_descriptor_t *)&udesc, NULL);
if (err) {
printf(": usbf_add_config_desc failed\n");
return;
}
/*
* Close the configuration and build permanent descriptors.
*/
err = usbf_end_config(sc->sc_config);
if (err) {
printf(": usbf_end_config failed\n");
return;
}
/* Preallocate xfers and data buffers. */
sc->sc_xfer_in = usbf_alloc_xfer(dev);
sc->sc_xfer_out = usbf_alloc_xfer(dev);
sc->sc_buffer_in = usbf_alloc_buffer(sc->sc_xfer_in,
CDCEF_BUFSZ);
sc->sc_buffer_out = usbf_alloc_buffer(sc->sc_xfer_out,
CDCEF_BUFSZ);
if (sc->sc_buffer_in == NULL || sc->sc_buffer_out == NULL) {
printf(": usbf_alloc_buffer failed\n");
return;
}
/* Open the bulk pipes. */
err = usbf_open_pipe(sc->sc_iface,
usbf_endpoint_address(sc->sc_ep_out), &sc->sc_pipe_out) ||
usbf_open_pipe(sc->sc_iface,
usbf_endpoint_address(sc->sc_ep_in), &sc->sc_pipe_in);
if (err) {
printf(": usbf_open_pipe failed\n");
return;
}
/* Get ready to receive packets. */
usbf_setup_xfer(sc->sc_xfer_out, sc->sc_pipe_out, sc,
sc->sc_buffer_out, CDCEF_BUFSZ, USBD_SHORT_XFER_OK, 0, cdcef_rxeof);
err = usbf_transfer(sc->sc_xfer_out);
if (err && err != USBF_IN_PROGRESS) {
printf(": usbf_transfer failed\n");
return;
}
s = splnet();
macaddr_hi = htons(0x2acb);
bcopy(&macaddr_hi, &sc->sc_arpcom.ac_enaddr[0], sizeof(u_int16_t));
bcopy(&ticks, &sc->sc_arpcom.ac_enaddr[2], sizeof(u_int32_t));
sc->sc_arpcom.ac_enaddr[5] = (u_int8_t)(sc->sc_unit);
printf(": address %s\n", ether_sprintf(sc->sc_arpcom.ac_enaddr));
ifp = GET_IFP(sc);
ifp->if_softc = sc;
ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
ifp->if_ioctl = cdcef_ioctl;
ifp->if_start = cdcef_start;
ifp->if_watchdog = cdcef_watchdog;
strlcpy(ifp->if_xname, DEVNAME(sc), IFNAMSIZ);
IFQ_SET_READY(&ifp->if_snd);
if_attach(ifp);
ether_ifattach(ifp);
sc->sc_attached = 1;
splx(s);
}
usbf_status
cdcef_do_request(struct usbf_function *fun, usb_device_request_t *req,
void **data)
{
printf("cdcef_do_request\n");
return USBF_STALLED;
}
void
cdcef_start(struct ifnet *ifp)
{
struct cdcef_softc *sc = ifp->if_softc;
struct mbuf *m_head = NULL;
if(ifp->if_flags & IFF_OACTIVE)
return;
IFQ_POLL(&ifp->if_snd, m_head);
if (m_head == NULL) {
return;
}
if (sc->sc_listening == 0 || m_head->m_pkthdr.len > CDCEF_BUFSZ) {
/*
* drop packet because receiver is not listening,
* or if packet is larger than xmit buffer
*/
IFQ_DEQUEUE(&ifp->if_snd, m_head);
m_freem(m_head);
return;
}
if (cdcef_encap(sc, m_head, 0)) {
ifp->if_flags |= IFF_OACTIVE;
return;
}
IFQ_DEQUEUE(&ifp->if_snd, m_head);
#if NBPFILTER > 0
if (ifp->if_bpf)
bpf_mtap(ifp->if_bpf, m_head, BPF_DIRECTION_OUT);
#endif
ifp->if_flags |= IFF_OACTIVE;
ifp->if_timer = 6;
}
void
cdcef_txeof(struct usbf_xfer *xfer, void *priv,
usbf_status err)
{
struct cdcef_softc *sc = priv;
struct ifnet *ifp = GET_IFP(sc);
int s;
s = splnet();
#if 0
printf("cdcef_txeof: xfer=%p, priv=%p, %s\n", xfer, priv,
usbf_errstr(err));
#endif
ifp->if_timer = 0;
ifp->if_flags &= ~IFF_OACTIVE;
if (sc->sc_xmit_mbuf != NULL) {
m_freem(sc->sc_xmit_mbuf);
sc->sc_xmit_mbuf = NULL;
}
if (err)
ifp->if_oerrors++;
else
ifp->if_opackets++;
if (IFQ_IS_EMPTY(&ifp->if_snd) == 0)
timeout_add(&sc->start_to, 1); /* XXX */
splx(s);
}
void
cdcef_start_timeout (void *v)
{
struct cdcef_softc *sc = v;
struct ifnet *ifp = GET_IFP(sc);
int s;
s = splnet();
cdcef_start(ifp);
splx(s);
}
void
cdcef_rxeof(struct usbf_xfer *xfer, void *priv,
usbf_status status)
{
struct cdcef_softc *sc = priv;
int total_len = 0;
struct ifnet *ifp = GET_IFP(sc);
struct mbuf *m = NULL;
int s;
#if 0
printf("cdcef_rxeof: xfer=%p, priv=%p, %s\n", xfer, priv,
usbf_errstr(status));
#endif
if (status != USBF_NORMAL_COMPLETION) {
if (status == USBF_NOT_STARTED || status == USBF_CANCELLED)
return;
if (sc->sc_rxeof_errors == 0)
printf("%s: usb error on rx: %s\n",
DEVNAME(sc), usbf_errstr(status));
/* XXX - no stalls on client */
if (sc->sc_rxeof_errors++ > 10) {
printf("%s: too many errors, disabling\n",
DEVNAME(sc));
/* sc->sc_dying = 1; */
// return;
}
goto done;
}
sc->sc_rxeof_errors = 0;
/* upon first incoming packet we know the host is listening */
if (sc->sc_listening == 0) {
sc->sc_listening = 1;
}
usbf_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
/* total_len -= 4; Strip off CRC added for Zaurus - XXX*/
if (total_len <= 1)
goto done;
if (total_len < sizeof(struct ether_header)) {
ifp->if_ierrors++;
goto done;
}
s = splnet();
if (ifp->if_flags & IFF_RUNNING) {
m = cdcef_newbuf();
if (m == NULL) {
/* message? */
ifp->if_ierrors++;
goto done1;
}
m->m_pkthdr.len = m->m_len = total_len;
bcopy(sc->sc_buffer_out, mtod(m, char *), total_len);
m->m_pkthdr.rcvif = ifp;
ifp->if_ipackets++;
#if NBPFILTER > 0
if (ifp->if_bpf)
bpf_mtap(ifp->if_bpf, m, BPF_DIRECTION_IN);
#endif
ether_input_mbuf(ifp, m);
}
done1:
splx(s);
done:
/* Setup another xfer. */
usbf_setup_xfer(xfer, sc->sc_pipe_out, sc, sc->sc_buffer_out,
CDCEF_BUFSZ, USBD_SHORT_XFER_OK, 0, cdcef_rxeof);
status = usbf_transfer(xfer);
if (status && status != USBF_IN_PROGRESS) {
printf("%s: usbf_transfer failed\n", DEVNAME(sc));
return;
}
}
struct mbuf *
cdcef_newbuf(void)
{
struct mbuf *m;
MGETHDR(m, M_DONTWAIT, MT_DATA);
if (m == NULL)
return (NULL);
MCLGET(m, M_DONTWAIT);
if (!(m->m_flags & M_EXT)) {
m_freem(m);
return (NULL);
}
m->m_len = m->m_pkthdr.len = MCLBYTES;
m_adj(m, ETHER_ALIGN);
return (m);
}
int
cdcef_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
{
struct cdcef_softc *sc = ifp->if_softc;
struct ifaddr *ifa = (struct ifaddr *)data;
int s, error = 0;
s = splnet();
switch (command) {
case SIOCSIFADDR:
ifp->if_flags |= IFF_UP;
cdcef_init(sc);
switch (ifa->ifa_addr->sa_family) {
case AF_INET:
arp_ifinit(&sc->sc_arpcom, ifa);
break;
}
break;
case SIOCSIFFLAGS:
if (ifp->if_flags & IFF_UP) {
if (!(ifp->if_flags & IFF_RUNNING))
cdcef_init(sc);
} else {
if (ifp->if_flags & IFF_RUNNING)
cdcef_stop(sc);
}
error = 0;
break;
default:
error = ether_ioctl(ifp, &sc->sc_arpcom, command, data);
}
if (error == ENETRESET)
error = 0;
splx(s);
return (error);
}
void
cdcef_watchdog(struct ifnet *ifp)
{
struct cdcef_softc *sc = ifp->if_softc;
int s;
#if 0
if (sc->sc_dying)
return;
#endif
ifp->if_oerrors++;
printf("%s: watchdog timeout\n", DEVNAME(sc));
s = splusb();
ifp->if_timer = 0;
ifp->if_flags &= ~IFF_OACTIVE;
/* cancel receive pipe? */
usbf_abort_pipe(sc->sc_pipe_in); /* in is tx pipe */
splx(s);
}
void
cdcef_init(struct cdcef_softc *sc)
{
int s;
struct ifnet *ifp = GET_IFP(sc);
if (ifp->if_flags & IFF_RUNNING)
return;
s = splnet();
ifp->if_flags |= IFF_RUNNING;
ifp->if_flags &= ~IFF_OACTIVE;
splx(s);
}
int
cdcef_encap(struct cdcef_softc *sc, struct mbuf *m, int idx)
{
usbf_status err;
m_copydata(m, 0, m->m_pkthdr.len, sc->sc_buffer_in);
/* NO CRC */
usbf_setup_xfer(sc->sc_xfer_in, sc->sc_pipe_in, sc, sc->sc_buffer_in,
m->m_pkthdr.len, USBD_FORCE_SHORT_XFER | USBD_NO_COPY,
10000, cdcef_txeof);
err = usbf_transfer(sc->sc_xfer_in);
if (err && err != USBD_IN_PROGRESS) {
printf("encap error\n");
cdcef_stop(sc);
return (EIO);
}
sc->sc_xmit_mbuf = m;
return (0);
}
void
cdcef_stop(struct cdcef_softc *sc)
{
struct ifnet *ifp = GET_IFP(sc);
ifp->if_timer = 0;
ifp->if_flags &= ~(IFF_RUNNING | IFF_OACTIVE);
/* cancel receive pipe? */
if (sc->sc_xmit_mbuf != NULL) {
m_freem(sc->sc_xmit_mbuf);
sc->sc_xmit_mbuf = NULL;
}
}
|