123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537 |
- #include <stdio.h>
- #include <string.h>
- #include <ftw.h>
- #include <stdlib.h>
- #include <pthread.h>
- #include <unistd.h>
- #include <errno.h>
- #include <limits.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <sys/ioctl.h>
- #include <linux/usbdevice_fs.h>
- #define TEST_CASES 30
- struct usbtest_param {
-
- unsigned test_num;
- unsigned iterations;
- unsigned length;
- unsigned vary;
- unsigned sglen;
-
- struct timeval duration;
- };
- #define USBTEST_REQUEST _IOWR('U', 100, struct usbtest_param)
- #define USB_DT_DEVICE 0x01
- #define USB_DT_INTERFACE 0x04
- #define USB_CLASS_PER_INTERFACE 0
- #define USB_CLASS_VENDOR_SPEC 0xff
- struct usb_device_descriptor {
- __u8 bLength;
- __u8 bDescriptorType;
- __u16 bcdUSB;
- __u8 bDeviceClass;
- __u8 bDeviceSubClass;
- __u8 bDeviceProtocol;
- __u8 bMaxPacketSize0;
- __u16 idVendor;
- __u16 idProduct;
- __u16 bcdDevice;
- __u8 iManufacturer;
- __u8 iProduct;
- __u8 iSerialNumber;
- __u8 bNumConfigurations;
- } __attribute__ ((packed));
- struct usb_interface_descriptor {
- __u8 bLength;
- __u8 bDescriptorType;
- __u8 bInterfaceNumber;
- __u8 bAlternateSetting;
- __u8 bNumEndpoints;
- __u8 bInterfaceClass;
- __u8 bInterfaceSubClass;
- __u8 bInterfaceProtocol;
- __u8 iInterface;
- } __attribute__ ((packed));
- enum usb_device_speed {
- USB_SPEED_UNKNOWN = 0,
- USB_SPEED_LOW, USB_SPEED_FULL,
- USB_SPEED_HIGH
- };
- static char *speed (enum usb_device_speed s)
- {
- switch (s) {
- case USB_SPEED_UNKNOWN: return "unknown";
- case USB_SPEED_LOW: return "low";
- case USB_SPEED_FULL: return "full";
- case USB_SPEED_HIGH: return "high";
- default: return "??";
- }
- }
- struct testdev {
- struct testdev *next;
- char *name;
- pthread_t thread;
- enum usb_device_speed speed;
- unsigned ifnum : 8;
- unsigned forever : 1;
- int test;
- struct usbtest_param param;
- };
- static struct testdev *testdevs;
- static int testdev_ffs_ifnum(FILE *fd)
- {
- union {
- char buf[255];
- struct usb_interface_descriptor intf;
- } u;
- for (;;) {
- if (fread(u.buf, 1, 1, fd) != 1)
- return -1;
- if (fread(u.buf + 1, (unsigned char)u.buf[0] - 1, 1, fd) != 1)
- return -1;
- if (u.intf.bLength == sizeof u.intf
- && u.intf.bDescriptorType == USB_DT_INTERFACE
- && u.intf.bNumEndpoints == 2
- && u.intf.bInterfaceClass == USB_CLASS_VENDOR_SPEC
- && u.intf.bInterfaceSubClass == 0
- && u.intf.bInterfaceProtocol == 0)
- return (unsigned char)u.intf.bInterfaceNumber;
- }
- }
- static int testdev_ifnum(FILE *fd)
- {
- struct usb_device_descriptor dev;
- if (fread(&dev, sizeof dev, 1, fd) != 1)
- return -1;
- if (dev.bLength != sizeof dev || dev.bDescriptorType != USB_DT_DEVICE)
- return -1;
-
- if (dev.idVendor == 0x0547 && dev.idProduct == 0x1002)
- return 0;
-
-
-
- if (dev.idVendor == 0x0547 && dev.idProduct == 0x2235)
- return 0;
-
- if (dev.idVendor == 0x04b4 && dev.idProduct == 0x8613)
- return 0;
-
- if (dev.idVendor == 0x0547 && dev.idProduct == 0x0080)
- return 0;
-
- if (dev.idVendor == 0x06cd && dev.idProduct == 0x010b)
- return 0;
-
-
- if (dev.idVendor == 0x0525 && dev.idProduct == 0xa4a0)
- return 0;
-
- if (dev.idVendor == 0x0525 && dev.idProduct == 0xa4a4)
- return testdev_ffs_ifnum(fd);
-
-
- if (dev.idVendor == 0x0525 && dev.idProduct == 0xa4a3)
- return 0;
-
- if (dev.idVendor == 0xfff0 && dev.idProduct == 0xfff0)
- return 0;
-
-
- if (dev.idVendor == 0x0b62 && dev.idProduct == 0x0059)
- return 0;
-
-
- if (dev.idVendor == 0x0525 && dev.idProduct == 0xa4ac
- && (dev.bDeviceClass == USB_CLASS_PER_INTERFACE
- || dev.bDeviceClass == USB_CLASS_VENDOR_SPEC))
- return testdev_ffs_ifnum(fd);
- return -1;
- }
- static int find_testdev(const char *name, const struct stat *sb, int flag)
- {
- FILE *fd;
- int ifnum;
- struct testdev *entry;
- (void)sb;
- if (flag != FTW_F)
- return 0;
- fd = fopen(name, "rb");
- if (!fd) {
- perror(name);
- return 0;
- }
- ifnum = testdev_ifnum(fd);
- fclose(fd);
- if (ifnum < 0)
- return 0;
- entry = calloc(1, sizeof *entry);
- if (!entry)
- goto nomem;
- entry->name = strdup(name);
- if (!entry->name) {
- free(entry);
- nomem:
- perror("malloc");
- return 0;
- }
- entry->ifnum = ifnum;
-
- fprintf(stderr, "%s speed\t%s\t%u\n",
- speed(entry->speed), entry->name, entry->ifnum);
- entry->next = testdevs;
- testdevs = entry;
- return 0;
- }
- static int
- usbdev_ioctl (int fd, int ifno, unsigned request, void *param)
- {
- struct usbdevfs_ioctl wrapper;
- wrapper.ifno = ifno;
- wrapper.ioctl_code = request;
- wrapper.data = param;
- return ioctl (fd, USBDEVFS_IOCTL, &wrapper);
- }
- static void *handle_testdev (void *arg)
- {
- struct testdev *dev = arg;
- int fd, i;
- int status;
- if ((fd = open (dev->name, O_RDWR)) < 0) {
- perror ("can't open dev file r/w");
- return 0;
- }
- restart:
- for (i = 0; i < TEST_CASES; i++) {
- if (dev->test != -1 && dev->test != i)
- continue;
- dev->param.test_num = i;
- status = usbdev_ioctl (fd, dev->ifnum,
- USBTEST_REQUEST, &dev->param);
- if (status < 0 && errno == EOPNOTSUPP)
- continue;
-
-
- if (status < 0) {
- char buf [80];
- int err = errno;
- if (strerror_r (errno, buf, sizeof buf)) {
- snprintf (buf, sizeof buf, "error %d", err);
- errno = err;
- }
- printf ("%s test %d --> %d (%s)\n",
- dev->name, i, errno, buf);
- } else
- printf ("%s test %d, %4d.%.06d secs\n", dev->name, i,
- (int) dev->param.duration.tv_sec,
- (int) dev->param.duration.tv_usec);
- fflush (stdout);
- }
- if (dev->forever)
- goto restart;
- close (fd);
- return arg;
- }
- static const char *usb_dir_find(void)
- {
- static char udev_usb_path[] = "/dev/bus/usb";
- if (access(udev_usb_path, F_OK) == 0)
- return udev_usb_path;
- return NULL;
- }
- static int parse_num(unsigned *num, const char *str)
- {
- unsigned long val;
- char *end;
- errno = 0;
- val = strtoul(str, &end, 0);
- if (errno || *end || val > UINT_MAX)
- return -1;
- *num = val;
- return 0;
- }
- int main (int argc, char **argv)
- {
- int c;
- struct testdev *entry;
- char *device;
- const char *usb_dir = NULL;
- int all = 0, forever = 0, not = 0;
- int test = -1 ;
- struct usbtest_param param;
-
- param.iterations = 1000;
- param.length = 1024;
- param.vary = 512;
- param.sglen = 32;
-
- device = getenv ("DEVICE");
- while ((c = getopt (argc, argv, "D:aA:c:g:hlns:t:v:")) != EOF)
- switch (c) {
- case 'D':
- device = optarg;
- continue;
- case 'A':
- usb_dir = optarg;
-
- case 'a':
- device = NULL;
- all = 1;
- continue;
- case 'c':
- if (parse_num(¶m.iterations, optarg))
- goto usage;
- continue;
- case 'g':
- if (parse_num(¶m.sglen, optarg))
- goto usage;
- continue;
- case 'l':
- forever = 1;
- continue;
- case 'n':
- not = 1;
- continue;
- case 's':
- if (parse_num(¶m.length, optarg))
- goto usage;
- continue;
- case 't':
- test = atoi (optarg);
- if (test < 0)
- goto usage;
- continue;
- case 'v':
- if (parse_num(¶m.vary, optarg))
- goto usage;
- continue;
- case '?':
- case 'h':
- default:
- usage:
- fprintf (stderr,
- "usage: %s [options]\n"
- "Options:\n"
- "\t-D dev only test specific device\n"
- "\t-A usb-dir\n"
- "\t-a test all recognized devices\n"
- "\t-l loop forever(for stress test)\n"
- "\t-t testnum only run specified case\n"
- "\t-n no test running, show devices to be tested\n"
- "Case arguments:\n"
- "\t-c iterations default 1000\n"
- "\t-s transfer length default 1024\n"
- "\t-g sglen default 32\n"
- "\t-v vary default 512\n",
- argv[0]);
- return 1;
- }
- if (optind != argc)
- goto usage;
- if (!all && !device) {
- fprintf (stderr, "must specify '-a' or '-D dev', "
- "or DEVICE=/dev/bus/usb/BBB/DDD in env\n");
- goto usage;
- }
-
- if (!usb_dir) {
- usb_dir = usb_dir_find();
- if (!usb_dir) {
- fputs ("USB device files are missing\n", stderr);
- return -1;
- }
- }
-
- if (ftw (usb_dir, find_testdev, 3) != 0) {
- fputs ("ftw failed; are USB device files missing?\n", stderr);
- return -1;
- }
-
- if (!testdevs && !device) {
- fputs ("no test devices recognized\n", stderr);
- return -1;
- }
- if (not)
- return 0;
- if (testdevs && testdevs->next == 0 && !device)
- device = testdevs->name;
- for (entry = testdevs; entry; entry = entry->next) {
- int status;
- entry->param = param;
- entry->forever = forever;
- entry->test = test;
- if (device) {
- if (strcmp (entry->name, device))
- continue;
- return handle_testdev (entry) != entry;
- }
- status = pthread_create (&entry->thread, 0, handle_testdev, entry);
- if (status)
- perror ("pthread_create");
- }
- if (device) {
- struct testdev dev;
-
- fprintf (stderr, "%s: %s may see only control tests\n",
- argv [0], device);
- memset (&dev, 0, sizeof dev);
- dev.name = device;
- dev.param = param;
- dev.forever = forever;
- dev.test = test;
- return handle_testdev (&dev) != &dev;
- }
-
- for (entry = testdevs; entry; entry = entry->next) {
- void *retval;
- if (pthread_join (entry->thread, &retval))
- perror ("pthread_join");
-
- }
- return 0;
- }
|