File: usbdebug.cpp

package info (click to toggle)
xboxdrv 0.8.4-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,252 kB
  • sloc: cpp: 19,297; xml: 3,202; ansic: 507; python: 483; sh: 89; makefile: 34; ruby: 19
file content (965 lines) | stat: -rw-r--r-- 23,528 bytes parent folder | download | duplicates (3)
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
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
#include <stdio.h>
#include <string.h>
#include <boost/format.hpp>
#include <signal.h>
#include <usb.h>
#include <sstream>
#include <pthread.h>
#include <stdexcept>
#include <string>
#include <vector>
#include <iostream>

class USBDevice;
class EndpointListenerThread;

void print_raw_data(std::ostream& out, uint8_t* data, int len);
bool global_interrupt = false;

struct usb_device*
find_usb_device(uint16_t idVendor, uint16_t idProduct)
{
  struct usb_bus* busses = usb_get_busses();

  for (struct usb_bus* bus = busses; bus; bus = bus->next)
    {
      for (struct usb_device* dev = bus->devices; dev; dev = dev->next) 
        {
          if (dev->descriptor.idVendor  == idVendor &&
              dev->descriptor.idProduct == idProduct)
            {
              return dev;
            }
        }
    }
  return 0;
}

class USBDevice
{
private:
  static USBDevice* current_;
public:
  static USBDevice* current() { return current_; }

private:
  struct usb_device*     dev;
  struct usb_dev_handle* handle;

  std::vector<EndpointListenerThread*> threads;
public: 
  USBDevice(struct usb_device* dev_)
    : dev(dev_)
  {
    USBDevice:: current_ = this;

    handle = usb_open(dev);
    if (!handle)
      {
        throw std::runtime_error("Error opening usb device");
      }
  }

  ~USBDevice()
  {
    usb_close(handle);
  }

  void clear_halt(int ep)
  {
    if (usb_clear_halt(handle, ep) != 0)
      {
        std::cout << "Failure to reset_ep: " << ep << std::endl;
      }    
  }

  void reset()
  {
    if (usb_reset(handle) != 0)
      {
        std::cout << "Failure to reset" << std::endl;
      }
  }

  void detach_kernel_driver(int iface)
  {
    if (usb_detach_kernel_driver_np(handle, iface) < 0)
      {
        std::ostringstream str;
        str << "Couldn't detcach interface " << iface;
        throw std::runtime_error(str.str());
      }
  }

  void claim_interface(int iface)
  {
    if (usb_claim_interface(handle, iface) != 0)
      {
        std::ostringstream str;
        str << "Couldn't claim interface " << iface;
        throw std::runtime_error(str.str());
      }
  }


  void release_interface(int iface)
  {
    if (usb_release_interface(handle, iface) != 0)
      {
        std::ostringstream str;
        str << "Couldn't release interface " << iface;
        throw std::runtime_error(str.str());
      }
  }

  void set_configuration(int configuration)
  {
    if (usb_set_configuration(handle, configuration) != 0)
      {
        std::ostringstream str;
        str << "Couldn't set configuration " << configuration;
        throw std::runtime_error(str.str());
      }
  }

  void set_altinterface(int interface)
  {
    if (usb_set_altinterface(handle, interface) != 0)
      {
        std::ostringstream str;
        str << "Couldn't set alternative interface " << interface;
        throw std::runtime_error(str.str());
      }
  }

  int read(int endpoint, uint8_t* data, int len)
  {
    return usb_interrupt_read(handle, endpoint, (char*)data, len, 0);
  }

  int write(int endpoint, uint8_t* data, int len)
  {
    return usb_interrupt_write(handle, endpoint, (char*)data, len, 0);
  }

  /* uint8_t  requesttype
     uint8_t  request
     uint16_t value;
     uint16_t index;
     uint16_t length;
   */
  int ctrl_msg(int requesttype, int request, 
               int value, int index,
               uint8_t* data, int size) 
  {
    return usb_control_msg(handle, 
                           requesttype,  request, 
                           value,  index,
                           (char*)data, size, 
                           0 /* timeout */);
  }
  
