VirtualBox

source: vbox/trunk/src/VBox/Main/include/USBProxyBackend.h@ 87376

Last change on this file since 87376 was 87376, checked in by vboxsync, 4 years ago

USB/Darwin: Capture USB devices directly through IOUSBLib, no longer use VBoxUSB.kext (see bugref:9808).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 13.0 KB
Line 
1/* $Id: USBProxyBackend.h 87376 2021-01-22 19:22:03Z vboxsync $ */
2/** @file
3 * VirtualBox USB Proxy Backend (base) class.
4 */
5
6/*
7 * Copyright (C) 2005-2020 Oracle Corporation
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 (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef MAIN_INCLUDED_USBProxyBackend_h
19#define MAIN_INCLUDED_USBProxyBackend_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include <VBox/usb.h>
25#include <VBox/usbfilter.h>
26
27#include <iprt/socket.h>
28#include <iprt/poll.h>
29#include <iprt/semaphore.h>
30#include <iprt/cpp/utils.h>
31
32#include "VirtualBoxBase.h"
33#include "VirtualBoxImpl.h"
34#include "HostUSBDeviceImpl.h"
35#include "USBProxyBackendWrap.h"
36class USBProxyService;
37
38/**
39 * Base class for the USB Proxy Backend.
40 */
41class ATL_NO_VTABLE USBProxyBackend
42 : public USBProxyBackendWrap
43{
44public:
45
46 DECLARE_EMPTY_CTOR_DTOR(USBProxyBackend)
47
48 HRESULT FinalConstruct();
49 void FinalRelease();
50
51 // public initializer/uninitializer for internal purposes only
52 virtual int init(USBProxyService *pUsbProxyService, const com::Utf8Str &strId,
53 const com::Utf8Str &strAddress, bool fLoadingSettings);
54 virtual void uninit();
55
56 bool isActive(void);
57 const com::Utf8Str &i_getId();
58 const com::Utf8Str &i_getAddress();
59 virtual const com::Utf8Str &i_getBackend();
60 uint32_t i_getRefCount();
61
62 virtual bool i_isDevReEnumerationRequired();
63
64 /** @name Interface for the USBController and the Host object.
65 * @{ */
66 virtual void *insertFilter(PCUSBFILTER aFilter);
67 virtual void removeFilter(void *aId);
68 /** @} */
69
70 /** @name Interfaces for the HostUSBDevice
71 * @{ */
72 virtual int captureDevice(HostUSBDevice *aDevice);
73 virtual void captureDeviceCompleted(HostUSBDevice *aDevice, bool aSuccess);
74 virtual int releaseDevice(HostUSBDevice *aDevice);
75 virtual void releaseDeviceCompleted(HostUSBDevice *aDevice, bool aSuccess);
76 /** @} */
77
78 static void freeDevice(PUSBDEVICE pDevice);
79
80protected:
81 int start(void);
82 int stop(void);
83 virtual void serviceThreadInit(void);
84 virtual void serviceThreadTerm(void);
85
86 virtual int wait(RTMSINTERVAL aMillies);
87 virtual int interruptWait(void);
88 virtual PUSBDEVICE getDevices(void);
89 uint32_t incRef();
90 uint32_t decRef();
91
92 static HRESULT setError(HRESULT aResultCode, const char *aText, ...);
93
94 static void initFilterFromDevice(PUSBFILTER aFilter, HostUSBDevice *aDevice);
95 static void freeDeviceMembers(PUSBDEVICE pDevice);
96
97 /**
98 * Backend specific callback when a device was added.
99 * (Currently only Linux uses it to adjust the udev polling).
100 */
101 virtual void deviceAdded(ComObjPtr<HostUSBDevice> &aDevice, PUSBDEVICE pDev);
102 virtual bool isFakeUpdateRequired();
103
104private:
105
106 // wrapped IUSBProxyBackend properties
107 HRESULT getName(com::Utf8Str &aName);
108 HRESULT getType(com::Utf8Str &aType);
109
110 static DECLCALLBACK(int) serviceThread(RTTHREAD Thread, void *pvUser);
111
112 void updateDeviceList(PUSBDEVICE pDevices);
113
114protected:
115 /** Pointer to the owning USB Proxy Service object. */
116 USBProxyService *m_pUsbProxyService;
117 /** Thread handle of the service thread. */
118 RTTHREAD mThread;
119 /** Flag which stop() sets to cause serviceThread to return. */
120 bool volatile mTerminate;
121 /** Id of the instance. */
122 const com::Utf8Str m_strId;
123 /** Address of the instance. */
124 const com::Utf8Str m_strAddress;
125 /** Backend identifier as used in the settings. */
126 const com::Utf8Str m_strBackend;
127 /** Reference counter which prevents the backend instance from being removed. */
128 uint32_t m_cRefs;
129 /** List of smart HostUSBDevice pointers. */
130 typedef std::list<ComObjPtr<HostUSBDevice> > HostUSBDeviceList;
131 /** List of the known USB devices for this backend. */
132 HostUSBDeviceList m_llDevices;
133};
134
135
136# if defined(RT_OS_DARWIN) || defined(DOXYGEN_RUNNING)
137# include <VBox/param.h>
138# undef PAGE_SHIFT
139# undef PAGE_SIZE
140# define OSType Carbon_OSType
141# include <Carbon/Carbon.h>
142# undef OSType
143
144/**
145 * The Darwin hosted USB Proxy Backend.
146 */
147class USBProxyBackendDarwin : public USBProxyBackend
148{
149public:
150 DECLARE_EMPTY_CTOR_DTOR(USBProxyBackendDarwin)
151
152 int init(USBProxyService *pUsbProxyService, const com::Utf8Str &strId,
153 const com::Utf8Str &strAddress, bool fLoadingSettings);
154 void uninit();
155
156 virtual int captureDevice(HostUSBDevice *aDevice);
157 virtual int releaseDevice(HostUSBDevice *aDevice);
158
159protected:
160 virtual int wait(RTMSINTERVAL aMillies);
161 virtual int interruptWait (void);
162 virtual PUSBDEVICE getDevices (void);
163 virtual void serviceThreadInit (void);
164 virtual void serviceThreadTerm (void);
165 virtual bool isFakeUpdateRequired();
166
167private:
168 /** Reference to the runloop of the service thread.
169 * This is NULL if the service thread isn't running. */
170 CFRunLoopRef mServiceRunLoopRef;
171 /** The opaque value returned by DarwinSubscribeUSBNotifications. */
172 void *mNotifyOpaque;
173 /** A hack to work around the problem with the usb device enumeration
174 * not including newly attached devices. */
175 bool mWaitABitNextTime;
176};
177# endif /* RT_OS_DARWIN */
178
179
180# if defined(RT_OS_LINUX) || defined(DOXYGEN_RUNNING)
181# include <stdio.h>
182# ifdef VBOX_USB_WITH_SYSFS
183# include <HostHardwareLinux.h>
184# endif
185
186/**
187 * The Linux hosted USB Proxy Backend.
188 */
189class USBProxyBackendLinux: public USBProxyBackend
190{
191public:
192 DECLARE_EMPTY_CTOR_DTOR(USBProxyBackendLinux)
193
194 int init(USBProxyService *pUsbProxyService, const com::Utf8Str &strId,
195 const com::Utf8Str &strAddress, bool fLoadingSettings);
196 void uninit();
197
198 virtual int captureDevice(HostUSBDevice *aDevice);
199 virtual int releaseDevice(HostUSBDevice *aDevice);
200
201protected:
202 int initUsbfs(void);
203 int initSysfs(void);
204 void doUsbfsCleanupAsNeeded(void);
205 virtual int wait(RTMSINTERVAL aMillies);
206 virtual int interruptWait(void);
207 virtual PUSBDEVICE getDevices(void);
208 virtual void deviceAdded(ComObjPtr<HostUSBDevice> &aDevice, PUSBDEVICE aUSBDevice);
209 virtual bool isFakeUpdateRequired();
210
211private:
212 int waitUsbfs(RTMSINTERVAL aMillies);
213 int waitSysfs(RTMSINTERVAL aMillies);
214
215private:
216 /** File handle to the '/proc/bus/usb/devices' file. */
217 RTFILE mhFile;
218 /** Pipe used to interrupt wait(), the read end. */
219 RTPIPE mhWakeupPipeR;
220 /** Pipe used to interrupt wait(), the write end. */
221 RTPIPE mhWakeupPipeW;
222 /** The root of usbfs. */
223 Utf8Str mDevicesRoot;
224 /** Whether we're using \<mUsbfsRoot\>/devices or /sys/whatever. */
225 bool mUsingUsbfsDevices;
226 /** Number of 500ms polls left to do. See usbDeterminState for details. */
227 unsigned mUdevPolls;
228# ifdef VBOX_USB_WITH_SYSFS
229 /** Object used for polling for hotplug events from hal. */
230 VBoxMainHotplugWaiter *mpWaiter;
231# endif
232};
233# endif /* RT_OS_LINUX */
234
235
236# if defined(RT_OS_OS2) || defined(DOXYGEN_RUNNING)
237# include <usbcalls.h>
238
239/**
240 * The Linux hosted USB Proxy Backend.
241 */
242class USBProxyBackendOs2 : public USBProxyBackend
243{
244public:
245 DECLARE_EMPTY_CTOR_DTOR(USBProxyBackendOs2)
246
247 virtual int captureDevice(HostUSBDevice *aDevice);
248 virtual int releaseDevice(HostUSBDevice *aDevice);
249
250protected:
251 virtual int wait(RTMSINTERVAL aMillies);
252 virtual int interruptWait(void);
253 virtual PUSBDEVICE getDevices(void);
254 int addDeviceToChain(PUSBDEVICE pDev, PUSBDEVICE *ppFirst, PUSBDEVICE **pppNext, int rc);
255
256private:
257 /** The notification event semaphore */
258 HEV mhev;
259 /** The notification id. */
260 USBNOTIFY mNotifyId;
261 /** The usbcalls.dll handle. */
262 HMODULE mhmod;
263 /** UsbRegisterChangeNotification */
264 APIRET (APIENTRY *mpfnUsbRegisterChangeNotification)(PUSBNOTIFY, HEV, HEV);
265 /** UsbDeregisterNotification */
266 APIRET (APIENTRY *mpfnUsbDeregisterNotification)(USBNOTIFY);
267 /** UsbQueryNumberDevices */
268 APIRET (APIENTRY *mpfnUsbQueryNumberDevices)(PULONG);
269 /** UsbQueryDeviceReport */
270 APIRET (APIENTRY *mpfnUsbQueryDeviceReport)(ULONG, PULONG, PVOID);
271};
272# endif /* RT_OS_OS2 */
273
274
275# if defined(RT_OS_SOLARIS) || defined(DOXYGEN_RUNNING)
276# include <libdevinfo.h>
277
278/**
279 * The Solaris hosted USB Proxy Backend.
280 */
281class USBProxyBackendSolaris : public USBProxyBackend
282{
283public:
284 DECLARE_EMPTY_CTOR_DTOR(USBProxyBackendSolaris)
285
286 int init(USBProxyService *pUsbProxyService, const com::Utf8Str &strId,
287 const com::Utf8Str &strAddress, bool fLoadingSettings);
288 void uninit();
289
290 virtual void *insertFilter (PCUSBFILTER aFilter);
291 virtual void removeFilter (void *aID);
292
293 virtual int captureDevice(HostUSBDevice *aDevice);
294 virtual int releaseDevice(HostUSBDevice *aDevice);
295 virtual void captureDeviceCompleted(HostUSBDevice *aDevice, bool aSuccess);
296 virtual void releaseDeviceCompleted(HostUSBDevice *aDevice, bool aSuccess);
297
298 virtual bool i_isDevReEnumerationRequired();
299
300protected:
301 virtual int wait(RTMSINTERVAL aMillies);
302 virtual int interruptWait(void);
303 virtual PUSBDEVICE getDevices(void);
304
305private:
306 RTSEMEVENT mNotifyEventSem;
307 /** Whether we've successfully initialized the USBLib and should call USBLibTerm in the destructor. */
308 bool mUSBLibInitialized;
309};
310#endif /* RT_OS_SOLARIS */
311
312
313# if defined(RT_OS_WINDOWS) || defined(DOXYGEN_RUNNING)
314/**
315 * The Windows hosted USB Proxy Backend.
316 */
317class USBProxyBackendWindows : public USBProxyBackend
318{
319public:
320 DECLARE_EMPTY_CTOR_DTOR(USBProxyBackendWindows)
321
322 int init(USBProxyService *pUsbProxyService, const com::Utf8Str &strId,
323 const com::Utf8Str &strAddress, bool fLoadingSettings);
324 void uninit();
325
326 virtual void *insertFilter (PCUSBFILTER aFilter);
327 virtual void removeFilter (void *aID);
328
329 virtual int captureDevice(HostUSBDevice *aDevice);
330 virtual int releaseDevice(HostUSBDevice *aDevice);
331
332 virtual bool i_isDevReEnumerationRequired();
333
334protected:
335 virtual int wait(RTMSINTERVAL aMillies);
336 virtual int interruptWait(void);
337 virtual PUSBDEVICE getDevices(void);
338
339private:
340
341 HANDLE mhEventInterrupt;
342};
343# endif /* RT_OS_WINDOWS */
344
345# if defined(RT_OS_FREEBSD) || defined(DOXYGEN_RUNNING)
346/**
347 * The FreeBSD hosted USB Proxy Backend.
348 */
349class USBProxyBackendFreeBSD : public USBProxyBackend
350{
351public:
352 DECLARE_EMPTY_CTOR_DTOR(USBProxyBackendFreeBSD)
353
354 int init(USBProxyService *pUsbProxyService, const com::Utf8Str &strId,
355 const com::Utf8Str &strAddress, bool fLoadingSettings);
356 void uninit();
357
358 virtual int captureDevice(HostUSBDevice *aDevice);
359 virtual int releaseDevice(HostUSBDevice *aDevice);
360
361protected:
362 int initUsbfs(void);
363 int initSysfs(void);
364 virtual int wait(RTMSINTERVAL aMillies);
365 virtual int interruptWait(void);
366 virtual PUSBDEVICE getDevices(void);
367 int addDeviceToChain(PUSBDEVICE pDev, PUSBDEVICE *ppFirst, PUSBDEVICE **pppNext, int rc);
368 virtual bool isFakeUpdateRequired();
369
370private:
371 RTSEMEVENT mNotifyEventSem;
372};
373# endif /* RT_OS_FREEBSD */
374
375/**
376 * USB/IP Proxy receive state.
377 */
378typedef enum USBIPRECVSTATE
379{
380 /** Invalid state. */
381 kUsbIpRecvState_Invalid = 0,
382 /** There is no request waiting for an answer. */
383 kUsbIpRecvState_None,
384 /** Waiting for the complete reception of UsbIpRetDevList. */
385 kUsbIpRecvState_Hdr,
386 /** Waiting for the complete reception of a UsbIpExportedDevice structure. */
387 kUsbIpRecvState_ExportedDevice,
388 /** Waiting for a complete reception of a UsbIpDeviceInterface structure to skip. */
389 kUsbIpRecvState_DeviceInterface,
390 /** 32bit hack. */
391 kUsbIpRecvState_32Bit_Hack = 0x7fffffff
392} USBIPRECVSTATE;
393/** Pointer to a USB/IP receive state enum. */
394typedef USBIPRECVSTATE *PUSBIPRECVSTATE;
395
396struct UsbIpExportedDevice;
397
398/**
399 * The USB/IP Proxy Backend.
400 */
401class USBProxyBackendUsbIp: public USBProxyBackend
402{
403public:
404 DECLARE_EMPTY_CTOR_DTOR(USBProxyBackendUsbIp)
405
406 int init(USBProxyService *pUsbProxyService, const com::Utf8Str &strId,
407 const com::Utf8Str &strAddress, bool fLoadingSettings);
408 void uninit();
409
410 virtual int captureDevice(HostUSBDevice *aDevice);
411 virtual int releaseDevice(HostUSBDevice *aDevice);
412
413protected:
414 virtual int wait(RTMSINTERVAL aMillies);
415 virtual int interruptWait(void);
416 virtual PUSBDEVICE getDevices(void);
417 virtual bool isFakeUpdateRequired();
418
419private:
420 int updateDeviceList(bool *pfDeviceListChanged);
421 bool hasDevListChanged(PUSBDEVICE pDevices);
422 void freeDeviceList(PUSBDEVICE pHead);
423 void resetRecvState();
424 int reconnect();
425 void disconnect();
426 int startListExportedDevicesReq();
427 void advanceState(USBIPRECVSTATE enmRecvState);
428 int receiveData();
429 int processData();
430 int addDeviceToList(UsbIpExportedDevice *pDev);
431
432 struct Data; // opaque data struct, defined in USBProxyBackendUsbIp.cpp
433 Data *m;
434};
435
436#endif /* !MAIN_INCLUDED_USBProxyBackend_h */
437
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette