usb.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * Copyright (c) 2006 Paolo Abeni (Italy)
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in the
  13. * documentation and/or other materials provided with the distribution.
  14. * 3. The name of the author may not be used to endorse or promote
  15. * products derived from this software without specific prior written
  16. * permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. *
  30. * Basic USB data struct
  31. * By Paolo Abeni <paolo.abeni@email.it>
  32. */
  33. #ifndef lib_pcap_usb_h
  34. #define lib_pcap_usb_h
  35. #include <pcap/pcap-inttypes.h>
  36. /*
  37. * possible transfer mode
  38. */
  39. #define URB_TRANSFER_IN 0x80
  40. #define URB_ISOCHRONOUS 0x0
  41. #define URB_INTERRUPT 0x1
  42. #define URB_CONTROL 0x2
  43. #define URB_BULK 0x3
  44. /*
  45. * possible event type
  46. */
  47. #define URB_SUBMIT 'S'
  48. #define URB_COMPLETE 'C'
  49. #define URB_ERROR 'E'
  50. /*
  51. * USB setup header as defined in USB specification.
  52. * Appears at the front of each Control S-type packet in DLT_USB captures.
  53. */
  54. typedef struct _usb_setup {
  55. uint8_t bmRequestType;
  56. uint8_t bRequest;
  57. uint16_t wValue;
  58. uint16_t wIndex;
  59. uint16_t wLength;
  60. } pcap_usb_setup;
  61. /*
  62. * Information from the URB for Isochronous transfers.
  63. */
  64. typedef struct _iso_rec {
  65. int32_t error_count;
  66. int32_t numdesc;
  67. } iso_rec;
  68. /*
  69. * Header prepended by linux kernel to each event.
  70. * Appears at the front of each packet in DLT_USB_LINUX captures.
  71. */
  72. typedef struct _usb_header {
  73. uint64_t id;
  74. uint8_t event_type;
  75. uint8_t transfer_type;
  76. uint8_t endpoint_number;
  77. uint8_t device_address;
  78. uint16_t bus_id;
  79. char setup_flag;/*if !=0 the urb setup header is not present*/
  80. char data_flag; /*if !=0 no urb data is present*/
  81. int64_t ts_sec;
  82. int32_t ts_usec;
  83. int32_t status;
  84. uint32_t urb_len;
  85. uint32_t data_len; /* amount of urb data really present in this event*/
  86. pcap_usb_setup setup;
  87. } pcap_usb_header;
  88. /*
  89. * Header prepended by linux kernel to each event for the 2.6.31
  90. * and later kernels; for the 2.6.21 through 2.6.30 kernels, the
  91. * "iso_rec" information, and the fields starting with "interval"
  92. * are zeroed-out padding fields.
  93. *
  94. * Appears at the front of each packet in DLT_USB_LINUX_MMAPPED captures.
  95. */
  96. typedef struct _usb_header_mmapped {
  97. uint64_t id;
  98. uint8_t event_type;
  99. uint8_t transfer_type;
  100. uint8_t endpoint_number;
  101. uint8_t device_address;
  102. uint16_t bus_id;
  103. char setup_flag;/*if !=0 the urb setup header is not present*/
  104. char data_flag; /*if !=0 no urb data is present*/
  105. int64_t ts_sec;
  106. int32_t ts_usec;
  107. int32_t status;
  108. uint32_t urb_len;
  109. uint32_t data_len; /* amount of urb data really present in this event*/
  110. union {
  111. pcap_usb_setup setup;
  112. iso_rec iso;
  113. } s;
  114. int32_t interval; /* for Interrupt and Isochronous events */
  115. int32_t start_frame; /* for Isochronous events */
  116. uint32_t xfer_flags; /* copy of URB's transfer flags */
  117. uint32_t ndesc; /* number of isochronous descriptors */
  118. } pcap_usb_header_mmapped;
  119. /*
  120. * Isochronous descriptors; for isochronous transfers there might be
  121. * one or more of these at the beginning of the packet data. The
  122. * number of descriptors is given by the "ndesc" field in the header;
  123. * as indicated, in older kernels that don't put the descriptors at
  124. * the beginning of the packet, that field is zeroed out, so that field
  125. * can be trusted even in captures from older kernels.
  126. */
  127. typedef struct _usb_isodesc {
  128. int32_t status;
  129. uint32_t offset;
  130. uint32_t len;
  131. uint8_t pad[4];
  132. } usb_isodesc;
  133. #endif