  void print_info()
  {
    for(int i = 0; i < dev->descriptor.bNumConfigurations; ++i)
      {
        std::cout << "Configuration: " << i << std::endl;
        for(int j = 0; j < dev->config[i].bNumInterfaces; ++j)
          {
            std::cout << "  Interface " << j << ":" << std::endl;
            for(int k = 0; k < dev->config[i].interface[j].num_altsetting; ++k)
              {
                for(int l = 0; l < dev->config[i].interface[j].altsetting[k].bNumEndpoints; ++l)
                  {
                    std::cout << "    Endpoint: " 
                              << int(dev->config[i].interface[j].altsetting[k].endpoint[l].bEndpointAddress & USB_ENDPOINT_ADDRESS_MASK)
                              << ((dev->config[i].interface[j].altsetting[k].endpoint[l].bEndpointAddress & USB_ENDPOINT_DIR_MASK) ? " (IN)" : " (OUT)")
                              << std::endl;
                  }
              }
          }
      }
  }

  void launch_listener_thread(int endpoint);
};

USBDevice* USBDevice::current_ = 0;

class EndpointListenerThread
{
private:
  pthread_t thread;
  int  endpoint;
  bool running;
public:
  EndpointListenerThread(int endpoint_)
    : endpoint(endpoint_),
      running(false)
  {
  }

  ~EndpointListenerThread()
  {
    
  }

  void start()
  {
    running = true;
    pthread_create(&thread, NULL, &EndpointListenerThread::callback, this);
  }

  static void* callback(void* userdata)
  {
    EndpointListenerThread* thread = static_cast<EndpointListenerThread*>(userdata);
    thread->run();
    pthread_exit(NULL);
  }

  void run()
  {
    bool this_quit = false;
    std::cout << "Reading from endpoint " << endpoint << std::endl;;
    while(!this_quit)
      {
        uint8_t data[8192];
        int ret = USBDevice::current()->read(endpoint, data, sizeof(data));
        if (ret < 0)
          {
            std::cerr << "USBError: " << ret << "\n" << usb_strerror() << std::endl;
            std::cerr << "Shutting down" << std::endl;
            this_quit = true;
          }
        else
          {
            std::cout << ">>> Ep" << endpoint << ": ";
            print_raw_data(std::cout, data, ret);
            std::cout << std::endl;
          }
      }
  }
};

void 
USBDevice::launch_listener_thread(int endpoint)
{
  try {
    EndpointListenerThread* thread = new EndpointListenerThread(endpoint);
    threads.push_back(thread);
    thread->start();
  } catch(std::exception& err) {
    std::cout << "Error: " << err.what() << std::endl;
  }
}

bool has_prefix(const std::string& lhs, const std::string rhs)
{
  if (lhs.length() < rhs.length())
    return false;
  else
    return lhs.compare(0, rhs.length(), rhs) == 0;
}

bool readline(const std::string& prompt,
              std::string& line)
{
  std::cout << prompt << std::flush;
  bool ret = !std::getline(std::cin, line).eof();
  //line = strip(line);
  return ret;
}

std::vector<std::string> 
tokenize(const std::string& str, const std::string& delimiters = " ")
{
  std::vector<std::string> tokens;  

  // Skip delimiters at beginning.
  std::string::size_type lastPos = str.find_first_not_of(delimiters, 0);
  // Find first "non-delimiter".
  std::string::size_type pos     = str.find_first_of(delimiters, lastPos);

  while (std::string::npos != pos || std::string::npos != lastPos)
    {
      // Found a token, add it to the vector.
      tokens.push_back(str.substr(lastPos, pos - lastPos));
      // Skip delimiters.  Note the "not_of"
      lastPos = str.find_first_not_of(delimiters, pos);
      // Find next "non-delimiter"
      pos = str.find_first_of(delimiters, lastPos);
    }

  return tokens;
}

void print_raw_data(std::ostream& out, uint8_t* data, int len)
{
  std::cout << "[" << len 
            << "] { ";
      
  for(int i = 0; i < len; ++i)
    {
      std::cout << boost::format("0x%02x") % int(data[i]);
      if (i != len-1)
        std::cout << ", ";
    }

  std::cout << " }";
}

