]> git.zerfleddert.de Git - usb-driver/blob - usb-driver.c
1c5b18b2d8f4b3ae3b29f116b8729f73bda1865f
[usb-driver] / usb-driver.c
1 /* libusb/ppdev connector for XILINX impact
2 *
3 * Copyright (c) 2007 Michael Gernoth <michael@gernoth.net>
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to
7 * deal in the Software without restriction, including without limitation the
8 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9 * sell copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #define _GNU_SOURCE 1
25
26 #include <dlfcn.h>
27 #include <stdarg.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <unistd.h>
31 #include <fcntl.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <sys/time.h>
35 #include <stdio.h>
36 #include <usb.h>
37 #include <signal.h>
38 #include <pthread.h>
39 #include <errno.h>
40 #include <inttypes.h>
41 #include <sys/ioctl.h>
42 #include <linux/parport.h>
43 #include <linux/ppdev.h>
44 #include "usb-driver.h"
45
46 static int (*ioctl_func) (int, int, void *) = NULL;
47 static int windrvrfd = -1;
48 static int parportfd = -1;
49 static int parportnum = 0;
50 static unsigned long ppbase = 0;
51 static unsigned long ecpbase = 0;
52 FILE *modulesfp = NULL;
53 static int modules_read = 0;
54 static struct usb_bus *busses = NULL;
55 static struct usb_device *usbdevice;
56 static usb_dev_handle *usb_devhandle = NULL;
57 static int usbinterface = -1;
58 static unsigned long card_type;
59 static int ints_enabled = 0;
60 static pthread_mutex_t int_wait = PTHREAD_MUTEX_INITIALIZER;
61
62 #define NO_WINDRVR 1
63
64 #ifdef DEBUG
65 #define DPRINTF(format, args...) fprintf(stderr, format, ##args)
66 void hexdump(unsigned char *buf, int len) {
67 int i;
68
69 for(i=0; i<len; i++) {
70 fprintf(stderr,"%02x ", buf[i]);
71 if ((i % 16) == 15)
72 fprintf(stderr,"\n");
73 }
74 fprintf(stderr,"\n");
75 }
76 #else
77 #define DPRINTF(format, args...)
78 #endif
79
80 int usb_deviceinfo(unsigned char *buf) {
81 int i,j,k,l;
82 int len = 0;
83 WDU_CONFIGURATION **pConfigs, **pActiveConfig;
84 WDU_INTERFACE **pActiveInterface;
85
86 if (buf) {
87 struct usb_device_info *udi = (struct usb_device_info*)(buf+len);
88
89 udi->Descriptor.bLength = sizeof(WDU_DEVICE_DESCRIPTOR);
90 udi->Descriptor.bDescriptorType = usbdevice->descriptor.bDescriptorType;
91 udi->Descriptor.bcdUSB = usbdevice->descriptor.bcdUSB;
92 udi->Descriptor.bDeviceClass = usbdevice->descriptor.bDeviceClass;
93 udi->Descriptor.bDeviceSubClass = usbdevice->descriptor.bDeviceSubClass;
94 udi->Descriptor.bDeviceProtocol = usbdevice->descriptor.bDeviceProtocol;
95 udi->Descriptor.bMaxPacketSize0 = usbdevice->descriptor.bMaxPacketSize0;
96 udi->Descriptor.idVendor = usbdevice->descriptor.idVendor;
97 udi->Descriptor.idProduct = usbdevice->descriptor.idProduct;
98 udi->Descriptor.bcdDevice = usbdevice->descriptor.bcdDevice;
99 udi->Descriptor.iManufacturer = usbdevice->descriptor.iManufacturer;
100 udi->Descriptor.iProduct = usbdevice->descriptor.iProduct;
101 udi->Descriptor.iSerialNumber = usbdevice->descriptor.iSerialNumber;
102 udi->Descriptor.bNumConfigurations = usbdevice->descriptor.bNumConfigurations;
103
104 /* TODO: Fix Pipe0! */
105 udi->Pipe0.dwNumber = 0x00;
106 udi->Pipe0.dwMaximumPacketSize = usbdevice->descriptor.bMaxPacketSize0;
107 udi->Pipe0.type = 0;
108 udi->Pipe0.direction = WDU_DIR_IN_OUT;
109 udi->Pipe0.dwInterval = 0;
110
111 pConfigs = &(udi->pConfigs);
112 pActiveConfig = &(udi->pActiveConfig);
113 pActiveInterface = &(udi->pActiveInterface[0]);
114 }
115
116 len = sizeof(struct usb_device_info);
117
118 for (i=0; i<usbdevice->descriptor.bNumConfigurations; i++)
119 {
120 struct usb_config_descriptor *conf_desc = &usbdevice->config[i];
121 WDU_INTERFACE **pInterfaces;
122 WDU_ALTERNATE_SETTING **pAlternateSettings[conf_desc->bNumInterfaces];
123 WDU_ALTERNATE_SETTING **pActiveAltSetting[conf_desc->bNumInterfaces];
124
125 if (buf) {
126 WDU_CONFIGURATION *cfg = (WDU_CONFIGURATION*)(buf+len);
127
128 *pConfigs = cfg;
129 *pActiveConfig = cfg;
130
131 cfg->Descriptor.bLength = conf_desc->bLength;
132 cfg->Descriptor.bDescriptorType = conf_desc->bDescriptorType;
133 cfg->Descriptor.wTotalLength = conf_desc->wTotalLength;
134 cfg->Descriptor.bNumInterfaces = conf_desc->bNumInterfaces;
135 cfg->Descriptor.bConfigurationValue = conf_desc->bConfigurationValue;
136 cfg->Descriptor.iConfiguration = conf_desc->iConfiguration;
137 cfg->Descriptor.bmAttributes = conf_desc->bmAttributes;
138 cfg->Descriptor.MaxPower = conf_desc->MaxPower;
139
140 cfg->dwNumInterfaces = conf_desc->bNumInterfaces;
141
142 pInterfaces = &(cfg->pInterfaces);
143 }
144 len += sizeof(WDU_CONFIGURATION);
145
146 if (buf) {
147 *pInterfaces = (WDU_INTERFACE*)(buf+len);
148 for (j=0; j<conf_desc->bNumInterfaces; j++) {
149 WDU_INTERFACE *iface = (WDU_INTERFACE*)(buf+len);
150
151 pActiveInterface[j] = iface;
152
153 pAlternateSettings[j] = &(iface->pAlternateSettings);
154 iface->dwNumAltSettings = usbdevice->config[i].interface[j].num_altsetting;
155 pActiveAltSetting[j] = &(iface->pActiveAltSetting);
156
157 len += sizeof(WDU_INTERFACE);
158 }
159 } else {
160 len += sizeof(WDU_INTERFACE) * conf_desc->bNumInterfaces;
161 }
162
163 for (j=0; j<conf_desc->bNumInterfaces; j++)
164 {
165 struct usb_interface *interface = &usbdevice->config[i].interface[j];
166
167 if (buf) {
168 *pAlternateSettings[j] = (WDU_ALTERNATE_SETTING*)(buf+len);
169 /* FIXME: */
170 *pActiveAltSetting[j] = (WDU_ALTERNATE_SETTING*)(buf+len);
171 }
172
173 for(k=0; k<interface->num_altsetting; k++)
174 {
175 unsigned char bNumEndpoints = interface->altsetting[k].bNumEndpoints;
176 WDU_ENDPOINT_DESCRIPTOR **pEndpointDescriptors;
177 WDU_PIPE_INFO **pPipes;
178
179 if (buf) {
180 WDU_ALTERNATE_SETTING *altset = (WDU_ALTERNATE_SETTING*)(buf+len);
181
182 altset->Descriptor.bLength = interface->altsetting[k].bLength;
183 altset->Descriptor.bDescriptorType = interface->altsetting[k].bDescriptorType;
184 altset->Descriptor.bInterfaceNumber = interface->altsetting[k].bInterfaceNumber;
185 altset->Descriptor.bAlternateSetting = interface->altsetting[k].bAlternateSetting;
186 altset->Descriptor.bNumEndpoints = interface->altsetting[k].bNumEndpoints;
187 altset->Descriptor.bInterfaceClass = interface->altsetting[k].bInterfaceClass;
188 altset->Descriptor.bInterfaceSubClass = interface->altsetting[k].bInterfaceSubClass;
189 altset->Descriptor.bInterfaceProtocol = interface->altsetting[k].bInterfaceProtocol;
190 altset->Descriptor.iInterface = interface->altsetting[k].iInterface;
191 pEndpointDescriptors = &(altset->pEndpointDescriptors);
192 pPipes = &(altset->pPipes);
193
194 }
195 len +=sizeof(WDU_ALTERNATE_SETTING);
196
197 if (buf) {
198 *pEndpointDescriptors = (WDU_ENDPOINT_DESCRIPTOR*)(buf+len);
199 for (l = 0; l < bNumEndpoints; l++) {
200 WDU_ENDPOINT_DESCRIPTOR *ed = (WDU_ENDPOINT_DESCRIPTOR*)(buf+len);
201
202 ed->bLength = interface->altsetting[k].endpoint[l].bLength;
203 ed->bDescriptorType = interface->altsetting[k].endpoint[l].bDescriptorType;
204 ed->bEndpointAddress = interface->altsetting[k].endpoint[l].bEndpointAddress;
205 ed->bmAttributes = interface->altsetting[k].endpoint[l].bmAttributes;
206 ed->wMaxPacketSize = interface->altsetting[k].endpoint[l].wMaxPacketSize;
207 ed->bInterval = interface->altsetting[k].endpoint[l].bInterval;
208
209 len += sizeof(WDU_ENDPOINT_DESCRIPTOR);
210 }
211
212 *pPipes = (WDU_PIPE_INFO*)(buf+len);
213 for (l = 0; l < bNumEndpoints; l++) {
214 WDU_PIPE_INFO *pi = (WDU_PIPE_INFO*)(buf+len);
215
216 pi->dwNumber = interface->altsetting[k].endpoint[l].bEndpointAddress;
217 pi->dwMaximumPacketSize = WDU_GET_MAX_PACKET_SIZE(interface->altsetting[k].endpoint[l].wMaxPacketSize);
218 pi->type = interface->altsetting[k].endpoint[l].bmAttributes & USB_ENDPOINT_TYPE_MASK;
219 if (pi->type == PIPE_TYPE_CONTROL)
220 pi->direction = WDU_DIR_IN_OUT;
221 else
222 {
223 pi->direction = interface->altsetting[k].endpoint[l].bEndpointAddress & USB_ENDPOINT_DIR_MASK ? WDU_DIR_IN : WDU_DIR_OUT;
224 }
225
226 pi->dwInterval = interface->altsetting[k].endpoint[l].bInterval;
227
228 len += sizeof(WDU_PIPE_INFO);
229 }
230 } else {
231 len +=(sizeof(WDU_ENDPOINT_DESCRIPTOR)+sizeof(WDU_PIPE_INFO))*bNumEndpoints;
232 }
233 }
234 }
235 }
236
237 return len;
238 }
239
240 int pp_transfer(WD_TRANSFER *tr, int fd, unsigned int request, unsigned char *wdioctl) {
241 int ret = 0;
242 unsigned char val;
243
244 DPRINTF("dwPort: 0x%lx, cmdTrans: %lu, dwbytes: %ld, fautoinc: %ld, dwoptions: %ld\n",
245 (unsigned long)tr->dwPort, tr->cmdTrans, tr->dwBytes,
246 tr->fAutoinc, tr->dwOptions);
247
248 val = tr->Data.Byte;
249
250 #ifdef DEBUG
251 if (tr->cmdTrans == 13)
252 DPRINTF("write byte: %d\n", val);
253 #endif
254
255 #ifndef NO_WINDRVR
256 ret = (*ioctl_func) (fd, request, wdioctl);
257 #else
258 if (parportfd < 0)
259 return ret;
260
261 switch(tr->cmdTrans) {
262 case 10: /* Read Byte */
263 if ((unsigned long)tr->dwPort == ppbase) { /* Data Port */
264 ret = 0; /* We don't support reading of the data port */
265 } else if ((unsigned long)tr->dwPort == ppbase + 1) { /* Status Port */
266 DPRINTF("status port\n");
267 ret = ioctl(parportfd, PPRSTATUS, &val);
268 } else if ((unsigned long)tr->dwPort == ppbase + 2) { /* Control Port */
269 DPRINTF("control port\n");
270 ret = ioctl(parportfd, PPRCONTROL, &val);
271 }
272 break;
273 case 13: /* Write Byte */
274 if ((unsigned long)tr->dwPort == ppbase) { /* Data Port */
275 DPRINTF("data port\n");
276 ret = ioctl(parportfd, PPWDATA, &val);
277 } else if ((unsigned long)tr->dwPort == ppbase + 1) { /* Status Port */
278 ret = 0; /* Status Port is readonly */
279 } else if ((unsigned long)tr->dwPort == ppbase + 2) { /* Control Port */
280 DPRINTF("control port\n");
281 ret = ioctl(parportfd, PPWCONTROL, &val);
282 }
283 break;
284 default:
285 fprintf(stderr,"!!!Unsupported TRANSFER command: %lu!!!\n", tr->cmdTrans);
286 ret = -1;
287 break;
288 }
289
290 tr->Data.Byte = val;
291 #endif
292
293 DPRINTF("dwPortReturn: 0x%lx, cmdTrans: %lu, dwbytes: %ld, fautoinc: %ld, dwoptions: %ld\n",
294 (unsigned long)tr->dwPort, tr->cmdTrans, tr->dwBytes,
295 tr->fAutoinc, tr->dwOptions);
296 #ifdef DEBUG
297 if (tr->cmdTrans == 10)
298 DPRINTF("read byte: %d\n", tr->Data.Byte);
299 #endif
300
301 return ret;
302 }
303
304 int do_wdioctl(int fd, unsigned int request, unsigned char *wdioctl) {
305 struct header_struct* wdheader = (struct header_struct*)wdioctl;
306 struct version_struct *version;
307 int ret = 0;
308
309 if (wdheader->magic != MAGIC) {
310 fprintf(stderr,"!!!ERROR: magic header does not match!!!\n");
311 return (*ioctl_func) (fd, request, wdioctl);
312 }
313
314 switch(request & ~(0xc0000000)) {
315 case VERSION:
316 version = (struct version_struct*)(wdheader->data);
317 strcpy(version->version, "WinDriver no more");
318 version->versionul = 802;
319 DPRINTF("VERSION\n");
320 break;
321
322 case LICENSE:
323 DPRINTF("LICENSE\n");
324 break;
325
326 case CARD_REGISTER_OLD:
327 case CARD_REGISTER:
328 DPRINTF("CARD_REGISTER\n");
329 {
330 struct card_register* cr = (struct card_register*)(wdheader->data);
331 char ppdev[32];
332
333 DPRINTF("Items: %lu, Addr: 0x%lx, bytes: %lu, bar: %lu\n",
334 cr->Card.dwItems,
335 (unsigned long)cr->Card.Item[0].I.IO.dwAddr,
336 cr->Card.Item[0].I.IO.dwBytes,
337 cr->Card.Item[0].I.IO.dwBar);
338
339 DPRINTF("Items: %lu, Addr: 0x%lx, bytes: %lu, bar: %lu\n",
340 cr->Card.dwItems,
341 (unsigned long)cr->Card.Item[1].I.IO.dwAddr,
342 cr->Card.Item[1].I.IO.dwBytes,
343 cr->Card.Item[1].I.IO.dwBar);
344 #ifndef NO_WINDRVR
345 ret = (*ioctl_func) (fd, request, wdioctl);
346 #else
347 if (parportfd < 0) {
348 snprintf(ppdev, sizeof(ppdev), "/dev/parport%d", parportnum);
349 DPRINTF("opening %s\n", ppdev);
350 parportfd = open(ppdev, O_RDWR|O_EXCL);
351 parportnum++;
352
353 if (parportfd < 0)
354 fprintf(stderr,"Can't open %s: %s\n", ppdev, strerror(errno));
355 }
356
357 if (parportfd >= 0) {
358 int pmode;
359
360 if (ioctl(parportfd, PPCLAIM) == -1)
361 return ret;
362
363 ecpbase = 0;
364 pmode = IEEE1284_MODE_COMPAT;
365 if (ioctl(parportfd, PPNEGOT, &pmode) == -1)
366 return ret;
367
368 if (cr->Card.dwItems > 1 && cr->Card.Item[1].I.IO.dwBytes) {
369 DPRINTF("ECP mode requested\n");
370 ecpbase = cr->Card.Item[1].I.IO.dwBytes;
371 /* TODO: Implement ECP mode */
372 #if 0
373 pmode = IEEE1284_MODE_ECP;
374
375 if (ioctl(parportfd, PPNEGOT, &pmode) == -1) {
376 ecpbase = 0;
377 pmode = IEEE1284_MODE_COMPAT;
378 if (ioctl(parportfd, PPNEGOT, &pmode) == -1)
379 return ret;
380 }
381 #endif
382 }
383
384 cr->hCard = parportfd;
385 ppbase = (unsigned long)cr->Card.Item[0].I.IO.dwAddr;
386 }
387 #endif
388 DPRINTF("hCard: %lu\n", cr->hCard);
389 }
390 break;
391
392 case USB_TRANSFER:
393 DPRINTF("in USB_TRANSFER");
394 {
395 struct usb_transfer *ut = (struct usb_transfer*)(wdheader->data);
396
397 #ifdef DEBUG
398 DPRINTF(" unique: %lu, pipe: %lu, read: %lu, options: %lx, size: %lu, timeout: %lx\n",
399 ut->dwUniqueID, ut->dwPipeNum, ut->fRead,
400 ut->dwOptions, ut->dwBufferSize, ut->dwTimeout);
401 DPRINTF("setup packet: ");
402 hexdump(ut->SetupPacket, 8);
403
404 if (!ut->fRead && ut->dwBufferSize)
405 {
406 hexdump(ut->pBuffer, ut->dwBufferSize);
407 }
408 #endif
409
410 #ifndef NO_WINDRVR
411 ret = (*ioctl_func) (fd, request, wdioctl);
412 #else
413 /* http://www.jungo.com/support/documentation/windriver/802/wdusb_man_mhtml/node55.html#SECTION001213000000000000000 */
414 if (ut->dwPipeNum == 0) { /* control pipe */
415 int requesttype, request, value, index, size;
416 requesttype = ut->SetupPacket[0];
417 request = ut->SetupPacket[1];
418 value = ut->SetupPacket[2] | (ut->SetupPacket[3] << 8);
419 index = ut->SetupPacket[4] | (ut->SetupPacket[5] << 8);
420 size = ut->SetupPacket[6] | (ut->SetupPacket[7] << 8);
421 DPRINTF("requesttype: %x, request: %x, value: %u, index: %u, size: %u\n", requesttype, request, value, index, size);
422 ret = usb_control_msg(usb_devhandle, requesttype, request, value, index, ut->pBuffer, size, ut->dwTimeout);
423 } else {
424 if (ut->fRead) {
425 ret = usb_bulk_read(usb_devhandle, ut->dwPipeNum, ut->pBuffer, ut->dwBufferSize, ut->dwTimeout);
426
427 } else {
428 ret = usb_bulk_write(usb_devhandle, ut->dwPipeNum, ut->pBuffer, ut->dwBufferSize, ut->dwTimeout);
429 }
430 }
431
432 if (ret < 0) {
433 fprintf(stderr, "usb_transfer: %d (%s)\n", ret, usb_strerror());
434 } else {
435 ut->dwBytesTransferred = ret;
436 ret = 0;
437 }
438 #endif
439
440 #ifdef DEBUG
441 DPRINTF("Transferred: %lu (%s)\n",ut->dwBytesTransferred, (ut->fRead?"read":"write"));
442 if (ut->fRead && ut->dwBytesTransferred)
443 {
444 DPRINTF("Read: ");
445 hexdump(ut->pBuffer, ut->dwBytesTransferred);
446 }
447 #endif
448 }
449 break;
450
451 case INT_ENABLE_OLD:
452 case INT_ENABLE:
453 DPRINTF("INT_ENABLE\n");
454 {
455 struct interrupt *it = (struct interrupt*)(wdheader->data);
456
457 DPRINTF("Handle: %lu, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n",
458 it->hInterrupt, it->dwOptions,
459 it->dwCmds, it->fEnableOk, it->dwCounter,
460 it->dwLost, it->fStopped);
461
462 it->fEnableOk = 1;
463 it->fStopped = 0;
464 ints_enabled = 1;
465 pthread_mutex_trylock(&int_wait);
466 }
467
468 break;
469
470 case INT_DISABLE:
471 DPRINTF("INT_DISABLE\n");
472 {
473 struct interrupt *it = (struct interrupt*)(wdheader->data);
474
475 DPRINTF("Handle: %lu, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n",
476 it->hInterrupt, it->dwOptions,
477 it->dwCmds, it->fEnableOk, it->dwCounter,
478 it->dwLost, it->fStopped);
479 #ifndef NO_WINDRVR
480 ret = (*ioctl_func) (fd, request, wdioctl);
481 #else
482 it->dwCounter = 0;
483 it->fStopped = 1;
484 ints_enabled = 0;
485 if (pthread_mutex_trylock(&int_wait) == EBUSY)
486 pthread_mutex_unlock(&int_wait);
487 #endif
488 DPRINTF("Handle: %lu, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n",
489 it->hInterrupt, it->dwOptions,
490 it->dwCmds, it->fEnableOk, it->dwCounter,
491 it->dwLost, it->fStopped);
492 }
493 break;
494
495 case USB_SET_INTERFACE:
496 DPRINTF("USB_SET_INTERFACE\n");
497 {
498 struct usb_set_interface *usi = (struct usb_set_interface*)(wdheader->data);
499
500 DPRINTF("unique: %lu, interfacenum: %lu, alternatesetting: %lu, options: %lx\n",
501 usi->dwUniqueID, usi->dwInterfaceNum,
502 usi->dwAlternateSetting, usi->dwOptions);
503 #ifndef NO_WINDRVR
504 ret = (*ioctl_func) (fd, request, wdioctl);
505 #else
506 if (usbdevice) {
507 if (!usb_devhandle)
508 usb_devhandle = usb_open(usbdevice);
509
510 /* FIXME: Select right interface! */
511 ret = usb_claim_interface(usb_devhandle, usbdevice->config[0].interface[usi->dwInterfaceNum].altsetting[usi->dwAlternateSetting].bInterfaceNumber);
512 if (!ret) {
513 if(!ret) {
514 usbinterface = usbdevice->config[0].interface[usi->dwInterfaceNum].altsetting[usi->dwAlternateSetting].bInterfaceNumber;
515 ret = usb_set_altinterface(usb_devhandle, usi->dwAlternateSetting);
516 if (ret)
517 fprintf(stderr, "usb_set_altinterface: %d\n", ret);
518 } else {
519 fprintf(stderr, "usb_set_configuration: %d (%s)\n", ret, usb_strerror());
520 }
521 } else {
522 fprintf(stderr, "usb_claim_interface: %d -> %d (%s)\n",
523 usbdevice->config[0].interface[usi->dwInterfaceNum].altsetting[usi->dwAlternateSetting].bInterfaceNumber,
524 ret, usb_strerror());
525 }
526 }
527 #endif
528 DPRINTF("unique: %lu, interfacenum: %lu, alternatesetting: %lu, options: %lx\n",
529 usi->dwUniqueID, usi->dwInterfaceNum,
530 usi->dwAlternateSetting, usi->dwOptions);
531 }
532 break;
533
534 case USB_GET_DEVICE_DATA_OLD:
535 case USB_GET_DEVICE_DATA:
536 DPRINTF("USB_GET_DEVICE_DATA\n");
537 {
538 struct usb_get_device_data *ugdd = (struct usb_get_device_data*)(wdheader->data);
539 int pSize;
540
541 DPRINTF("unique: %lu, bytes: %lu, options: %lx\n",
542 ugdd->dwUniqueID, ugdd->dwBytes,
543 ugdd->dwOptions);
544
545 pSize = ugdd->dwBytes;
546 if (!ugdd->dwBytes) {
547 if (usbdevice) {
548 ugdd->dwBytes = usb_deviceinfo(NULL);
549 }
550 } else {
551 usb_deviceinfo((unsigned char*)ugdd->pBuf);
552 }
553 }
554 break;
555
556 case EVENT_REGISTER_OLD:
557 case EVENT_REGISTER:
558 DPRINTF("EVENT_REGISTER\n");
559 {
560 struct event *e = (struct event*)(wdheader->data);
561 struct usb_bus *bus;
562 int i;
563
564 DPRINTF("handle: %lu, action: %lu, status: %lu, eventid: %lu, cardtype: %lu, kplug: %lu, options: %lu, dev: %lx:%lx, unique: %lu, ver: %lu, nummatch: %lu\n",
565 e->handle, e->dwAction,
566 e->dwStatus, e->dwEventId, e->dwCardType,
567 e->hKernelPlugIn, e->dwOptions,
568 e->u.Usb.deviceId.dwVendorId,
569 e->u.Usb.deviceId.dwProductId,
570 e->u.Usb.dwUniqueID, e->dwEventVer,
571 e->dwNumMatchTables);
572
573 for (i = 0; i < e->dwNumMatchTables; i++) {
574
575 DPRINTF("match: dev: %04x:%04x, class: %x, subclass: %x, intclass: %x, intsubclass: %x, intproto: %x\n",
576 e->matchTables[i].VendorId,
577 e->matchTables[i].ProductId,
578 e->matchTables[i].bDeviceClass,
579 e->matchTables[i].bDeviceSubClass,
580 e->matchTables[i].bInterfaceClass,
581 e->matchTables[i].bInterfaceSubClass,
582 e->matchTables[i].bInterfaceProtocol);
583
584 for (bus = busses; bus; bus = bus->next) {
585 struct usb_device *dev;
586
587 for (dev = bus->devices; dev; dev = dev->next) {
588 struct usb_device_descriptor *desc = &(dev->descriptor);
589
590 if((desc->idVendor == e->matchTables[i].VendorId) &&
591 (desc->idProduct == e->matchTables[i].ProductId) &&
592 (desc->bDeviceClass == e->matchTables[i].bDeviceClass) &&
593 (desc->bDeviceSubClass == e->matchTables[i].bDeviceSubClass)) {
594 int ac;
595 for (ac = 0; ac < desc->bNumConfigurations; ac++) {
596 struct usb_interface *interface = dev->config[ac].interface;
597 int ai;
598
599 for (ai = 0; ai < interface->num_altsetting; ai++) {
600
601 DPRINTF("intclass: %x, intsubclass: %x, intproto: %x\n",
602 interface->altsetting[i].bInterfaceClass,
603 interface->altsetting[i].bInterfaceSubClass,
604 interface->altsetting[i].bInterfaceProtocol);
605
606 if ((interface->altsetting[ai].bInterfaceSubClass == e->matchTables[i].bInterfaceSubClass) &&
607 (interface->altsetting[ai].bInterfaceProtocol == e->matchTables[i].bInterfaceProtocol)){
608 /* TODO: check interfaceClass! */
609 DPRINTF("found device with libusb\n");
610 usbdevice = dev;
611 card_type = e->dwCardType;
612 }
613 }
614 }
615 }
616 }
617 }
618 }
619
620 #ifndef NO_WINDRVR
621 ret = (*ioctl_func) (fd, request, wdioctl);
622 #else
623 e->handle++;
624 #endif
625
626 #ifdef DEBUG
627 DPRINTF("handle: %lu, action: %lu, status: %lu, eventid: %lu, cardtype: %lu, kplug: %lu, options: %lu, dev: %lx:%lx, unique: %lu, ver: %lu, nummatch: %lu\n",
628 e->handle, e->dwAction,
629 e->dwStatus, e->dwEventId, e->dwCardType,
630 e->hKernelPlugIn, e->dwOptions,
631 e->u.Usb.deviceId.dwVendorId,
632 e->u.Usb.deviceId.dwProductId,
633 e->u.Usb.dwUniqueID, e->dwEventVer,
634 e->dwNumMatchTables);
635
636 for (i = 0; i < e->dwNumMatchTables; i++)
637 DPRINTF("match: dev: %04x:%04x, class: %x, subclass: %x, intclass: %x, intsubclass: %x, intproto: %x\n",
638 e->matchTables[i].VendorId,
639 e->matchTables[i].ProductId,
640 e->matchTables[i].bDeviceClass,
641 e->matchTables[i].bDeviceSubClass,
642 e->matchTables[i].bInterfaceClass,
643 e->matchTables[i].bInterfaceSubClass,
644 e->matchTables[i].bInterfaceProtocol);
645 #endif
646 }
647 break;
648
649 case TRANSFER_OLD:
650 case TRANSFER:
651 DPRINTF("TRANSFER\n");
652 {
653 WD_TRANSFER *tr = (WD_TRANSFER*)(wdheader->data);
654
655 ret = pp_transfer(tr, fd, request, wdioctl);
656 }
657 break;
658
659 case MULTI_TRANSFER_OLD:
660 case MULTI_TRANSFER:
661 DPRINTF("MULTI_TRANSFER\n");
662 {
663 WD_TRANSFER *tr = (WD_TRANSFER*)(wdheader->data);
664 unsigned long num = wdheader->size/sizeof(WD_TRANSFER);
665 int i;
666
667
668 for (i = 0; i < num; i++) {
669 DPRINTF("Transfer %d:\n", i+1);
670 #ifndef NO_WINDRVR
671 wdheader->size = sizeof(WD_TRANSFER);
672 request = TRANSFER;
673 wdheader->data = tr + i;
674 #endif
675 ret = pp_transfer(tr + i, fd, request, wdioctl);
676 }
677
678 #ifndef NO_WINDRVR
679 wdheader->data = tr;
680 #endif
681
682 return ret;
683 }
684 break;
685
686 case EVENT_UNREGISTER:
687 DPRINTF("EVENT_UNREGISTER\n");
688 #ifndef NO_WINDRVR
689 ret = (*ioctl_func) (fd, request, wdioctl);
690 #endif
691 break;
692
693 case INT_WAIT:
694 DPRINTF("INT_WAIT\n");
695 {
696 struct interrupt *it = (struct interrupt*)(wdheader->data);
697
698 DPRINTF("Handle: %lu, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n",
699 it->hInterrupt, it->dwOptions,
700 it->dwCmds, it->fEnableOk, it->dwCounter,
701 it->dwLost, it->fStopped);
702
703 #ifndef NO_WINDRVR
704 ret = (*ioctl_func) (fd, request, wdioctl);
705 #else
706 if (usbdevice) {
707 if (it->dwCounter == 0) {
708 it->dwCounter = 1;
709 } else {
710 pthread_mutex_lock(&int_wait);
711 pthread_mutex_unlock(&int_wait);
712 }
713 } else {
714 pthread_mutex_lock(&int_wait);
715 pthread_mutex_unlock(&int_wait);
716 }
717 #endif
718
719 DPRINTF("INT_WAIT_RETURN: Handle: %lu, Options: %lx, ncmds: %lu, enableok: %lu, count: %lu, lost: %lu, stopped: %lu\n",
720 it->hInterrupt, it->dwOptions, it->dwCmds,
721 it->fEnableOk, it->dwCounter, it->dwLost,
722 it->fStopped);
723 }
724 break;
725
726 case CARD_UNREGISTER:
727 DPRINTF("CARD_UNREGISTER\n");
728 {
729 struct card_register* cr = (struct card_register*)(wdheader->data);
730
731 DPRINTF("Addr: 0x%lx, bytes: %lu, bar: %lu\n",
732 (unsigned long)cr->Card.Item[0].I.IO.dwAddr,
733 cr->Card.Item[0].I.IO.dwBytes,
734 cr->Card.Item[0].I.IO.dwBar);
735
736 DPRINTF("hCard: %lu\n", cr->hCard);
737
738 #ifndef NO_WINDRVR
739 ret = (*ioctl_func) (fd, request, wdioctl);
740 #else
741 if (parportfd == cr->hCard && parportfd >= 0) {
742 ioctl(parportfd, PPRELEASE);
743 close(parportfd);
744 parportfd = -1;
745 parportnum--;
746 }
747 #endif
748 }
749 break;
750
751 case EVENT_PULL:
752 DPRINTF("EVENT_PULL\n");
753 {
754 struct event *e = (struct event*)(wdheader->data);
755 #ifdef DEBUG
756 int i;
757
758 DPRINTF("handle: %lu, action: %lu, status: %lu, eventid: %lu, cardtype: %lx, kplug: %lu, options: %lu, dev: %lx:%lx, unique: %lu, ver: %lu, nummatch: %lu\n",
759 e->handle, e->dwAction, e->dwStatus,
760 e->dwEventId, e->dwCardType, e->hKernelPlugIn,
761 e->dwOptions, e->u.Usb.deviceId.dwVendorId,
762 e->u.Usb.deviceId.dwProductId,
763 e->u.Usb.dwUniqueID, e->dwEventVer,
764 e->dwNumMatchTables);
765
766 for (i = 0; i < e->dwNumMatchTables; i++)
767 DPRINTF("match: dev: %04x:%04x, class: %x, subclass: %x, intclass: %x, intsubclass: %x, intproto: %x\n",
768 e->matchTables[i].VendorId,
769 e->matchTables[i].ProductId,
770 e->matchTables[i].bDeviceClass,
771 e->matchTables[i].bDeviceSubClass,
772 e->matchTables[i].bInterfaceClass,
773 e->matchTables[i].bInterfaceSubClass,
774 e->matchTables[i].bInterfaceProtocol);
775 #endif
776
777 #ifndef NO_WINDRVR
778 ret = (*ioctl_func) (fd, request, wdioctl);
779 #else
780 if (usbdevice) {
781 struct usb_interface *interface = usbdevice->config->interface;
782
783 e->dwCardType = card_type;
784 e->dwAction = 1;
785 e->dwEventId = 109;
786 e->u.Usb.dwUniqueID = 110;
787 e->matchTables[0].VendorId = usbdevice->descriptor.idVendor;
788 e->matchTables[0].ProductId = usbdevice->descriptor.idProduct;
789 e->matchTables[0].bDeviceClass = usbdevice->descriptor.bDeviceClass;
790 e->matchTables[0].bDeviceSubClass = usbdevice->descriptor.bDeviceSubClass;
791 e->matchTables[0].bInterfaceClass = interface->altsetting[0].bInterfaceClass;
792 e->matchTables[0].bInterfaceSubClass = interface->altsetting[0].bInterfaceSubClass;
793 e->matchTables[0].bInterfaceProtocol = interface->altsetting[0].bInterfaceProtocol;
794 }
795 #endif
796
797 #ifdef DEBUG
798 DPRINTF("handle: %lu, action: %lu, status: %lu, eventid: %lu, cardtype: %lx, kplug: %lu, options: %lu, dev: %lx:%lx, unique: %lu, ver: %lu, nummatch: %lu\n",
799 e->handle, e->dwAction, e->dwStatus,
800 e->dwEventId, e->dwCardType, e->hKernelPlugIn,
801 e->dwOptions, e->u.Usb.deviceId.dwVendorId,
802 e->u.Usb.deviceId.dwProductId,
803 e->u.Usb.dwUniqueID, e->dwEventVer,
804 e->dwNumMatchTables);
805
806 for (i = 0; i < e->dwNumMatchTables; i++)
807 DPRINTF("match: dev: %04x:%04x, class: %x, subclass: %x, intclass: %x, intsubclass: %x, intproto: %x\n",
808 e->matchTables[i].VendorId,
809 e->matchTables[i].ProductId,
810 e->matchTables[i].bDeviceClass,
811 e->matchTables[i].bDeviceSubClass,
812 e->matchTables[i].bInterfaceClass,
813 e->matchTables[i].bInterfaceSubClass,
814 e->matchTables[i].bInterfaceProtocol);
815 #endif
816
817 }
818 break;
819
820 default:
821 fprintf(stderr,"!!!Unsupported IOCTL: %x!!!\n", request);
822 #ifndef NO_WINDRVR
823 ret = (*ioctl_func) (fd, request, wdioctl);
824 #endif
825 break;
826 }
827
828 return ret;
829 }
830
831 int ioctl(int fd, unsigned long int request, ...) {
832 va_list args;
833 void *argp;
834 int ret;
835
836 if (!ioctl_func)
837 ioctl_func = (int (*) (int, int, void *)) dlsym (RTLD_NEXT, "ioctl");
838
839 va_start (args, request);
840 argp = va_arg (args, void *);
841 va_end (args);
842
843 if (fd == windrvrfd)
844 ret = do_wdioctl(fd, request, argp);
845 else
846 ret = (*ioctl_func) (fd, request, argp);
847
848 return ret;
849 }
850
851 int open (const char *pathname, int flags, ...) {
852 static int (*func) (const char *, int, mode_t) = NULL;
853 mode_t mode = 0;
854 va_list args;
855 int fd;
856
857 if (!func)
858 func = (int (*) (const char *, int, mode_t)) dlsym (RTLD_NEXT, "open");
859
860 if (flags & O_CREAT) {
861 va_start(args, flags);
862 mode = va_arg(args, mode_t);
863 va_end(args);
864 }
865
866 if (!strcmp (pathname, "/dev/windrvr6")) {
867 DPRINTF("opening windrvr6\n");
868 #ifdef NO_WINDRVR
869 windrvrfd = fd = (*func) ("/dev/null", flags, mode);
870 #else
871 windrvrfd = fd = (*func) (pathname, flags, mode);
872 #endif
873 if (!busses) {
874 usb_init();
875 usb_find_busses();
876 usb_find_devices();
877
878 busses = usb_get_busses();
879 }
880
881 return fd;
882 }
883
884 return (*func) (pathname, flags, mode);
885 }
886
887 int close(int fd) {
888 static int (*func) (int) = NULL;
889
890 if (!func)
891 func = (int (*) (int)) dlsym(RTLD_NEXT, "close");
892
893 if (fd == windrvrfd && windrvrfd >= 0) {
894 DPRINTF("close windrvrfd\n");
895 if (usbinterface >= 0)
896 usb_release_interface(usb_devhandle, usbinterface);
897
898 if (usb_devhandle)
899 usb_close(usb_devhandle);
900
901 usb_devhandle = NULL;
902 usbinterface = -1;
903 windrvrfd = -1;
904 }
905
906 return (*func) (fd);
907 }
908
909 FILE *fopen(const char *path, const char *mode) {
910 FILE *ret;
911 static FILE* (*func) (const char*, const char*) = NULL;
912
913 if (!func)
914 func = (FILE* (*) (const char*, const char*)) dlsym(RTLD_NEXT, "fopen");
915
916 ret = (*func) (path, mode);
917
918 if (!strcmp (path, "/proc/modules")) {
919 DPRINTF("opening /proc/modules\n");
920 #ifdef NO_WINDRVR
921 modulesfp = ret;
922 modules_read = 0;
923 #endif
924 }
925
926 return ret;
927 }
928
929 char *fgets(char *s, int size, FILE *stream) {
930 static char* (*func) (char*, int, FILE*) = NULL;
931 const char modules[][256] = {"windrvr6 1 0 - Live 0xdeadbeef\n", "parport_pc 1 0 - Live 0xdeadbeef\n"};
932 char *ret = NULL;
933
934
935 if (!func)
936 func = (char* (*) (char*, int, FILE*)) dlsym(RTLD_NEXT, "fgets");
937
938 if (modulesfp == stream) {
939 if (modules_read < sizeof(modules) / sizeof(modules[0])) {
940 strcpy(s, modules[modules_read]);
941 ret = s;
942 modules_read++;
943 }
944 } else {
945 ret = (*func)(s,size,stream);
946 }
947
948 return ret;
949 }
950
951 int fclose(FILE *fp) {
952 static int (*func) (FILE*) = NULL;
953
954 if (!func)
955 func = (int (*) (FILE*)) dlsym(RTLD_NEXT, "fclose");
956
957 if (fp == modulesfp) {
958 modulesfp = NULL;
959 }
960
961 return (*func)(fp);
962 }
963
964 int access(const char *pathname, int mode) {
965 static int (*func) (const char*, int);
966
967 if (!func)
968 func = (int (*) (const char*, int)) dlsym(RTLD_NEXT, "access");
969
970 if (!strcmp(pathname, "/dev/windrvr6")) {
971 return 0;
972 } else {
973 return (*func)(pathname, mode);
974 }
975 }
Impressum, Datenschutz