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
|
/* $OpenBSD: usbpcap.h,v 1.2 2018/02/26 13:06:49 mpi Exp $ */
/*
* Copyright (c) 2018 Martin Pieuchot
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef _USBCAP_H_
#define _USBCAP_H_
/*
* Common DLT_USBPCAP header.
*/
struct usbpcap_pkt_hdr {
uint16_t uph_hlen; /* header length */
uint64_t uph_id; /* request ID */
uint32_t uph_status; /* USB status code */
uint16_t uph_function; /* stack function ID */
uint8_t uph_info; /* info flags */
#define USBPCAP_INFO_DIRECTION_IN (1 << 0)/* from Device to Host */
uint16_t uph_bus; /* bus number */
uint16_t uph_devaddr; /* device address */
uint8_t uph_epaddr; /* copy of bEndpointAddress */
uint8_t uph_xfertype; /* transfer type */
#define USBPCAP_TRANSFER_ISOCHRONOUS 0
#define USBPCAP_TRANSFER_INTERRUPT 1
#define USBPCAP_TRANSFER_CONTROL 2
#define USBPCAP_TRANSFER_BULK 3
uint32_t uph_dlen; /* data length */
} __attribute__((packed));
/*
* Header used when dumping control transfers.
*/
struct usbpcap_ctl_hdr {
struct usbpcap_pkt_hdr uch_hdr;
uint8_t uch_stage;
#define USBPCAP_CONTROL_STAGE_SETUP 0
#define USBPCAP_CONTROL_STAGE_DATA 1
#define USBPCAP_CONTROL_STAGE_STATUS 2
} __attribute__((packed));
struct usbpcap_iso_pkt {
uint32_t uip_offset;
uint32_t uip_length;
uint32_t uip_status;
} __attribute__((packed));
/*
* Header used when dumping isochronous transfers.
*/
struct usbpcap_iso_hdr {
struct usbpcap_pkt_hdr uih_hdr;
uint32_t uih_startframe;
uint32_t uih_nframes; /* number of frame */
uint32_t uih_errors; /* error count */
struct usbpcap_iso_pkt uih_frames[1];
} __attribute__((packed));
#ifdef _KERNEL
/*
* OpenBSD specific, maximum number of frames per transfer used across
* all USB drivers. This allows us to setup the header on the stack.
*/
#define _USBPCAP_MAX_ISOFRAMES 40
struct usbpcap_iso_hdr_full {
struct usbpcap_pkt_hdr uih_hdr;
uint32_t uih_startframe;
uint32_t uih_nframes;
uint32_t uih_errors;
struct usbpcap_iso_pkt uih_frames[_USBPCAP_MAX_ISOFRAMES];
} __attribute__((packed));
#endif /* _KERNEL */
#endif /* _USBCAP_H_ */
|