void console_listen_cmd(const std::vector<std::string>& args)
{
  if (args.size() < 2)
    {
      std::cout << "Usage: listen [ENDPOINT]..." << std::endl;
    }
  else
    {
      for(size_t i = 1; i < args.size(); ++i)
        {
          int endpoint = atoi(args[i].c_str());
          USBDevice::current()->launch_listener_thread(endpoint);
        }
    }
}

void console_claim_cmd(const std::vector<std::string>& args)
{
  if (args.size() < 2)
    {
      std::cout << "Usage: claim [INTERFACE]..." << std::endl;
    }
  else
    {
      for(size_t i = 1; i < args.size(); ++i)
        {
          int interface = atoi(args[i].c_str());
          try {
            USBDevice::current()->claim_interface(interface);
          } catch (std::exception& err) {
            std::cout << "Error: " << err.what() << std::endl;
            goto end;
          }
          std::cout << "Interface " << interface << " successfully claimed" << std::endl;
        end:;
        }
    }
}

void console_release_cmd(const std::vector<std::string>& args)
{
  if (args.size() < 2)
    {
      std::cout << "Usage: release [INTERFACE]..." << std::endl;
    }
  else
    {
      for(size_t i = 1; i < args.size(); ++i)
        {
          int interface = atoi(args[i].c_str());
          try {
            USBDevice::current()->release_interface(interface);
          } catch (std::exception& err) {
            std::cout << "Error: " << err.what() << std::endl;
            goto end;
          }
          std::cout << "Interface " << interface << " successfully releaseed" << std::endl;
        end:;
        }
    }
}

void console_detach_cmd(const std::vector<std::string>& args)
{
  if (args.size() < 2)
    {
      std::cout << "Usage: detach [INTERFACE]..." << std::endl;
    }
  else
    {
      for(size_t i = 1; i < args.size(); ++i)
        {
          int interface = atoi(args[i].c_str());
          try {
            USBDevice::current()->detach_kernel_driver(interface);
          } catch (std::exception& err) {
            std::cout << "Error: " << err.what() << std::endl;
            goto end;
          }
          std::cout << "Interface " << interface << " successfully detached" << std::endl;
        end:;
        }
    }
}

void console_info_cmd(const std::vector<std::string>& args)
{
  USBDevice::current()->print_info();
}

class Sequence 
{
private:
  int   start;
  int   end;
  int   idx;

public:
  Sequence(int start_, int end_) 
    : start(start_), end(end_), idx(start_)
  {}

  Sequence(int start_)
    : start(start_), end(start_), idx(start_)
  {}

  int get() {
    if (eol())
      return end;
    else
      return idx;
  }

  void next() {
    if (!eol())
      {
        if (start <= end)
          idx += 1;
        else
          idx -= 1;
      }
  }
    
  bool eol() {
    if (start <= end)
      return idx > end;
    else
      return idx < end;
  }

  void reset() {
    idx = start;
  }

  std::string to_string() const
  {
    std::ostringstream str;
    if (start == end)
      {
        str << start;
      }
    else
      {
        str << start << "-" << end;
      }
    return str.str();
  }
};

class SequenceGenerator
{
private:
  std::vector<Sequence> sequences;
  std::vector<Sequence>::size_type idx;

public:
  /** spec: NUM or [NUM, NUM, NUM-NUM]*/
  SequenceGenerator(const std::string& spec)
  {
    std::vector<std::string> tokens = tokenize(spec, ",");

    for(std::vector<std::string>::iterator i = tokens.begin(); i != tokens.end(); ++i)
      {
        int start, end;
        if (sscanf(i->c_str(), "%x-%x", &start, &end) == 2)
          {
            sequences.push_back(Sequence(start, end)); 
          }
        else if (sscanf(i->c_str(), "%x", &start) == 1)
          {
            sequences.push_back(Sequence(start));      
          }
        else
          {
            throw std::runtime_error("Syntax Error in sequence, couldn't convert: " + *i);
          }
      }

    idx = 0;
  }

  bool eol() {
    return (idx == sequences.size());
  }
  
