2015-02-04 05:22:39 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
|
|
|
|
// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// USB utilities
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "proxusb.h"
|
2019-04-26 06:04:32 +08:00
|
|
|
#include "sleep.h"
|
2015-02-04 05:22:39 +08:00
|
|
|
|
|
|
|
// It seems to be missing for mingw
|
|
|
|
#ifndef ETIMEDOUT
|
|
|
|
#define ETIMEDOUT 116
|
|
|
|
#endif
|
|
|
|
|
|
|
|
usb_dev_handle *devh = NULL;
|
|
|
|
static unsigned int claimed_iface = 0;
|
|
|
|
unsigned char return_on_error = 0;
|
2019-09-14 23:44:58 +08:00
|
|
|
unsigned char error_occurred = 0;
|
2015-02-04 05:22:39 +08:00
|
|
|
|
2019-05-08 19:32:17 +08:00
|
|
|
void SendCommandBL(uint64_t cmd, uint64_t arg0, uint64_t arg1, uint64_t arg2, void *data, size_t len) {
|
2019-03-10 07:00:59 +08:00
|
|
|
int ret;
|
2019-05-08 19:32:17 +08:00
|
|
|
PacketCommandOLD c = {CMD_UNKNOWN, {0, 0, 0}, {{0}}};
|
|
|
|
c.cmd = cmd;
|
|
|
|
c.arg[0] = arg0;
|
|
|
|
c.arg[1] = arg1;
|
|
|
|
c.arg[2] = arg2;
|
|
|
|
if (len && data)
|
|
|
|
memcpy(&c.d, data, len);
|
2015-02-04 05:22:39 +08:00
|
|
|
|
|
|
|
#if 0
|
2019-04-18 18:43:35 +08:00
|
|
|
printf("Sending %d bytes\n", sizeof(PacketCommandOLD));
|
2015-02-04 05:22:39 +08:00
|
|
|
#endif
|
2018-04-19 02:17:00 +08:00
|
|
|
|
2019-05-08 19:32:17 +08:00
|
|
|
ret = usb_bulk_write(devh, 0x01, (char *)&c, sizeof(PacketCommandOLD), 1000);
|
2019-03-10 07:00:59 +08:00
|
|
|
if (ret < 0) {
|
2019-09-14 23:44:58 +08:00
|
|
|
error_occurred = 1;
|
2019-03-10 07:00:59 +08:00
|
|
|
if (return_on_error)
|
|
|
|
return;
|
2015-02-04 05:22:39 +08:00
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
fprintf(stderr, "write failed: %s!\nTrying to reopen device...\n",
|
|
|
|
usb_strerror());
|
2015-02-04 05:22:39 +08:00
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
if (devh) {
|
|
|
|
usb_close(devh);
|
|
|
|
devh = NULL;
|
|
|
|
}
|
|
|
|
while (!OpenProxmark(0)) { msleep(1000); }
|
|
|
|
printf(PROXPROMPT);
|
|
|
|
fflush(NULL);
|
2015-02-04 05:22:39 +08:00
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-02-04 05:22:39 +08:00
|
|
|
}
|
|
|
|
|
2019-04-18 18:43:35 +08:00
|
|
|
bool ReceiveCommandPoll(PacketResponseOLD *c) {
|
2019-03-10 07:00:59 +08:00
|
|
|
int ret;
|
|
|
|
|
2019-04-18 18:43:35 +08:00
|
|
|
memset(c, 0, sizeof(PacketResponseOLD));
|
|
|
|
ret = usb_bulk_read(devh, 0x82, (char *)c, sizeof(PacketResponseOLD), 500);
|
2019-03-10 07:00:59 +08:00
|
|
|
if (ret < 0) {
|
|
|
|
if (ret != -ETIMEDOUT) {
|
2019-09-14 23:44:58 +08:00
|
|
|
error_occurred = 1;
|
2019-03-10 07:00:59 +08:00
|
|
|
if (return_on_error)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
fprintf(stderr, "read failed: %s(%d)!\nTrying to reopen device...\n",
|
|
|
|
usb_strerror(), ret);
|
|
|
|
|
|
|
|
if (devh) {
|
|
|
|
usb_close(devh);
|
|
|
|
devh = NULL;
|
|
|
|
}
|
|
|
|
while (!OpenProxmark(0)) { msleep(1000); }
|
|
|
|
printf(PROXPROMPT);
|
|
|
|
fflush(NULL);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
2019-04-18 18:43:35 +08:00
|
|
|
if (ret && (ret < sizeof(PacketResponseOLD))) {
|
2019-03-10 07:00:59 +08:00
|
|
|
fprintf(stderr, "Read only %d instead of requested %d bytes!\n",
|
2019-04-18 18:43:35 +08:00
|
|
|
ret, (int)sizeof(PacketResponseOLD));
|
2019-03-10 07:00:59 +08:00
|
|
|
}
|
2015-02-04 05:22:39 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
return ret > 0;
|
2015-02-04 05:22:39 +08:00
|
|
|
}
|
|
|
|
|
2019-04-18 18:43:35 +08:00
|
|
|
void ReceiveCommand(PacketResponseOLD *c) {
|
2015-02-04 05:22:39 +08:00
|
|
|
// printf("%s()\n", __FUNCTION__);
|
2019-03-10 07:00:59 +08:00
|
|
|
int retval = 0;
|
|
|
|
do {
|
|
|
|
retval = ReceiveCommandPoll(c);
|
|
|
|
if (retval != 1) printf("ReceiveCommandPoll returned %d\n", retval);
|
|
|
|
} while (retval < 0);
|
2015-02-04 05:22:39 +08:00
|
|
|
// printf("recv %x\n", c->cmd);
|
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
usb_dev_handle *findProxmark(int verbose, unsigned int *iface) {
|
2019-03-10 06:35:06 +08:00
|
|
|
struct usb_bus *busses, *bus;
|
|
|
|
usb_dev_handle *handle = NULL;
|
|
|
|
struct prox_unit units[50];
|
|
|
|
int iUnit = 0;
|
|
|
|
|
|
|
|
usb_find_busses();
|
|
|
|
usb_find_devices();
|
|
|
|
|
|
|
|
busses = usb_get_busses();
|
|
|
|
|
|
|
|
for (bus = busses; bus; bus = bus->next) {
|
|
|
|
struct usb_device *dev;
|
|
|
|
|
|
|
|
for (dev = bus->devices; dev; dev = dev->next) {
|
|
|
|
struct usb_device_descriptor *desc = &(dev->descriptor);
|
|
|
|
|
|
|
|
if ((desc->idProduct == 0x4b8f) && (desc->idVendor == 0x9ac4)) {
|
|
|
|
handle = usb_open(dev);
|
|
|
|
if (!handle) {
|
|
|
|
if (verbose)
|
|
|
|
fprintf(stderr, "open fabiled: %s!\n", usb_strerror());
|
|
|
|
//return NULL;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*iface = dev->config[0].interface[0].altsetting[0].bInterfaceNumber;
|
|
|
|
|
|
|
|
struct prox_unit unit = {handle, {0}};
|
|
|
|
usb_get_string_simple(handle, desc->iSerialNumber, unit.serial_number, sizeof(unit.serial_number));
|
|
|
|
units[iUnit++] = unit;
|
|
|
|
|
|
|
|
//return handle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iUnit > 0) {
|
|
|
|
int iSelection = 0;
|
|
|
|
|
|
|
|
fprintf(stdout, "\nConnected units:\n");
|
|
|
|
|
|
|
|
for (int i = 0; i < iUnit; i++) {
|
2019-03-10 07:00:59 +08:00
|
|
|
struct usb_device *dev = usb_device(units[i].handle);
|
|
|
|
fprintf(stdout, "\t%d. SN: %s [%s/%s]\n", i + 1, units[i].serial_number, dev->bus->dirname, dev->filename);
|
2019-03-10 06:35:06 +08:00
|
|
|
}
|
|
|
|
if (iUnit > 1) {
|
|
|
|
while (iSelection < 1 || iSelection > iUnit) {
|
|
|
|
fprintf(stdout, "Which unit do you want to connect to? ");
|
|
|
|
int res = fscanf(stdin, "%d", &iSelection);
|
2019-03-10 07:00:59 +08:00
|
|
|
if (res != 1) {
|
2019-03-10 06:35:06 +08:00
|
|
|
fprintf(stderr, "Input parse error");
|
|
|
|
fflush(stderr);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
2019-03-10 07:00:59 +08:00
|
|
|
} else {
|
2019-03-10 06:35:06 +08:00
|
|
|
iSelection = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
iSelection --;
|
|
|
|
|
|
|
|
for (int i = 0; i < iUnit; i++) {
|
|
|
|
if (iSelection == i) continue;
|
|
|
|
usb_close(units[i].handle);
|
|
|
|
units[i].handle = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return units[iSelection].handle;
|
|
|
|
}
|
|
|
|
return NULL;
|
2015-02-04 05:22:39 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
usb_dev_handle *OpenProxmark(int verbose) {
|
2019-03-10 07:00:59 +08:00
|
|
|
int ret;
|
2019-04-05 15:22:12 +08:00
|
|
|
usb_dev_handle *handle;
|
2019-03-10 07:00:59 +08:00
|
|
|
unsigned int iface;
|
2015-02-04 05:22:39 +08:00
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
handle = findProxmark(verbose, &iface);
|
|
|
|
if (!handle)
|
|
|
|
return NULL;
|
2015-02-04 05:22:39 +08:00
|
|
|
|
|
|
|
#ifdef __linux__
|
2019-03-10 07:00:59 +08:00
|
|
|
/* detach kernel driver first */
|
|
|
|
ret = usb_detach_kernel_driver_np(handle, iface);
|
|
|
|
/* don't complain if no driver attached */
|
|
|
|
if (ret < 0 && ret != -61 && verbose)
|
|
|
|
fprintf(stderr, "detach kernel driver failed: (%d) %s!\n", ret, usb_strerror());
|
2015-02-04 05:22:39 +08:00
|
|
|
#endif
|
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
// Needed for Windows. Optional for Mac OS and Linux
|
|
|
|
ret = usb_set_configuration(handle, 1);
|
|
|
|
if (ret < 0) {
|
|
|
|
if (verbose)
|
|
|
|
fprintf(stderr, "configuration set failed: %s!\n", usb_strerror());
|
|
|
|
return NULL;
|
|
|
|
}
|
2015-02-04 05:22:39 +08:00
|
|
|
|
2019-03-10 07:00:59 +08:00
|
|
|
ret = usb_claim_interface(handle, iface);
|
|
|
|
if (ret < 0) {
|
|
|
|
if (verbose)
|
|
|
|
fprintf(stderr, "claim failed: %s!\n", usb_strerror());
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
claimed_iface = iface;
|
|
|
|
devh = handle;
|
|
|
|
return handle;
|
2015-02-04 05:22:39 +08:00
|
|
|
}
|
|
|
|
|
2019-03-10 18:20:22 +08:00
|
|
|
void CloseProxmark(void) {
|
2019-03-10 07:00:59 +08:00
|
|
|
usb_release_interface(devh, claimed_iface);
|
|
|
|
usb_close(devh);
|
|
|
|
devh = NULL;
|
2015-02-04 05:22:39 +08:00
|
|
|
}
|