]> git.zerfleddert.de Git - proxmark3-svn/blame - client/usb.c
fix USB send data timing issue in CMD_DOWNLOADED_SIM_SAMPLES_125K
[proxmark3-svn] / client / usb.c
CommitLineData
6658905f 1#include <stdio.h>
2#include <stdlib.h>
3a8464f0 3#include <stdbool.h>
6658905f 4#include <unistd.h>
5#include <usb.h>
6#include <strings.h>
7#include <errno.h>
8
cd00aa30 9#include "prox.h"
6658905f 10#include "proxmark3.h"
9b255608 11#include "../include/usb_cmd.h"
6658905f 12usb_dev_handle *devh = NULL;
13static unsigned int claimed_iface = 0;
14unsigned char return_on_error = 0;
15unsigned char error_occured = 0;
9b255608 16extern unsigned int current_command;
6658905f 17
9b255608 18void SendCommand(UsbCommand *c) {
6658905f 19 int ret;
20
21#if 0
22 printf("Sending %d bytes\n", sizeof(UsbCommand));
23#endif
9b255608 24 current_command = c->cmd;
6658905f 25 ret = usb_bulk_write(devh, 0x01, (char*)c, sizeof(UsbCommand), 1000);
26 if (ret<0) {
27 error_occured = 1;
28 if (return_on_error)
29 return;
30
31 fprintf(stderr, "write failed: %s!\nTrying to reopen device...\n",
32 usb_strerror());
33
34 if (devh) {
35 usb_close(devh);
36 devh = NULL;
37 }
38 while(!(devh=OpenProxmark(0))) { sleep(1); }
39 printf(PROXPROMPT);
40 fflush(NULL);
41
42 return;
43 }
6658905f 44}
45
aa81a8d3 46bool ReceiveCommandPoll(UsbCommand *c) {
6658905f 47 int ret;
48
49 bzero(c, sizeof(UsbCommand));
50 ret = usb_bulk_read(devh, 0x82, (char*)c, sizeof(UsbCommand), 500);
51 if (ret<0) {
52 if (ret != -ETIMEDOUT) {
53 error_occured = 1;
54 if (return_on_error)
9b255608 55 return false;
6658905f 56
57 fprintf(stderr, "read failed: %s(%d)!\nTrying to reopen device...\n",
58 usb_strerror(), ret);
59
60 if (devh) {
61 usb_close(devh);
62 devh = NULL;
63 }
64 while(!(devh=OpenProxmark(0))) { sleep(1); }
65 printf(PROXPROMPT);
66 fflush(NULL);
67
9b255608 68 return false;
6658905f 69 }
70 } else {
71 if (ret && (ret < sizeof(UsbCommand))) {
72 fprintf(stderr, "Read only %d instead of requested %d bytes!\n",
73 ret, (int)sizeof(UsbCommand));
74 }
6658905f 75 }
76
022c8791 77 return ret > 0;
6658905f 78}
79
80void ReceiveCommand(UsbCommand *c) {
9b255608 81// printf("%s()\n", __FUNCTION__);
82 int retval = 0;
83 do {
84 retval = ReceiveCommandPoll(c);
85 if (retval != 1) printf("ReceiveCommandPoll returned %d\n", retval);
86 } while(retval<0);
87// printf("recv %x\n", c->cmd);
6658905f 88}
89
90usb_dev_handle* findProxmark(int verbose, unsigned int *iface) {
91 struct usb_bus *busses, *bus;
92 usb_dev_handle *handle = NULL;
93
94 usb_find_busses();
95 usb_find_devices();
96
97 busses = usb_get_busses();
98
99 for (bus = busses; bus; bus = bus->next) {
100 struct usb_device *dev;
101
102 for (dev = bus->devices; dev; dev = dev->next) {
103 struct usb_device_descriptor *desc = &(dev->descriptor);
104
105 if ((desc->idProduct == 0x4b8f) && (desc->idVendor == 0x9ac4)) {
106 handle = usb_open(dev);
107 if (!handle) {
108 if (verbose)
109 fprintf(stderr, "open failed: %s!\n", usb_strerror());
110 return NULL;
111 }
112
113 *iface = dev->config[0].interface[0].altsetting[0].bInterfaceNumber;
114
115 return handle;
116 }
117 }
118 }
119
120 return NULL;
121}
122
123usb_dev_handle* OpenProxmark(int verbose) {
124 int ret;
125 usb_dev_handle *handle = NULL;
126 unsigned int iface;
127
128#ifndef __APPLE__
129 handle = findProxmark(verbose, &iface);
130 if (!handle)
131 return NULL;
132
133 /* Whatever... */
134 usb_reset(handle);
135#endif
136
137 handle = findProxmark(verbose, &iface);
138 if (!handle)
139 return NULL;
140
48e6e0a6 141#ifndef __APPLE__
7fdbe272 142 /* detach kernel driver first */
143 ret = usb_detach_kernel_driver_np(handle, iface);
144 /* don't complain if no driver attached */
145 if (ret<0 && ret != -61 && verbose)
146 fprintf(stderr, "detach kernel driver failed: (%d) %s!\n", ret, usb_strerror());
48e6e0a6 147#endif
6658905f 148 ret = usb_claim_interface(handle, iface);
149 if (ret<0) {
150 if (verbose)
151 fprintf(stderr, "claim failed: %s!\n", usb_strerror());
152 return NULL;
153 }
154
155 claimed_iface = iface;
156 devh = handle;
157 return handle;
158}
159
160void CloseProxmark(void) {
161 usb_release_interface(devh, claimed_iface);
162 usb_close(devh);
163}
Impressum, Datenschutz