  void reset() {
    for(std::vector<Sequence>::iterator i = sequences.begin(); i != sequences.end(); ++i)
      i->reset();
    idx = 0;
  }

  int get() {
    if (eol())
      return sequences.back().get();
    else
      return sequences[idx].get();
  }

  void next() {
    if (!eol())
      {
        if (sequences[idx].eol())
          {
            ++idx;
            if (idx < sequences.size())
              sequences[idx].next();
          } 
        else 
          {
            return sequences[idx].next();
          }
      }
  }

  std::string to_string() const 
  {
    std::ostringstream str;
    std::vector<Sequence>::const_iterator i = sequences.begin();

    str << "{ ";
    while (i != sequences.end())
      {
        const Sequence& seq = *i;
        
        str << seq.to_string();

        ++i;
        if (i != sequences.end())
          str << ", ";
      }
    str << " }";
    
    return str.str();
  }
};

bool eol(std::vector<SequenceGenerator>& sequences)
{
  if (sequences.empty())
    return true;
  else
    return sequences.back().eol();
}

void next(std::vector<SequenceGenerator>& sequences, int idx)
{
  if (idx < int(sequences.size()))
    {
      if (!sequences[idx].eol())
        {
          sequences[idx].next();
          if (sequences[idx].eol())
            {
              if (idx+1 < int(sequences.size()))
                {
                  sequences[idx].reset();
                  next(sequences, idx+1);
                }
            }
        }
    }
}

void next(std::vector<SequenceGenerator>& sequences)
{
  if (!sequences.empty())
    {
      next(sequences, 0);
    }
}

void console_probe_cmd(const std::vector<std::string>& args)
{
  if (args.size() < 3)
    {
      std::cout << "Usage: send [EP] [DATA]..." << std::endl;
    }
  else
    {
      std::vector<uint8_t> data;
      std::vector<SequenceGenerator> sequences;

      int endpoint = atoi(args[1].c_str());
      for(int i = 2; i < int(args.size()); ++i)
        {
          SequenceGenerator gen(args[i]);
          sequences.push_back(gen);
          std::cout << gen.to_string() << std::endl;
        }

      data.resize(sequences.size());
      while(!eol(sequences) && !global_interrupt)
        {
          for(int i = 0; i < int(sequences.size()); ++i)
            data[i] = sequences[i].get();
          
          std::cout << "Data Ep: " << endpoint << ": ";
          print_raw_data(std::cout, &*data.begin(), data.size());
          int ret = USBDevice::current()->write(endpoint, &*data.begin(), data.size());
          std::cout << " -> " << ret;
          std::cout << std::endl;
          
          next(sequences);
          
          //usleep(100 * 1000);
          usleep(10 * 1000);
        }
    }
}

void console_wait_cmd(const std::vector<std::string>& args)
{
  if (args.size() != 2)
    {
      std::cout << "Usage: wait [SECONDS]" << std::endl;
    }
  else
    {
      float seconds = atof(args[1].c_str());
      std::cout << "Waiting for " << seconds << " seconds... " << std::flush;
      usleep(static_cast<useconds_t>(1000 * 1000 * seconds));
      std::cout << "done" << std::endl;
    }
}

void console_send_cmd(const std::vector<std::string>& args)
{
  if (args.size() < 3)
    {
      std::cout << "Usage: send [EP] [DATA]..." << std::endl;
    }
  else
    {
      int endpoint = atoi(args[1].c_str());
      std::vector<uint8_t> data;
      for(int i = 2; i < int(args.size()); ++i)
        {
          data.push_back(strtol(args[i].c_str(), NULL, 16));
        }

      std::cout << "Sending to endpoint " << endpoint << ": ";
      print_raw_data(std::cout, &*data.begin(), data.size());
      int ret = USBDevice::current()->write(endpoint, &*data.begin(), data.size());
      std::cout << " -> " << ret << std::endl;
    }
}

