1 | /** @file
|
---|
2 | * USBLIB - USB Support Library:
|
---|
3 | * This module implements the basic low-level OS interfaces for Windows hosts.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * If you received this file as part of a commercial VirtualBox
|
---|
18 | * distribution, then only the terms of your commercial VirtualBox
|
---|
19 | * license agreement apply instead of the previous paragraph.
|
---|
20 | */
|
---|
21 |
|
---|
22 |
|
---|
23 | #ifndef __VBox_usblib_h__
|
---|
24 | #define __VBox_usblib_h__
|
---|
25 |
|
---|
26 | #include <VBox/cdefs.h>
|
---|
27 | #include <VBox/types.h>
|
---|
28 | #include <VBox/usb.h>
|
---|
29 |
|
---|
30 | #include <initguid.h>
|
---|
31 | // {6068EB61-98E7-4c98-9E20-1F068295909A}
|
---|
32 | DEFINE_GUID(GUID_CLASS_VBOXUSB, 0x873fdf, 0xCAFE, 0x80EE, 0xaa, 0x5e, 0x0, 0xc0, 0x4f, 0xb1, 0x72, 0xb);
|
---|
33 |
|
---|
34 | #define USBFLT_SERVICE_NAME "\\\\.\\VBoxUSBFlt"
|
---|
35 | #define USBFLT_NTDEVICE_NAME_STRING L"\\Device\\VBoxUSBFlt"
|
---|
36 | #define USBFLT_SYMBOLIC_NAME_STRING L"\\DosDevices\\VBoxUSBFlt"
|
---|
37 |
|
---|
38 | #define USBMON_SERVICE_NAME "VBoxUSBMon"
|
---|
39 | #define USBMON_DEVICE_NAME "\\\\.\\VBoxUSBMon"
|
---|
40 | #define USBMON_DEVICE_NAME_NT L"\\Device\\VBoxUSBMon"
|
---|
41 | #define USBMON_DEVICE_NAME_DOS L"\\DosDevices\\VBoxUSBMon"
|
---|
42 |
|
---|
43 | /*
|
---|
44 | * IOCtl numbers.
|
---|
45 | * We're using the Win32 type of numbers here, thus the macros below.
|
---|
46 | */
|
---|
47 |
|
---|
48 | #ifndef CTL_CODE
|
---|
49 | # if defined(__WIN__)
|
---|
50 | # define CTL_CODE(DeviceType, Function, Method, Access) \
|
---|
51 | ( ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method))
|
---|
52 | #else /* unix: */
|
---|
53 | # define CTL_CODE(DeviceType, Function, Method_ignored, Access_ignored) \
|
---|
54 | ( (3 << 30) | ((DeviceType) << 8) | (Function) | (sizeof(SUPDRVIOCTLDATA) << 16) )
|
---|
55 | # endif
|
---|
56 | #endif
|
---|
57 | #ifndef METHOD_BUFFERED
|
---|
58 | # define METHOD_BUFFERED 0
|
---|
59 | #endif
|
---|
60 | #ifndef FILE_WRITE_ACCESS
|
---|
61 | # define FILE_WRITE_ACCESS 0x0002
|
---|
62 | #endif
|
---|
63 | #ifndef FILE_DEVICE_UNKNOWN
|
---|
64 | # define FILE_DEVICE_UNKNOWN 0x00000022
|
---|
65 | #endif
|
---|
66 |
|
---|
67 | #define USBFLT_MAJOR_VERSION 1
|
---|
68 | #define USBFLT_MINOR_VERSION 2
|
---|
69 |
|
---|
70 | #define USBMON_MAJOR_VERSION 1
|
---|
71 | #define USBMON_MINOR_VERSION 0
|
---|
72 |
|
---|
73 | #define USBDRV_MAJOR_VERSION 1
|
---|
74 | #define USBDRV_MINOR_VERSION 2
|
---|
75 |
|
---|
76 | #define SUPUSB_IOCTL_TEST CTL_CODE(FILE_DEVICE_UNKNOWN, 0x601, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
77 | #define SUPUSB_IOCTL_GET_DEVICE CTL_CODE(FILE_DEVICE_UNKNOWN, 0x603, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
78 | #define SUPUSB_IOCTL_SEND_URB CTL_CODE(FILE_DEVICE_UNKNOWN, 0x607, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
79 | #define SUPUSB_IOCTL_USB_RESET CTL_CODE(FILE_DEVICE_UNKNOWN, 0x608, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
80 | #define SUPUSB_IOCTL_USB_SELECT_INTERFACE CTL_CODE(FILE_DEVICE_UNKNOWN, 0x609, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
81 | #define SUPUSB_IOCTL_USB_SET_CONFIG CTL_CODE(FILE_DEVICE_UNKNOWN, 0x60A, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
82 | #define SUPUSB_IOCTL_USB_CLAIM_DEVICE CTL_CODE(FILE_DEVICE_UNKNOWN, 0x60B, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
83 | #define SUPUSB_IOCTL_USB_RELEASE_DEVICE CTL_CODE(FILE_DEVICE_UNKNOWN, 0x60C, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
84 | #define SUPUSB_IOCTL_IS_OPERATIONAL CTL_CODE(FILE_DEVICE_UNKNOWN, 0x60D, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
85 | #define SUPUSB_IOCTL_USB_CLEAR_ENDPOINT CTL_CODE(FILE_DEVICE_UNKNOWN, 0x60E, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
86 | #define SUPUSB_IOCTL_GET_VERSION CTL_CODE(FILE_DEVICE_UNKNOWN, 0x60F, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
87 |
|
---|
88 | #define SUPUSBFLT_IOCTL_GET_NUM_DEVICES CTL_CODE(FILE_DEVICE_UNKNOWN, 0x602, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
89 | #define SUPUSBFLT_IOCTL_USB_CHANGE CTL_CODE(FILE_DEVICE_UNKNOWN, 0x604, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
90 | #define SUPUSBFLT_IOCTL_DISABLE_CAPTURE CTL_CODE(FILE_DEVICE_UNKNOWN, 0x605, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
91 | #define SUPUSBFLT_IOCTL_ENABLE_CAPTURE CTL_CODE(FILE_DEVICE_UNKNOWN, 0x606, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
92 | #define SUPUSBFLT_IOCTL_IGNORE_DEVICE CTL_CODE(FILE_DEVICE_UNKNOWN, 0x60F, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
93 | #define SUPUSBFLT_IOCTL_GET_VERSION CTL_CODE(FILE_DEVICE_UNKNOWN, 0x610, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
94 | #define SUPUSBFLT_IOCTL_ADD_FILTER CTL_CODE(FILE_DEVICE_UNKNOWN, 0x611, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
95 | #define SUPUSBFLT_IOCTL_REMOVE_FILTER CTL_CODE(FILE_DEVICE_UNKNOWN, 0x612, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
96 | #define SUPUSBFLT_IOCTL_CAPTURE_DEVICE CTL_CODE(FILE_DEVICE_UNKNOWN, 0x613, METHOD_BUFFERED, FILE_WRITE_ACCESS)
|
---|
97 |
|
---|
98 | #pragma pack(4)
|
---|
99 |
|
---|
100 | #define MAX_FILTER_NAME 128
|
---|
101 | #define MAX_USB_SERIAL_STRING 64
|
---|
102 |
|
---|
103 | typedef struct
|
---|
104 | {
|
---|
105 | uint16_t vid, did, rev;
|
---|
106 | char serial_hash[MAX_USB_SERIAL_STRING];
|
---|
107 |
|
---|
108 | uint8_t fAttached;
|
---|
109 | } USBSUP_GETDEV, *PUSBSUP_GETDEV;
|
---|
110 |
|
---|
111 | typedef struct
|
---|
112 | {
|
---|
113 | uint32_t u32Major;
|
---|
114 | uint32_t u32Minor;
|
---|
115 | } USBSUP_VERSION, *PUSBSUP_VERSION;
|
---|
116 |
|
---|
117 | #define MAX_VENDOR_NAME 16
|
---|
118 | #define MAX_PRODUCT_NAME MAX_VENDOR_NAME
|
---|
119 | #define MAX_REVISION_NAME MAX_VENDOR_NAME
|
---|
120 |
|
---|
121 | typedef struct
|
---|
122 | {
|
---|
123 | char szVendor[MAX_VENDOR_NAME];
|
---|
124 | char szProduct[MAX_PRODUCT_NAME];
|
---|
125 | char szRevision[MAX_REVISION_NAME];
|
---|
126 | uintptr_t id;
|
---|
127 | } USBSUP_FILTER, *PUSBSUP_FILTER;
|
---|
128 |
|
---|
129 |
|
---|
130 | typedef struct
|
---|
131 | {
|
---|
132 | USHORT usVendorId;
|
---|
133 | USHORT usProductId;
|
---|
134 | USHORT usRevision;
|
---|
135 | } USBSUP_CAPTURE, *PUSBSUP_CAPTURE;
|
---|
136 |
|
---|
137 |
|
---|
138 | typedef struct
|
---|
139 | {
|
---|
140 | uint8_t bInterfaceNumber;
|
---|
141 | uint8_t fClaimed;
|
---|
142 | } USBSUP_CLAIMDEV, *PUSBSUP_CLAIMDEV;
|
---|
143 |
|
---|
144 | typedef USBSUP_CLAIMDEV USBSUP_RELEASEDEV;
|
---|
145 | typedef PUSBSUP_CLAIMDEV PUSBSUP_RELEASEDEV;
|
---|
146 |
|
---|
147 | typedef struct
|
---|
148 | {
|
---|
149 | uint32_t cUSBDevices;
|
---|
150 | } USBSUP_GETNUMDEV, *PUSBSUP_GETNUMDEV;
|
---|
151 |
|
---|
152 | typedef struct
|
---|
153 | {
|
---|
154 | uint8_t fUSBChange;
|
---|
155 | uint32_t cUSBStateChange;
|
---|
156 | } USBSUP_USB_CHANGE, *PUSBSUP_USB_CHANGE;
|
---|
157 |
|
---|
158 | typedef struct
|
---|
159 | {
|
---|
160 | uint8_t bConfigurationValue;
|
---|
161 | } USBSUP_SET_CONFIG, *PUSBSUP_SET_CONFIG;
|
---|
162 |
|
---|
163 | typedef struct
|
---|
164 | {
|
---|
165 | uint8_t bInterfaceNumber;
|
---|
166 | uint8_t bAlternateSetting;
|
---|
167 | } USBSUP_SELECT_INTERFACE, *PUSBSUP_SELECT_INTERFACE;
|
---|
168 |
|
---|
169 | typedef struct
|
---|
170 | {
|
---|
171 | uint8_t bEndpoint;
|
---|
172 | } USBSUP_CLEAR_ENDPOINT, *PUSBSUP_CLEAR_ENDPOINT;
|
---|
173 |
|
---|
174 | typedef enum
|
---|
175 | {
|
---|
176 | USBSUP_TRANSFER_TYPE_CTRL = 0,
|
---|
177 | USBSUP_TRANSFER_TYPE_ISOC = 1,
|
---|
178 | USBSUP_TRANSFER_TYPE_BULK = 2,
|
---|
179 | USBSUP_TRANSFER_TYPE_INTR = 3,
|
---|
180 | USBSUP_TRANSFER_TYPE_MSG = 4
|
---|
181 | } USBSUP_TRANSFER_TYPE;
|
---|
182 |
|
---|
183 | typedef enum
|
---|
184 | {
|
---|
185 | USBSUP_DIRECTION_SETUP = 0,
|
---|
186 | USBSUP_DIRECTION_IN = 1,
|
---|
187 | USBSUP_DIRECTION_OUT = 2
|
---|
188 | } USBSUP_DIRECTION;
|
---|
189 |
|
---|
190 |
|
---|
191 | typedef enum
|
---|
192 | {
|
---|
193 | USBSUP_XFER_OK = 0,
|
---|
194 | USBSUP_XFER_STALL = 1,
|
---|
195 | USBSUP_XFER_DNR = 2,
|
---|
196 | USBSUP_XFER_CRC = 3
|
---|
197 | } USBSUP_ERROR;
|
---|
198 |
|
---|
199 | typedef struct
|
---|
200 | {
|
---|
201 | USBSUP_TRANSFER_TYPE type; /* [in] QUSB_TRANSFER_TYPE_XXX */
|
---|
202 | uint32_t ep; /* [in] index to dev->pipe */
|
---|
203 | USBSUP_DIRECTION dir; /* [in] QUSB_DIRECTION_XXX */
|
---|
204 | uint32_t error; /* [out] QUSB_XFER_XXX */
|
---|
205 | size_t len; /* [in/out] may change */
|
---|
206 | void *buf; /* [in/out] depends on dir */
|
---|
207 | } USBSUP_URB, *PUSBSUP_URB;
|
---|
208 |
|
---|
209 | #pragma pack() /* paranoia */
|
---|
210 |
|
---|
211 |
|
---|
212 | __BEGIN_DECLS
|
---|
213 |
|
---|
214 | #ifdef IN_RING3
|
---|
215 |
|
---|
216 | /** @defgroup grp_usblib_r3 USBLIB Host Context Ring 3 API
|
---|
217 | * @{
|
---|
218 | */
|
---|
219 |
|
---|
220 | /**
|
---|
221 | * Initialize the USB library
|
---|
222 | *
|
---|
223 | * @returns VBox status code.
|
---|
224 | */
|
---|
225 | VBOXDDU_DECL(int) usbLibInit();
|
---|
226 |
|
---|
227 | /**
|
---|
228 | * Terminate the USB library
|
---|
229 | *
|
---|
230 | * @returns VBox status code.
|
---|
231 | */
|
---|
232 | VBOXDDU_DECL(int) usbLibTerm();
|
---|
233 |
|
---|
234 | /**
|
---|
235 | * Add USB device filter
|
---|
236 | *
|
---|
237 | * @returns VBox status code.
|
---|
238 | * @param pszVendor Vendor filter string
|
---|
239 | * @param pszProduct Product filter string
|
---|
240 | * @param pszRevision Revision filter string
|
---|
241 | * @param ppID Pointer to filter id
|
---|
242 | */
|
---|
243 | VBOXDDU_DECL(int) usbLibInsertFilter(const char *pszVendor, const char *pszProduct, const char *pszRevision, void **ppID);
|
---|
244 |
|
---|
245 | /**
|
---|
246 | * Remove USB device filter
|
---|
247 | *
|
---|
248 | * @returns VBox status code.
|
---|
249 | * @param aID Filter id
|
---|
250 | */
|
---|
251 | VBOXDDU_DECL(int) usbLibRemoveFilter (void *aID);
|
---|
252 |
|
---|
253 | /**
|
---|
254 | * Return all attached USB devices.
|
---|
255 | *
|
---|
256 | * @returns VBox status code
|
---|
257 | * @param ppDevices Receives pointer to list of devices
|
---|
258 | * @param pcbNumDevices Number of USB devices in the list
|
---|
259 | */
|
---|
260 | VBOXDDU_DECL(int) usbLibGetDevices(PUSBDEVICE *ppDevices, uint32_t *pcbNumDevices);
|
---|
261 |
|
---|
262 | /**
|
---|
263 | * Check for USB device arrivals or removals
|
---|
264 | *
|
---|
265 | * @returns boolean
|
---|
266 | */
|
---|
267 | VBOXDDU_DECL(bool) usbLibHasPendingDeviceChanges();
|
---|
268 |
|
---|
269 |
|
---|
270 | /**
|
---|
271 | * Capture specified USB device
|
---|
272 | *
|
---|
273 | * @returns VBox status code
|
---|
274 | * @param usVendorId Vendor id
|
---|
275 | * @param usProductId Product id
|
---|
276 | * @param usRevision Revision
|
---|
277 | */
|
---|
278 | VBOXDDU_DECL(int) usbLibCaptureDevice(USHORT usVendorId, USHORT usProductId, USHORT usRevision);
|
---|
279 |
|
---|
280 | /** @} */
|
---|
281 | #endif
|
---|
282 |
|
---|
283 | /** @} */
|
---|
284 |
|
---|
285 | __END_DECLS
|
---|
286 |
|
---|
287 |
|
---|
288 | #endif
|
---|
289 |
|
---|