void console_ctrlreq_cmd(const std::vector<std::string>& args)
{
  if (args.size() < 5)
    {
      std::cout << "Usage: ctrlreq REQUESTTYPE REQUEST VALUE INDEX LEN" << std::endl;
    }
  else
    { // See USB Specification (usb_20.pdf) page 248
      int requesttype = strtol(args[1].c_str(), NULL, 16);
      int request     = strtol(args[2].c_str(), NULL, 16);
      int value       = strtol(args[3].c_str(), NULL, 16);
      int index       = strtol(args[4].c_str(), NULL, 16);
      int len         = strtol(args[5].c_str(), NULL, 16);

      std::cout << "Sending to ctrl: "
                << requesttype << " "
                << request << " "
                << value << " "
                << index << " "
                << len << ": ";

      uint8_t* data = (len == 0) ? NULL : new uint8_t[len];
      memset(data, 0, len*sizeof(uint8_t));
      
      int ret = USBDevice::current()->ctrl_msg(requesttype, request,
                                               value, index,
                                               data,
                                               len);
      std::cout << " -> " << ret << " '" << strerror(-ret) << "'" << std::endl;

      if (!data)
        std::cout << "no data";
      else
        print_raw_data(std::cout, data, len);
      
      std::cout << std::endl;

      delete[] data;
    }
}

void console_setconfiguration_cmd(const std::vector<std::string>& args)
{
  if (args.size() != 2)
    {
      std::cout << "Usage: setconfiguration CFG" << std::endl;
    }
  else
    {
      USBDevice::current()->set_configuration(atoi(args[1].c_str()));
    }
}

void console_setaltinterface_cmd(const std::vector<std::string>& args)
{
  if (args.size() != 2)
    {
      std::cout << "Usage: " << args[0] << " INTERFACE" << std::endl;
    }
  else
    {
      USBDevice::current()->set_altinterface(atoi(args[1].c_str()));
    }
}

void console_reset_ep_cmd(const std::vector<std::string>& args)
{
  if (args.size() != 2)
    {
      std::cout << "Usage: clear_halt ENDPOINT" << std::endl;
    }
  else
    {
      USBDevice::current()->clear_halt(atoi(args[1].c_str()));
    }
}

void console_reset_cmd(const std::vector<std::string>& args)
{
  USBDevice::current()->reset();
}

void console_ctrl_cmd(const std::vector<std::string>& args)
{
  if (args.size() < 5)
    {
      std::cout << "Usage: ctrl REQUESTTYPE REQUEST VALUE INDEX [DATA]..." << std::endl;
    }
  else
    { // See USB Specification (usb_20.pdf) page 248
      int requesttype = strtol(args[1].c_str(), NULL, 16);
      int request     = strtol(args[2].c_str(), NULL, 16);
      int value       = strtol(args[3].c_str(), NULL, 16);
      int index       = strtol(args[4].c_str(), NULL, 16);

      std::vector<uint8_t> data;
      for(int i = 5; i < int(args.size()); ++i)
        data.push_back(strtol(args[i].c_str(), NULL, 16));

      std::cout << "Sending to ctrl: "
                << requesttype << " "
                << request << " "
                << value << " "
                << index << ": ";
      if (data.empty())
        std::cout << "no data";
      else
        print_raw_data(std::cout, &*data.begin(), data.size());
      
      int ret = USBDevice::current()->ctrl_msg(requesttype, request,
                                               value, index,
                                               data.empty() ? NULL : &*data.begin(),
                                               data.size());
      std::cout << " -> " << ret << " '" << strerror(-ret) << "'" << std::endl;
    }
}

std::string strip_comment(const std::string& line)
{
  std::string::size_type p = line.find_first_of('#');
  if (p != std::string::npos)
    {
      return line.substr(0, p);
    }
  else
    {
      return line;
    }
}

bool quit = false;

void dispatch_command(const std::vector<std::string>& args)
{
  if (0)
    {
      for(int i = 0; i < int(args.size()); ++i)
        {
          std::cout << i << ":'" << args[i] << "' ";
        }
      std::cout << std::endl;
    }

  if (args[0] == "help")
    {
      std::cout << "help:\n   Print this help\n" << std::endl;
      std::cout << "quit:\n   Exit usbdebug\n" << std::endl;
      std::cout << "claim [INTERFACE]...\n   Claim the given interfaces\n" << std::endl;
      std::cout << "release [INTERFACE]...\n   Release the given interfaces\n" << std::endl;
      std::cout << "detach [INTERFACE]...\n   Detach kernel driver from interfaces\n" << std::endl;
      std::cout << "listen [ENDPOINT]...\n   On the given endpoints\n" << std::endl;
      std::cout << "info\n   Print some info on the current device\n" << std::endl;
      std::cout << "send [ENDPOINT] [DATA]...\n   Send data to an USB Endpoint\n" << std::endl;
    }
  else if (args[0] == "listen")
    {
      console_listen_cmd(args);
    }
  else if (args[0] == "info")
    {
      console_info_cmd(args);
    }
  else if (args[0] == "claim")
    {
      console_claim_cmd(args);
    }
  else if (args[0] == "release")
    {
      console_release_cmd(args);
    }
  else if (args[0] == "probe")
    {
      console_probe_cmd(args);
    }
  else if (args[0] == "detach")
    {
      console_detach_cmd(args);
    }
  else if (args[0] == "ctrl")
    {
      console_ctrl_cmd(args);
    }
  else if (args[0] == "ctrlreq")
    {
      console_ctrlreq_cmd(args);
    }
  else if (args[0] == "wait")
    {
      console_wait_cmd(args);
    }
  else if (args[0] == "send")
    {
      console_send_cmd(args);
    }
  else if (args[0] == "reset")
    {
      console_reset_cmd(args);
    }
  else if (args[0] == "clear_halt")
    {
      console_reset_ep_cmd(args);
    }
  else if (args[0] == "setconfiguration")
    {
      console_setconfiguration_cmd(args);
    }
  else if (args[0] == "setaltinterface")
    {
      console_setaltinterface_cmd(args);
    }
  else if (args[0] == "quit")
    {
      std::cout << "Exiting" << std::endl;
      quit = true;
    }
  else
    {
      std::cout << "Unknown command '" << args[0] << "', type 'help' to list all available commands" << std::endl;
    }
}

void eval_console_cmd(const std::string& line_)
{
  std::string line = strip_comment(line_);

  std::vector<std::string> lines = tokenize(line, ";");
  for(std::vector<std::string>::iterator i = lines.begin(); i != lines.end(); ++i)
    {
      std::vector<std::string> args = tokenize(*i);
      if (!args.empty())
        {
          dispatch_command(args);
        }
    }
}

void run_console()
{
  std::cout << "Type 'help' to list all available commands" << std::endl;
  
  std::string line;

  while (!quit && readline("\033[32musb\033[0m> ", line))
    {
      std::vector<std::string> cmds = tokenize(line, ";");
      for(std::vector<std::string>::iterator i = cmds.begin(); i != cmds.end(); ++i)
        eval_console_cmd(*i);
      global_interrupt = false;
    }
  std::cout << std::endl; 
}



void signal_callback(int)
{
  if (global_interrupt)
    {
      exit(EXIT_FAILURE);
    }
  else
    {
      global_interrupt = true;
      std::cout << "INTERRUPT" << std::endl;
    }
}

int main(int argc, char** argv)
{
  if (argc != 2)
    {
      std::cout << "Usage: " << argv[0] << " [idVendor:idProduct]" << std::endl;
    }
  else
    {
      usb_init();
      usb_find_busses();
      usb_find_devices();

      uint16_t idVendor;
      uint16_t idProduct;
      if (sscanf(argv[1], "%hx:%hx", &idVendor, &idProduct) == 2)
        {
          struct usb_device* dev = find_usb_device(idVendor, idProduct);
            
          if (dev)
            {
              std::cout << boost::format("Opening device with idVendor: 0x%h04x, idProduct: 0x%h04x") % idVendor % idProduct << std::endl;
              USBDevice* usbdev = new USBDevice(dev);
              signal(SIGINT, signal_callback);
              run_console();
              delete usbdev;
            }
          else
            {
              std::cout << "Couldn't device with " << argv[1] << std::endl;
            }
        }
      else
        {
          std::cout << "Syntax error, must be idVendor:idProduct (ex: 045e:028e)" << std::endl;
        }
    }

  return 0;
}

/* EOF */