1 | /* $Id: HostUSBDeviceImpl.cpp 63174 2016-08-08 14:47:28Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox IHostUSBDevice COM interface implementation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2005-2016 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 |
|
---|
19 | #include <iprt/types.h> /* for UINT64_C */
|
---|
20 |
|
---|
21 | #include "HostUSBDeviceImpl.h"
|
---|
22 | #include "MachineImpl.h"
|
---|
23 | #include "HostImpl.h"
|
---|
24 | #include "VirtualBoxErrorInfoImpl.h"
|
---|
25 | #include "USBProxyBackend.h"
|
---|
26 | #include "USBIdDatabase.h"
|
---|
27 |
|
---|
28 | #include "AutoCaller.h"
|
---|
29 | #include "Logging.h"
|
---|
30 |
|
---|
31 | #include <VBox/err.h>
|
---|
32 | #include <iprt/cpp/utils.h>
|
---|
33 |
|
---|
34 | // constructor / destructor
|
---|
35 | /////////////////////////////////////////////////////////////////////////////
|
---|
36 |
|
---|
37 | DEFINE_EMPTY_CTOR_DTOR(HostUSBDevice)
|
---|
38 |
|
---|
39 | HRESULT HostUSBDevice::FinalConstruct()
|
---|
40 | {
|
---|
41 | mUSBProxyBackend = NULL;
|
---|
42 | mUsb = NULL;
|
---|
43 |
|
---|
44 | return BaseFinalConstruct();
|
---|
45 | }
|
---|
46 |
|
---|
47 | void HostUSBDevice::FinalRelease()
|
---|
48 | {
|
---|
49 | uninit();
|
---|
50 | BaseFinalRelease();
|
---|
51 | }
|
---|
52 |
|
---|
53 | // public initializer/uninitializer for internal purposes only
|
---|
54 | /////////////////////////////////////////////////////////////////////////////
|
---|
55 |
|
---|
56 | /**
|
---|
57 | * Initializes the USB device object.
|
---|
58 | *
|
---|
59 | * @returns COM result indicator
|
---|
60 | * @param aUsb Pointer to the usb device structure for which the object is to be a wrapper.
|
---|
61 | * This structure is now fully owned by the HostUSBDevice object and will be
|
---|
62 | * freed when it is destructed.
|
---|
63 | * @param aUSBProxyBackend Pointer to the USB Proxy Backend object owning the device.
|
---|
64 | */
|
---|
65 | HRESULT HostUSBDevice::init(PUSBDEVICE aUsb, USBProxyBackend *aUSBProxyBackend)
|
---|
66 | {
|
---|
67 | ComAssertRet(aUsb, E_INVALIDARG);
|
---|
68 |
|
---|
69 | /* Enclose the state transition NotReady->InInit->Ready */
|
---|
70 | AutoInitSpan autoInitSpan(this);
|
---|
71 | AssertReturn(autoInitSpan.isOk(), E_FAIL);
|
---|
72 |
|
---|
73 | /*
|
---|
74 | * We need a unique ID for this VBoxSVC session.
|
---|
75 | * The UUID isn't stored anywhere.
|
---|
76 | */
|
---|
77 | unconst(mId).create();
|
---|
78 |
|
---|
79 | /*
|
---|
80 | * Set the initial device state.
|
---|
81 | */
|
---|
82 | AssertMsgReturn( aUsb->enmState >= USBDEVICESTATE_UNSUPPORTED
|
---|
83 | && aUsb->enmState < USBDEVICESTATE_USED_BY_GUEST, /* used-by-guest is not a legal initial state. */
|
---|
84 | ("%d\n", aUsb->enmState), E_FAIL);
|
---|
85 | mUniState = (HostUSBDeviceState)aUsb->enmState;
|
---|
86 | mUniSubState = kHostUSBDeviceSubState_Default;
|
---|
87 | mPendingUniState = kHostUSBDeviceState_Invalid;
|
---|
88 | mPrevUniState = mUniState;
|
---|
89 | mIsPhysicallyDetached = false;
|
---|
90 |
|
---|
91 | /* Other data members */
|
---|
92 | mUSBProxyBackend = aUSBProxyBackend;
|
---|
93 | mUsb = aUsb;
|
---|
94 |
|
---|
95 | /* Set the name. */
|
---|
96 | mNameObj = i_getName();
|
---|
97 | mName = mNameObj.c_str();
|
---|
98 |
|
---|
99 | /* Confirm the successful initialization */
|
---|
100 | autoInitSpan.setSucceeded();
|
---|
101 |
|
---|
102 | return S_OK;
|
---|
103 | }
|
---|
104 |
|
---|
105 | /**
|
---|
106 | * Uninitializes the instance and sets the ready flag to FALSE.
|
---|
107 | * Called either from FinalRelease() or by the parent when it gets destroyed.
|
---|
108 | */
|
---|
109 | void HostUSBDevice::uninit()
|
---|
110 | {
|
---|
111 | /* Enclose the state transition Ready->InUninit->NotReady */
|
---|
112 | AutoUninitSpan autoUninitSpan(this);
|
---|
113 | if (autoUninitSpan.uninitDone())
|
---|
114 | return;
|
---|
115 |
|
---|
116 | if (mUsb != NULL)
|
---|
117 | {
|
---|
118 | USBProxyBackend::freeDevice(mUsb);
|
---|
119 | mUsb = NULL;
|
---|
120 | }
|
---|
121 |
|
---|
122 | mUSBProxyBackend = NULL;
|
---|
123 | mUniState = kHostUSBDeviceState_Invalid;
|
---|
124 | }
|
---|
125 |
|
---|
126 | // Wrapped IUSBDevice properties
|
---|
127 | /////////////////////////////////////////////////////////////////////////////
|
---|
128 | HRESULT HostUSBDevice::getId(com::Guid &aId)
|
---|
129 | {
|
---|
130 | /* mId is constant during life time, no need to lock */
|
---|
131 | aId = mId;
|
---|
132 |
|
---|
133 | return S_OK;
|
---|
134 | }
|
---|
135 |
|
---|
136 |
|
---|
137 | HRESULT HostUSBDevice::getVendorId(USHORT *aVendorId)
|
---|
138 | {
|
---|
139 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
140 |
|
---|
141 | *aVendorId = mUsb->idVendor;
|
---|
142 |
|
---|
143 | return S_OK;
|
---|
144 | }
|
---|
145 |
|
---|
146 | HRESULT HostUSBDevice::getProductId(USHORT *aProductId)
|
---|
147 | {
|
---|
148 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
149 |
|
---|
150 | *aProductId = mUsb->idProduct;
|
---|
151 |
|
---|
152 | return S_OK;
|
---|
153 | }
|
---|
154 |
|
---|
155 |
|
---|
156 | HRESULT HostUSBDevice::getRevision(USHORT *aRevision)
|
---|
157 | {
|
---|
158 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
159 |
|
---|
160 | *aRevision = mUsb->bcdDevice;
|
---|
161 |
|
---|
162 | return S_OK;
|
---|
163 | }
|
---|
164 |
|
---|
165 | HRESULT HostUSBDevice::getManufacturer(com::Utf8Str &aManufacturer)
|
---|
166 | {
|
---|
167 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
168 |
|
---|
169 | aManufacturer = mUsb->pszManufacturer;
|
---|
170 | return S_OK;
|
---|
171 | }
|
---|
172 |
|
---|
173 |
|
---|
174 | HRESULT HostUSBDevice::getProduct(com::Utf8Str &aProduct)
|
---|
175 | {
|
---|
176 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
177 |
|
---|
178 | aProduct = mUsb->pszProduct;
|
---|
179 | return S_OK;
|
---|
180 | }
|
---|
181 |
|
---|
182 |
|
---|
183 | HRESULT HostUSBDevice::getSerialNumber(com::Utf8Str &aSerialNumber)
|
---|
184 | {
|
---|
185 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
186 |
|
---|
187 | aSerialNumber = mUsb->pszSerialNumber;
|
---|
188 |
|
---|
189 | return S_OK;
|
---|
190 | }
|
---|
191 |
|
---|
192 | HRESULT HostUSBDevice::getAddress(com::Utf8Str &aAddress)
|
---|
193 | {
|
---|
194 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
195 | aAddress = mUsb->pszAddress;
|
---|
196 | return S_OK;
|
---|
197 | }
|
---|
198 |
|
---|
199 |
|
---|
200 | HRESULT HostUSBDevice::getPort(USHORT *aPort)
|
---|
201 | {
|
---|
202 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
203 |
|
---|
204 | #if !defined(RT_OS_WINDOWS) /// @todo check up the bPort value on Windows before enabling this.
|
---|
205 | *aPort = mUsb->bPort;
|
---|
206 | #else
|
---|
207 | *aPort = 0;
|
---|
208 | #endif
|
---|
209 |
|
---|
210 | return S_OK;
|
---|
211 | }
|
---|
212 |
|
---|
213 |
|
---|
214 | HRESULT HostUSBDevice::getVersion(USHORT *aVersion)
|
---|
215 | {
|
---|
216 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
217 |
|
---|
218 | *aVersion = (USHORT)(mUsb->bcdUSB >> 8);
|
---|
219 |
|
---|
220 | return S_OK;
|
---|
221 | }
|
---|
222 |
|
---|
223 |
|
---|
224 | HRESULT HostUSBDevice::getSpeed(USBConnectionSpeed_T *aSpeed)
|
---|
225 | {
|
---|
226 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
227 |
|
---|
228 | /* If the speed is unknown (which it shouldn't be), make a guess
|
---|
229 | * which will be correct for USB 1 and 3 devices, but may be wrong
|
---|
230 | * for USB 2.0 devices
|
---|
231 | */
|
---|
232 | switch (mUsb->enmSpeed)
|
---|
233 | {
|
---|
234 | case USBDEVICESPEED_LOW: *aSpeed = USBConnectionSpeed_Low; break;
|
---|
235 | case USBDEVICESPEED_FULL: *aSpeed = USBConnectionSpeed_Full; break;
|
---|
236 | case USBDEVICESPEED_HIGH: *aSpeed = USBConnectionSpeed_High; break;
|
---|
237 | case USBDEVICESPEED_SUPER: *aSpeed = USBConnectionSpeed_Super; break;
|
---|
238 | // case USBDEVICESPEED_SUPERPLUS: *aSpeed = USBConnectionSpeed_SuperPlus; break;
|
---|
239 | default:
|
---|
240 | switch (mUsb->bcdUSB >> 8)
|
---|
241 | {
|
---|
242 | case 3: *aSpeed = USBConnectionSpeed_Super; break;
|
---|
243 | case 2: *aSpeed = USBConnectionSpeed_High; break;
|
---|
244 | default: *aSpeed = USBConnectionSpeed_Full;
|
---|
245 | }
|
---|
246 | }
|
---|
247 |
|
---|
248 | return S_OK;
|
---|
249 | }
|
---|
250 |
|
---|
251 |
|
---|
252 | HRESULT HostUSBDevice::getPortVersion(USHORT *aPortVersion)
|
---|
253 | {
|
---|
254 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
255 | /* Port version is 2 (EHCI) if and only if the device runs at high speed;
|
---|
256 | * if speed is unknown, fall back to the old and inaccurate method.
|
---|
257 | */
|
---|
258 | if (mUsb->enmSpeed == USBDEVICESPEED_UNKNOWN)
|
---|
259 | *aPortVersion = (USHORT)(mUsb->bcdUSB >> 8);
|
---|
260 | else
|
---|
261 | {
|
---|
262 | switch (mUsb->enmSpeed)
|
---|
263 | {
|
---|
264 | case USBDEVICESPEED_SUPER:
|
---|
265 | *aPortVersion = 3;
|
---|
266 | break;
|
---|
267 | case USBDEVICESPEED_HIGH:
|
---|
268 | *aPortVersion = 2;
|
---|
269 | break;
|
---|
270 | case USBDEVICESPEED_FULL:
|
---|
271 | case USBDEVICESPEED_LOW:
|
---|
272 | case USBDEVICESPEED_VARIABLE:
|
---|
273 | *aPortVersion = 1;
|
---|
274 | break;
|
---|
275 | default:
|
---|
276 | AssertMsgFailed(("Invalid USB speed: %d\n", mUsb->enmSpeed));
|
---|
277 | *aPortVersion = 1;
|
---|
278 | }
|
---|
279 | }
|
---|
280 |
|
---|
281 | return S_OK;
|
---|
282 | }
|
---|
283 |
|
---|
284 |
|
---|
285 | HRESULT HostUSBDevice::getRemote(BOOL *aRemote)
|
---|
286 | {
|
---|
287 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
288 |
|
---|
289 | *aRemote = FALSE;
|
---|
290 |
|
---|
291 | return S_OK;
|
---|
292 | }
|
---|
293 |
|
---|
294 |
|
---|
295 | HRESULT HostUSBDevice::getState(USBDeviceState_T *aState)
|
---|
296 | {
|
---|
297 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
298 |
|
---|
299 | *aState = i_canonicalState();
|
---|
300 |
|
---|
301 | return S_OK;
|
---|
302 | }
|
---|
303 |
|
---|
304 |
|
---|
305 | HRESULT HostUSBDevice::getBackend(com::Utf8Str &aBackend)
|
---|
306 | {
|
---|
307 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
308 |
|
---|
309 | aBackend = mUsb->pszBackend;
|
---|
310 |
|
---|
311 | return S_OK;
|
---|
312 | }
|
---|
313 |
|
---|
314 |
|
---|
315 | HRESULT HostUSBDevice::getDeviceInfo(std::vector<com::Utf8Str> &aInfo)
|
---|
316 | {
|
---|
317 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
318 |
|
---|
319 | com::Utf8Str strManufacturer;
|
---|
320 | com::Utf8Str strProduct;
|
---|
321 |
|
---|
322 | if (mUsb->pszManufacturer && *mUsb->pszManufacturer)
|
---|
323 | strManufacturer = mUsb->pszManufacturer;
|
---|
324 | else
|
---|
325 | strManufacturer = USBIdDatabase::findVendor(mUsb->idVendor);
|
---|
326 |
|
---|
327 | if (mUsb->pszProduct && *mUsb->pszProduct)
|
---|
328 | strProduct = mUsb->pszProduct;
|
---|
329 | else
|
---|
330 | strProduct = USBIdDatabase::findProduct(mUsb->idVendor, mUsb->idProduct);
|
---|
331 |
|
---|
332 | aInfo.resize(2);
|
---|
333 | aInfo[0] = strManufacturer;
|
---|
334 | aInfo[1] = strProduct;
|
---|
335 |
|
---|
336 | return S_OK;
|
---|
337 | }
|
---|
338 |
|
---|
339 | // public methods only for internal purposes
|
---|
340 | ////////////////////////////////////////////////////////////////////////////////
|
---|
341 |
|
---|
342 | /**
|
---|
343 | * @note Locks this object for reading.
|
---|
344 | */
|
---|
345 | com::Utf8Str HostUSBDevice::i_getName()
|
---|
346 | {
|
---|
347 | Utf8Str name;
|
---|
348 |
|
---|
349 | AutoCaller autoCaller(this);
|
---|
350 | AssertComRCReturn(autoCaller.rc(), name);
|
---|
351 |
|
---|
352 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
353 |
|
---|
354 | bool haveManufacturer = mUsb->pszManufacturer && *mUsb->pszManufacturer;
|
---|
355 | bool haveProduct = mUsb->pszProduct && *mUsb->pszProduct;
|
---|
356 | if (haveManufacturer && haveProduct)
|
---|
357 | name = Utf8StrFmt("%s %s", mUsb->pszManufacturer, mUsb->pszProduct);
|
---|
358 | else
|
---|
359 | {
|
---|
360 | Utf8Str strProduct;
|
---|
361 | Utf8Str strVendor = USBIdDatabase::findVendorAndProduct(mUsb->idVendor, mUsb->idProduct, &strProduct);
|
---|
362 | if ( (strVendor.isNotEmpty() || haveManufacturer)
|
---|
363 | && (strProduct.isNotEmpty() || haveProduct))
|
---|
364 | name = Utf8StrFmt("%s %s", haveManufacturer ? mUsb->pszManufacturer
|
---|
365 | : strVendor.c_str(),
|
---|
366 | haveProduct ? mUsb->pszProduct
|
---|
367 | : strProduct.c_str());
|
---|
368 | else
|
---|
369 | {
|
---|
370 | LogRel(("USB: Unknown USB device detected (idVendor: 0x%04x, idProduct: 0x%04x). Please, report the idVendor and idProduct to virtualbox.org.\n",
|
---|
371 | mUsb->idVendor, mUsb->idProduct));
|
---|
372 | if (strVendor.isNotEmpty())
|
---|
373 | name = strVendor;
|
---|
374 | else
|
---|
375 | {
|
---|
376 | Assert(strProduct.isEmpty());
|
---|
377 | name = "<unknown>";
|
---|
378 | }
|
---|
379 | }
|
---|
380 | }
|
---|
381 |
|
---|
382 | return name;
|
---|
383 | }
|
---|
384 |
|
---|
385 | /**
|
---|
386 | * Requests the USB proxy service capture the device (from the host)
|
---|
387 | * and attach it to a VM.
|
---|
388 | *
|
---|
389 | * As a convenience, this method will operate like attachToVM() if the device
|
---|
390 | * is already held by the proxy. Note that it will then perform IPC to the VM
|
---|
391 | * process, which means it will temporarily release all locks. (Is this a good idea?)
|
---|
392 | *
|
---|
393 | * @param aMachine Machine this device should be attach to.
|
---|
394 | * @param aSetError Whether to set full error message or not to bother.
|
---|
395 | * @param aCaptureFilename The filename to capture the USB traffic to.
|
---|
396 | * @param aMaskedIfs The interfaces to hide from the guest.
|
---|
397 | *
|
---|
398 | * @returns Status indicating whether it was successfully captured and/or attached.
|
---|
399 | * @retval S_OK on success.
|
---|
400 | * @retval E_UNEXPECTED if the device state doesn't permit for any attaching.
|
---|
401 | * @retval E_* as appropriate.
|
---|
402 | */
|
---|
403 | HRESULT HostUSBDevice::i_requestCaptureForVM(SessionMachine *aMachine, bool aSetError,
|
---|
404 | const com::Utf8Str &aCaptureFilename, ULONG aMaskedIfs /* = 0*/)
|
---|
405 | {
|
---|
406 | /*
|
---|
407 | * Validate preconditions and input.
|
---|
408 | */
|
---|
409 | AssertReturn(aMachine, E_INVALIDARG);
|
---|
410 | AssertReturn(!isWriteLockOnCurrentThread(), E_FAIL);
|
---|
411 | AssertReturn(!aMachine->isWriteLockOnCurrentThread(), E_FAIL);
|
---|
412 |
|
---|
413 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
414 | LogFlowThisFunc(("{%s} aMachine=%p aMaskedIfs=%#x\n", mName, aMachine, aMaskedIfs));
|
---|
415 |
|
---|
416 | if (aSetError)
|
---|
417 | {
|
---|
418 | if (mUniState == kHostUSBDeviceState_Unsupported)
|
---|
419 | return setError(E_INVALIDARG,
|
---|
420 | tr("USB device '%s' with UUID {%RTuuid} cannot be accessed by guest computers"),
|
---|
421 | mName, mId.raw());
|
---|
422 | if (mUniState == kHostUSBDeviceState_UsedByHost)
|
---|
423 | return setError(E_INVALIDARG,
|
---|
424 | tr("USB device '%s' with UUID {%RTuuid} is being exclusively used by the host computer"),
|
---|
425 | mName, mId.raw());
|
---|
426 | if (mUniState == kHostUSBDeviceState_UsedByVM)
|
---|
427 | {
|
---|
428 | /* Machine::name() requires a read lock */
|
---|
429 | alock.release();
|
---|
430 | AutoReadLock machLock(mMachine COMMA_LOCKVAL_SRC_POS);
|
---|
431 | return setError(E_INVALIDARG,
|
---|
432 | tr("USB device '%s' with UUID {%RTuuid} is already captured by the virtual machine '%s'"),
|
---|
433 | mName, mId.raw(), mMachine->i_getName().c_str());
|
---|
434 | }
|
---|
435 | if (mUniState >= kHostUSBDeviceState_FirstTransitional)
|
---|
436 | return setError(E_INVALIDARG,
|
---|
437 | tr("USB device '%s' with UUID {%RTuuid} is busy with a previous request. Please try again later"),
|
---|
438 | mName, mId.raw());
|
---|
439 | if ( mUniState != kHostUSBDeviceState_Unused
|
---|
440 | && mUniState != kHostUSBDeviceState_HeldByProxy
|
---|
441 | && mUniState != kHostUSBDeviceState_Capturable)
|
---|
442 | return setError(E_INVALIDARG,
|
---|
443 | tr("USB device '%s' with UUID {%RTuuid} is not in the right state for capturing (%s)"),
|
---|
444 | mName, mId.raw(), i_getStateName());
|
---|
445 | }
|
---|
446 |
|
---|
447 | AssertReturn( mUniState == kHostUSBDeviceState_HeldByProxy
|
---|
448 | || mUniState == kHostUSBDeviceState_Unused
|
---|
449 | || mUniState == kHostUSBDeviceState_Capturable,
|
---|
450 | E_UNEXPECTED);
|
---|
451 | Assert(mMachine.isNull());
|
---|
452 |
|
---|
453 | /*
|
---|
454 | * If it's already held by the proxy, we'll simply call
|
---|
455 | * attachToVM synchronously.
|
---|
456 | */
|
---|
457 | if (mUniState == kHostUSBDeviceState_HeldByProxy)
|
---|
458 | {
|
---|
459 | alock.release();
|
---|
460 | HRESULT hrc = i_attachToVM(aMachine, aCaptureFilename, aMaskedIfs);
|
---|
461 | return hrc;
|
---|
462 | }
|
---|
463 |
|
---|
464 | /*
|
---|
465 | * Need to capture the device before it can be used.
|
---|
466 | *
|
---|
467 | * The device will be attached to the VM by the USB proxy service thread
|
---|
468 | * when the request succeeds (i.e. asynchronously).
|
---|
469 | */
|
---|
470 | LogFlowThisFunc(("{%s} capturing the device.\n", mName));
|
---|
471 | if (mUSBProxyBackend->i_isDevReEnumerationRequired())
|
---|
472 | i_setState(kHostUSBDeviceState_Capturing, kHostUSBDeviceState_UsedByVM, kHostUSBDeviceSubState_AwaitingDetach);
|
---|
473 | else
|
---|
474 | i_setState(kHostUSBDeviceState_Capturing, kHostUSBDeviceState_UsedByVM);
|
---|
475 |
|
---|
476 | mMachine = aMachine;
|
---|
477 | mMaskedIfs = aMaskedIfs;
|
---|
478 | mCaptureFilename = aCaptureFilename;
|
---|
479 | alock.release();
|
---|
480 | int rc = mUSBProxyBackend->captureDevice(this);
|
---|
481 | if (RT_FAILURE(rc))
|
---|
482 | {
|
---|
483 | alock.acquire();
|
---|
484 | i_failTransition(kHostUSBDeviceState_Invalid);
|
---|
485 | mMachine.setNull();
|
---|
486 | if (rc == VERR_SHARING_VIOLATION)
|
---|
487 | return setError(E_FAIL,
|
---|
488 | tr("USB device '%s' with UUID {%RTuuid} is in use by someone else"),
|
---|
489 | mName, mId.raw());
|
---|
490 | return E_FAIL;
|
---|
491 | }
|
---|
492 |
|
---|
493 | return S_OK;
|
---|
494 | }
|
---|
495 |
|
---|
496 | /**
|
---|
497 | * Attempts to attach the USB device to a VM.
|
---|
498 | *
|
---|
499 | * The device must be in the HeldByProxy state or about to exit the
|
---|
500 | * Capturing state.
|
---|
501 | *
|
---|
502 | * This method will make an IPC to the VM process and do the actual
|
---|
503 | * attaching. While in the IPC locks will be abandond.
|
---|
504 | *
|
---|
505 | * @returns Status indicating whether it was successfully attached or not.
|
---|
506 | * @retval S_OK on success.
|
---|
507 | * @retval E_UNEXPECTED if the device state doesn't permit for any attaching.
|
---|
508 | * @retval E_* as appropriate.
|
---|
509 | *
|
---|
510 | * @param aMachine Machine this device should be attach to.
|
---|
511 | * @param aMaskedIfs The interfaces to hide from the guest.
|
---|
512 | */
|
---|
513 | HRESULT HostUSBDevice::i_attachToVM(SessionMachine *aMachine, const com::Utf8Str &aCaptureFilename,
|
---|
514 | ULONG aMaskedIfs /* = 0*/)
|
---|
515 | {
|
---|
516 | AssertReturn(!isWriteLockOnCurrentThread(), E_FAIL);
|
---|
517 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
518 | /*
|
---|
519 | * Validate and update the state.
|
---|
520 | */
|
---|
521 | AssertReturn( mUniState == kHostUSBDeviceState_Capturing
|
---|
522 | || mUniState == kHostUSBDeviceState_HeldByProxy
|
---|
523 | || mUniState == kHostUSBDeviceState_AttachingToVM,
|
---|
524 | E_UNEXPECTED);
|
---|
525 | i_setState(kHostUSBDeviceState_AttachingToVM, kHostUSBDeviceState_UsedByVM);
|
---|
526 |
|
---|
527 | /*
|
---|
528 | * The VM process will query the object, so grab a reference to ourselves and release the locks.
|
---|
529 | */
|
---|
530 | ComPtr<IUSBDevice> d = this;
|
---|
531 |
|
---|
532 | /*
|
---|
533 | * Call the VM process (IPC) and request it to attach the device.
|
---|
534 | *
|
---|
535 | * There are many reasons for this to fail, so, as a consequence we don't
|
---|
536 | * assert the return code as it will crash the daemon and annoy the heck
|
---|
537 | * out of people.
|
---|
538 | */
|
---|
539 | LogFlowThisFunc(("{%s} Calling machine->onUSBDeviceAttach()...\n", mName));
|
---|
540 | alock.release();
|
---|
541 | HRESULT hrc = aMachine->i_onUSBDeviceAttach(d, NULL, aMaskedIfs, aCaptureFilename);
|
---|
542 | LogFlowThisFunc(("{%s} Done machine->onUSBDeviceAttach()=%08X\n", mName, hrc));
|
---|
543 |
|
---|
544 | /*
|
---|
545 | * As we re-acquire the lock, we'll have to check if the device was
|
---|
546 | * physically detached while we were busy.
|
---|
547 | */
|
---|
548 | alock.acquire();
|
---|
549 |
|
---|
550 | if (SUCCEEDED(hrc))
|
---|
551 | {
|
---|
552 | mMachine = aMachine;
|
---|
553 | if (!mIsPhysicallyDetached)
|
---|
554 | i_setState(kHostUSBDeviceState_UsedByVM);
|
---|
555 | else
|
---|
556 | {
|
---|
557 | alock.release();
|
---|
558 | i_detachFromVM(kHostUSBDeviceState_PhysDetached);
|
---|
559 | hrc = E_UNEXPECTED;
|
---|
560 | }
|
---|
561 | }
|
---|
562 | else
|
---|
563 | {
|
---|
564 | mMachine.setNull();
|
---|
565 | if (!mIsPhysicallyDetached)
|
---|
566 | {
|
---|
567 | i_setState(kHostUSBDeviceState_HeldByProxy);
|
---|
568 | if (hrc == E_UNEXPECTED)
|
---|
569 | hrc = E_FAIL; /* No confusion. */
|
---|
570 | }
|
---|
571 | else
|
---|
572 | {
|
---|
573 | alock.release();
|
---|
574 | i_onPhysicalDetachedInternal();
|
---|
575 | hrc = E_UNEXPECTED;
|
---|
576 | }
|
---|
577 | }
|
---|
578 | return hrc;
|
---|
579 | }
|
---|
580 |
|
---|
581 |
|
---|
582 | /**
|
---|
583 | * Detaches the device from the VM.
|
---|
584 | *
|
---|
585 | * This is used for a special scenario in attachToVM() and from
|
---|
586 | * onPhysicalDetachedInternal().
|
---|
587 | *
|
---|
588 | * @param aFinalState The final state (PhysDetached).
|
---|
589 | */
|
---|
590 | void HostUSBDevice::i_detachFromVM(HostUSBDeviceState aFinalState)
|
---|
591 | {
|
---|
592 | NOREF(aFinalState);
|
---|
593 |
|
---|
594 | /*
|
---|
595 | * Assert preconditions.
|
---|
596 | */
|
---|
597 | Assert(aFinalState == kHostUSBDeviceState_PhysDetached);
|
---|
598 | AssertReturnVoid(!isWriteLockOnCurrentThread());
|
---|
599 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
600 | Assert( mUniState == kHostUSBDeviceState_AttachingToVM
|
---|
601 | || mUniState == kHostUSBDeviceState_UsedByVM);
|
---|
602 | Assert(!mMachine.isNull());
|
---|
603 |
|
---|
604 | /*
|
---|
605 | * Change the state and abandon the locks. The VM may query
|
---|
606 | * data and we don't want to deadlock - the state protects us,
|
---|
607 | * so, it's not a bit issue here.
|
---|
608 | */
|
---|
609 | i_setState(kHostUSBDeviceState_PhysDetachingFromVM, kHostUSBDeviceState_PhysDetached);
|
---|
610 |
|
---|
611 | /*
|
---|
612 | * Call the VM process (IPC) and request it to detach the device.
|
---|
613 | *
|
---|
614 | * There are many reasons for this to fail, so, as a consequence we don't
|
---|
615 | * assert the return code as it will crash the daemon and annoy the heck
|
---|
616 | * out of people.
|
---|
617 | */
|
---|
618 | alock.release();
|
---|
619 | LogFlowThisFunc(("{%s} Calling machine->onUSBDeviceDetach()...\n", mName));
|
---|
620 | HRESULT hrc = mMachine->i_onUSBDeviceDetach(mId.toUtf16().raw(), NULL);
|
---|
621 | LogFlowThisFunc(("{%s} Done machine->onUSBDeviceDetach()=%Rhrc\n", mName, hrc));
|
---|
622 | NOREF(hrc);
|
---|
623 |
|
---|
624 | /*
|
---|
625 | * Re-acquire the locks and complete the transition.
|
---|
626 | */
|
---|
627 | alock.acquire();
|
---|
628 | i_advanceTransition();
|
---|
629 | }
|
---|
630 |
|
---|
631 | /**
|
---|
632 | * Called when the VM process to inform us about the device being
|
---|
633 | * detached from it.
|
---|
634 | *
|
---|
635 | * This is NOT called when we detach the device via onUSBDeviceDetach.
|
---|
636 | *
|
---|
637 | *
|
---|
638 | * @param[in] aMachine The machine making the request.
|
---|
639 | * This must be the machine this device is currently attached to.
|
---|
640 | * @param[in] aDone When set to false, the VM just informs us that it's about
|
---|
641 | * to detach this device but hasn't done it just yet.
|
---|
642 | * When set to true, the VM informs us that it has completed
|
---|
643 | * the detaching of this device.
|
---|
644 | * @param[out] aRunFilters Whether to run filters.
|
---|
645 | * @param[in] aAbnormal Set if we're cleaning up after a crashed VM.
|
---|
646 | *
|
---|
647 | * @returns S_OK on success, and E_UNEXPECTED if the device isn't in the right state.
|
---|
648 | *
|
---|
649 | * @note Must be called from under the object write lock.
|
---|
650 | */
|
---|
651 | HRESULT HostUSBDevice::i_onDetachFromVM(SessionMachine *aMachine, bool aDone, bool *aRunFilters, bool aAbnormal /*= true*/)
|
---|
652 | {
|
---|
653 | LogFlowThisFunc(("{%s} state=%s aDone=%RTbool aAbnormal=%RTbool\n", mName, i_getStateName(), aDone, aAbnormal));
|
---|
654 |
|
---|
655 | /*
|
---|
656 | * Validate preconditions.
|
---|
657 | */
|
---|
658 | AssertPtrReturn(aRunFilters, E_INVALIDARG);
|
---|
659 | AssertReturn(isWriteLockOnCurrentThread(), E_FAIL);
|
---|
660 | if (!aDone)
|
---|
661 | {
|
---|
662 | if (mUniState != kHostUSBDeviceState_UsedByVM)
|
---|
663 | return setError(E_INVALIDARG,
|
---|
664 | tr("USB device '%s' with UUID {%RTuuid} is busy (state '%s'). Please try again later"),
|
---|
665 | mName, mId.raw(), i_getStateName());
|
---|
666 | }
|
---|
667 | else
|
---|
668 | AssertMsgReturn( mUniState == kHostUSBDeviceState_DetachingFromVM /** @todo capturing for VM
|
---|
669 | ends up here on termination. */
|
---|
670 | || (mUniState == kHostUSBDeviceState_UsedByVM && aAbnormal),
|
---|
671 | ("{%s} %s\n", mName, i_getStateName()), E_UNEXPECTED);
|
---|
672 | AssertMsgReturn((mMachine == aMachine), ("%p != %p\n", (void *)mMachine, aMachine), E_FAIL);
|
---|
673 |
|
---|
674 | /*
|
---|
675 | * Change the state.
|
---|
676 | */
|
---|
677 | if (!aDone)
|
---|
678 | {
|
---|
679 | *aRunFilters = i_startTransition(kHostUSBDeviceState_DetachingFromVM, kHostUSBDeviceState_HeldByProxy);
|
---|
680 | /* PORTME: This might require host specific changes if you re-enumerate the device. */
|
---|
681 | }
|
---|
682 | else if (aAbnormal && mUniState == kHostUSBDeviceState_UsedByVM)
|
---|
683 | {
|
---|
684 | /* Fast forward thru the DetachingFromVM state and on to HeldByProxy. */
|
---|
685 | /** @todo need to update the state machine to handle crashed VMs. */
|
---|
686 | i_startTransition(kHostUSBDeviceState_DetachingFromVM, kHostUSBDeviceState_HeldByProxy);
|
---|
687 | *aRunFilters = i_advanceTransition();
|
---|
688 | mMachine.setNull();
|
---|
689 | /* PORTME: ditto / trouble if you depend on the VM process to do anything. */
|
---|
690 | }
|
---|
691 | else
|
---|
692 | {
|
---|
693 | /* normal completion. */
|
---|
694 | Assert(mUniSubState == kHostUSBDeviceSubState_Default); /* PORTME: ditto */
|
---|
695 | *aRunFilters = i_advanceTransition();
|
---|
696 | mMachine.setNull();
|
---|
697 | }
|
---|
698 |
|
---|
699 | return S_OK;
|
---|
700 | }
|
---|
701 |
|
---|
702 | /**
|
---|
703 | * Requests the USB proxy service to release the device back to the host.
|
---|
704 | *
|
---|
705 | * This method will ignore (not assert) calls for devices that already
|
---|
706 | * belong to the host because it simplifies the usage a bit.
|
---|
707 | *
|
---|
708 | * @returns COM status code.
|
---|
709 | * @retval S_OK on success.
|
---|
710 | * @retval E_UNEXPECTED on bad state.
|
---|
711 | * @retval E_* as appropriate.
|
---|
712 | *
|
---|
713 | * @note Must be called without holding the object lock.
|
---|
714 | */
|
---|
715 | HRESULT HostUSBDevice::i_requestReleaseToHost()
|
---|
716 | {
|
---|
717 | /*
|
---|
718 | * Validate preconditions.
|
---|
719 | */
|
---|
720 | AssertReturn(!isWriteLockOnCurrentThread(), E_FAIL);
|
---|
721 | Assert(mMachine.isNull());
|
---|
722 |
|
---|
723 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
724 | LogFlowThisFunc(("{%s}\n", mName));
|
---|
725 | if ( mUniState == kHostUSBDeviceState_Unused
|
---|
726 | || mUniState == kHostUSBDeviceState_Capturable)
|
---|
727 | return S_OK;
|
---|
728 | AssertMsgReturn(mUniState == kHostUSBDeviceState_HeldByProxy, ("{%s} %s\n", mName, i_getStateName()), E_UNEXPECTED);
|
---|
729 |
|
---|
730 | /*
|
---|
731 | * Try release it.
|
---|
732 | */
|
---|
733 | if (mUSBProxyBackend->i_isDevReEnumerationRequired())
|
---|
734 | i_startTransition(kHostUSBDeviceState_ReleasingToHost, kHostUSBDeviceState_Unused, kHostUSBDeviceSubState_AwaitingDetach);
|
---|
735 | else
|
---|
736 | i_startTransition(kHostUSBDeviceState_ReleasingToHost, kHostUSBDeviceState_Unused);
|
---|
737 |
|
---|
738 | alock.release();
|
---|
739 | int rc = mUSBProxyBackend->releaseDevice(this);
|
---|
740 | if (RT_FAILURE(rc))
|
---|
741 | {
|
---|
742 | alock.acquire();
|
---|
743 | i_failTransition(kHostUSBDeviceState_Invalid);
|
---|
744 | return E_FAIL;
|
---|
745 | }
|
---|
746 | return S_OK;
|
---|
747 | }
|
---|
748 |
|
---|
749 | /**
|
---|
750 | * Requests the USB proxy service to capture and hold the device.
|
---|
751 | *
|
---|
752 | * The device must be owned by the host at the time of the call. But for
|
---|
753 | * the callers convenience, calling this method on a device that is already
|
---|
754 | * being held will success without any assertions.
|
---|
755 | *
|
---|
756 | * @returns COM status code.
|
---|
757 | * @retval S_OK on success.
|
---|
758 | * @retval E_UNEXPECTED on bad state.
|
---|
759 | * @retval E_* as appropriate.
|
---|
760 | *
|
---|
761 | * @note Must be called without holding the object lock.
|
---|
762 | */
|
---|
763 | HRESULT HostUSBDevice::i_requestHold()
|
---|
764 | {
|
---|
765 | /*
|
---|
766 | * Validate preconditions.
|
---|
767 | */
|
---|
768 | AssertReturn(!isWriteLockOnCurrentThread(), E_FAIL);
|
---|
769 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
770 | LogFlowThisFunc(("{%s}\n", mName));
|
---|
771 | AssertMsgReturn( mUniState == kHostUSBDeviceState_Unused
|
---|
772 | || mUniState == kHostUSBDeviceState_Capturable
|
---|
773 | || mUniState == kHostUSBDeviceState_HeldByProxy,
|
---|
774 | ("{%s} %s\n", mName, i_getStateName()),
|
---|
775 | E_UNEXPECTED);
|
---|
776 |
|
---|
777 | Assert(mMachine.isNull());
|
---|
778 | mMachine.setNull();
|
---|
779 |
|
---|
780 | if (mUniState == kHostUSBDeviceState_HeldByProxy)
|
---|
781 | return S_OK;
|
---|
782 |
|
---|
783 | /*
|
---|
784 | * Do the job.
|
---|
785 | */
|
---|
786 | if (mUSBProxyBackend->i_isDevReEnumerationRequired())
|
---|
787 | i_startTransition(kHostUSBDeviceState_Capturing, kHostUSBDeviceState_HeldByProxy, kHostUSBDeviceSubState_AwaitingDetach);
|
---|
788 | else
|
---|
789 | i_startTransition(kHostUSBDeviceState_Capturing, kHostUSBDeviceState_HeldByProxy);
|
---|
790 |
|
---|
791 | alock.release();
|
---|
792 | int rc = mUSBProxyBackend->captureDevice(this);
|
---|
793 | if (RT_FAILURE(rc))
|
---|
794 | {
|
---|
795 | alock.acquire();
|
---|
796 | i_failTransition(kHostUSBDeviceState_Invalid);
|
---|
797 | return E_FAIL;
|
---|
798 | }
|
---|
799 | return S_OK;
|
---|
800 | }
|
---|
801 |
|
---|
802 |
|
---|
803 | /**
|
---|
804 | * Check a detach detected by the USB Proxy Service to see if
|
---|
805 | * it's a real one or just a logical following a re-enumeration.
|
---|
806 | *
|
---|
807 | * This will work the internal sub state of the device and do time
|
---|
808 | * outs, so it does more than just querying data!
|
---|
809 | *
|
---|
810 | * @returns true if it was actually detached, false if it's just a re-enumeration.
|
---|
811 | */
|
---|
812 | bool HostUSBDevice::i_wasActuallyDetached()
|
---|
813 | {
|
---|
814 | /*
|
---|
815 | * This only applies to the detach and re-attach states.
|
---|
816 | */
|
---|
817 | switch (mUniState)
|
---|
818 | {
|
---|
819 | case kHostUSBDeviceState_Capturing:
|
---|
820 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
821 | case kHostUSBDeviceState_AttachingToVM:
|
---|
822 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
823 | switch (mUniSubState)
|
---|
824 | {
|
---|
825 | /*
|
---|
826 | * If we're awaiting a detach, the this has now occurred
|
---|
827 | * and the state should be advanced.
|
---|
828 | */
|
---|
829 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
830 | i_advanceTransition();
|
---|
831 | return false; /* not physically detached. */
|
---|
832 |
|
---|
833 | /*
|
---|
834 | * Check for timeouts.
|
---|
835 | */
|
---|
836 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
837 | {
|
---|
838 | #ifndef RT_OS_WINDOWS /* check the implementation details here. */
|
---|
839 | uint64_t elapsedNanoseconds = RTTimeNanoTS() - mLastStateChangeTS;
|
---|
840 | if (elapsedNanoseconds > UINT64_C(60000000000)) /* 60 seconds */
|
---|
841 | {
|
---|
842 | LogRel(("USB: Async operation timed out for device %s (state: %s)\n", mName, i_getStateName()));
|
---|
843 | i_failTransition(kHostUSBDeviceState_PhysDetached);
|
---|
844 | }
|
---|
845 | #endif
|
---|
846 | return false; /* not physically detached. */
|
---|
847 | }
|
---|
848 |
|
---|
849 | /* not applicable.*/
|
---|
850 | case kHostUSBDeviceSubState_Default:
|
---|
851 | break;
|
---|
852 | }
|
---|
853 | break;
|
---|
854 |
|
---|
855 | /* not applicable. */
|
---|
856 | case kHostUSBDeviceState_Unsupported:
|
---|
857 | case kHostUSBDeviceState_UsedByHost:
|
---|
858 | case kHostUSBDeviceState_Capturable:
|
---|
859 | case kHostUSBDeviceState_Unused:
|
---|
860 | case kHostUSBDeviceState_HeldByProxy:
|
---|
861 | case kHostUSBDeviceState_UsedByVM:
|
---|
862 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
863 | case kHostUSBDeviceState_PhysDetached:
|
---|
864 | break;
|
---|
865 |
|
---|
866 | default:
|
---|
867 | AssertLogRelMsgFailed(("this=%p %s\n", this, i_getStateName()));
|
---|
868 | break;
|
---|
869 | }
|
---|
870 |
|
---|
871 | /* It was detached. */
|
---|
872 | return true;
|
---|
873 | }
|
---|
874 |
|
---|
875 | /**
|
---|
876 | * Notification from the USB Proxy that the device was physically detached.
|
---|
877 | *
|
---|
878 | * If a transition is pending, mIsPhysicallyDetached will be set and
|
---|
879 | * handled when the transition advances forward.
|
---|
880 | *
|
---|
881 | * Otherwise the device will be detached from any VM currently using it - this
|
---|
882 | * involves IPC and will temporarily abandon locks - and all the device data
|
---|
883 | * reset.
|
---|
884 | */
|
---|
885 | void HostUSBDevice::i_onPhysicalDetached()
|
---|
886 | {
|
---|
887 | AssertReturnVoid(!isWriteLockOnCurrentThread());
|
---|
888 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
889 | LogFlowThisFunc(("{%s}\n", mName));
|
---|
890 |
|
---|
891 | mIsPhysicallyDetached = true;
|
---|
892 | if (mUniState < kHostUSBDeviceState_FirstTransitional)
|
---|
893 | {
|
---|
894 | alock.release();
|
---|
895 | i_onPhysicalDetachedInternal();
|
---|
896 | }
|
---|
897 | }
|
---|
898 |
|
---|
899 |
|
---|
900 | /**
|
---|
901 | * Do the physical detach work for a device in a stable state or
|
---|
902 | * at a transition state change.
|
---|
903 | *
|
---|
904 | * See onPhysicalDetach() for details.
|
---|
905 | */
|
---|
906 | void HostUSBDevice::i_onPhysicalDetachedInternal()
|
---|
907 | {
|
---|
908 | AssertReturnVoid(!isWriteLockOnCurrentThread());
|
---|
909 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
910 | LogFlowThisFunc(("{%s}\n", mName));
|
---|
911 | Assert(mIsPhysicallyDetached);
|
---|
912 |
|
---|
913 | /*
|
---|
914 | * Do we need to detach it from the VM first?
|
---|
915 | */
|
---|
916 | if ( !mMachine.isNull()
|
---|
917 | && ( mUniState == kHostUSBDeviceState_UsedByVM
|
---|
918 | || mUniState == kHostUSBDeviceState_AttachingToVM))
|
---|
919 | {
|
---|
920 | alock.release();
|
---|
921 | i_detachFromVM(kHostUSBDeviceState_PhysDetached);
|
---|
922 | alock.acquire();
|
---|
923 | }
|
---|
924 | else
|
---|
925 | AssertMsg(mMachine.isNull(), ("%s\n", i_getStateName()));
|
---|
926 |
|
---|
927 | /*
|
---|
928 | * Reset the data and enter the final state.
|
---|
929 | */
|
---|
930 | mMachine.setNull();
|
---|
931 | i_setState(kHostUSBDeviceState_PhysDetached);
|
---|
932 | }
|
---|
933 |
|
---|
934 |
|
---|
935 | /**
|
---|
936 | * Returns true if this device matches the given filter data.
|
---|
937 | *
|
---|
938 | * @note It is assumed, that the filter data owner is appropriately
|
---|
939 | * locked before calling this method.
|
---|
940 | *
|
---|
941 | * @note
|
---|
942 | * This method MUST correlate with
|
---|
943 | * USBController::hasMatchingFilter (IUSBDevice *)
|
---|
944 | * in the sense of the device matching logic.
|
---|
945 | *
|
---|
946 | * @note Locks this object for reading.
|
---|
947 | */
|
---|
948 | bool HostUSBDevice::i_isMatch(const USBDeviceFilter::BackupableUSBDeviceFilterData &aData)
|
---|
949 | {
|
---|
950 | AutoCaller autoCaller(this);
|
---|
951 | AssertComRCReturn(autoCaller.rc(), false);
|
---|
952 |
|
---|
953 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
954 |
|
---|
955 | if (!aData.mData.fActive)
|
---|
956 | return false;
|
---|
957 |
|
---|
958 | if (!aData.mRemote.isMatch(FALSE))
|
---|
959 | return false;
|
---|
960 |
|
---|
961 | if (!USBFilterMatchDevice(&aData.mUSBFilter, mUsb))
|
---|
962 | return false;
|
---|
963 |
|
---|
964 | /* Don't match busy devices with a 100% wildcard filter - this will
|
---|
965 | later become a filter prop (ring-3 only). */
|
---|
966 | if ( mUsb->enmState == USBDEVICESTATE_USED_BY_HOST_CAPTURABLE
|
---|
967 | && !USBFilterHasAnySubstatialCriteria(&aData.mUSBFilter))
|
---|
968 | return false;
|
---|
969 |
|
---|
970 | LogFlowThisFunc(("returns true\n"));
|
---|
971 | return true;
|
---|
972 | }
|
---|
973 |
|
---|
974 | /**
|
---|
975 | * Compares this device with a USBDEVICE and decides if the match or which comes first.
|
---|
976 | *
|
---|
977 | * This will take into account device re-attaching and omit the bits
|
---|
978 | * that may change during a device re-enumeration.
|
---|
979 | *
|
---|
980 | * @param aDev2 Device 2.
|
---|
981 | *
|
---|
982 | * @returns < 0 if this should come before aDev2.
|
---|
983 | * @returns 0 if this and aDev2 are equal.
|
---|
984 | * @returns > 0 if this should come after aDev2.
|
---|
985 | *
|
---|
986 | * @note Must be called from under the object write lock.
|
---|
987 | */
|
---|
988 | int HostUSBDevice::i_compare(PCUSBDEVICE aDev2)
|
---|
989 | {
|
---|
990 | AssertReturn(isWriteLockOnCurrentThread(), -1);
|
---|
991 | //Log3(("%Rfn: %p {%s}\n", __PRETTY_FUNCTION__, this, mName));
|
---|
992 | return i_compare(mUsb, aDev2,
|
---|
993 | mUniSubState == kHostUSBDeviceSubState_AwaitingDetach /* (In case we don't get the detach notice.) */
|
---|
994 | || mUniSubState == kHostUSBDeviceSubState_AwaitingReAttach);
|
---|
995 | }
|
---|
996 |
|
---|
997 | /**
|
---|
998 | * Compares two USBDEVICE structures and decides if the match or which comes first.
|
---|
999 | *
|
---|
1000 | * @param aDev1 Device 1.
|
---|
1001 | * @param aDev2 Device 2.
|
---|
1002 | * @param aIsAwaitingReAttach Whether to omit bits that will change in a device
|
---|
1003 | * re-enumeration (true) or not (false).
|
---|
1004 | *
|
---|
1005 | * @returns < 0 if aDev1 should come before aDev2.
|
---|
1006 | * @returns 0 if aDev1 and aDev2 are equal.
|
---|
1007 | * @returns > 0 if aDev1 should come after aDev2.
|
---|
1008 | */
|
---|
1009 | /*static*/
|
---|
1010 | int HostUSBDevice::i_compare(PCUSBDEVICE aDev1, PCUSBDEVICE aDev2, bool aIsAwaitingReAttach /*= false */)
|
---|
1011 | {
|
---|
1012 | /* Comparing devices from different backends doesn't make any sense and should not happen. */
|
---|
1013 | AssertReturn(!strcmp(aDev1->pszBackend, aDev2->pszBackend), -1);
|
---|
1014 |
|
---|
1015 | /*
|
---|
1016 | * Things that stays the same everywhere.
|
---|
1017 | *
|
---|
1018 | * The more uniquely these properties identifies a device the less the chance
|
---|
1019 | * that we mix similar devices during re-enumeration. Bus+port would help
|
---|
1020 | * provide ~99.8% accuracy if the host can provide those attributes.
|
---|
1021 | */
|
---|
1022 | int iDiff = aDev1->idVendor - aDev2->idVendor;
|
---|
1023 | if (iDiff)
|
---|
1024 | return iDiff;
|
---|
1025 |
|
---|
1026 | iDiff = aDev1->idProduct - aDev2->idProduct;
|
---|
1027 | if (iDiff)
|
---|
1028 | return iDiff;
|
---|
1029 |
|
---|
1030 | iDiff = aDev1->bcdDevice - aDev2->bcdDevice;
|
---|
1031 | if (iDiff)
|
---|
1032 | {
|
---|
1033 | //Log3(("compare: bcdDevice: %#x != %#x\n", aDev1->bcdDevice, aDev2->bcdDevice));
|
---|
1034 | return iDiff;
|
---|
1035 | }
|
---|
1036 |
|
---|
1037 | #ifdef RT_OS_WINDOWS /* the string query may fail on windows during replugging, ignore serial mismatch if this is the case. */
|
---|
1038 | if ( aDev1->u64SerialHash != aDev2->u64SerialHash
|
---|
1039 | && ( !aIsAwaitingReAttach
|
---|
1040 | || (aDev2->pszSerialNumber && *aDev2->pszSerialNumber)
|
---|
1041 | || (aDev2->pszManufacturer && *aDev2->pszManufacturer)
|
---|
1042 | || (aDev2->pszProduct && *aDev2->pszProduct))
|
---|
1043 | )
|
---|
1044 | #else
|
---|
1045 | if (aDev1->u64SerialHash != aDev2->u64SerialHash)
|
---|
1046 | #endif
|
---|
1047 | {
|
---|
1048 | //Log3(("compare: u64SerialHash: %#llx != %#llx\n", aDev1->u64SerialHash, aDev2->u64SerialHash));
|
---|
1049 | return aDev1->u64SerialHash < aDev2->u64SerialHash ? -1 : 1;
|
---|
1050 | }
|
---|
1051 |
|
---|
1052 | /* The hub/bus + port should help a lot in a re-attach situation. */
|
---|
1053 | #ifdef RT_OS_WINDOWS
|
---|
1054 | /* The hub name makes only sense for the host backend. */
|
---|
1055 | if ( !strcmp(aDev1->pszBackend, "host")
|
---|
1056 | && aDev1->pszHubName
|
---|
1057 | && aDev2->pszHubName)
|
---|
1058 | {
|
---|
1059 | iDiff = strcmp(aDev1->pszHubName, aDev2->pszHubName);
|
---|
1060 | if (iDiff)
|
---|
1061 | {
|
---|
1062 | //Log3(("compare: HubName: %s != %s\n", aDev1->pszHubName, aDev2->pszHubName));
|
---|
1063 | return iDiff;
|
---|
1064 | }
|
---|
1065 | }
|
---|
1066 | #else
|
---|
1067 | iDiff = aDev1->bBus - aDev2->bBus;
|
---|
1068 | if (iDiff)
|
---|
1069 | {
|
---|
1070 | //Log3(("compare: bBus: %#x != %#x\n", aDev1->bBus, aDev2->bBus));
|
---|
1071 | return iDiff;
|
---|
1072 | }
|
---|
1073 | #endif
|
---|
1074 |
|
---|
1075 | iDiff = aDev1->bPort - aDev2->bPort; /* shouldn't change anywhere and help pinpoint it very accurately. */
|
---|
1076 | if (iDiff)
|
---|
1077 | {
|
---|
1078 | //Log3(("compare: bPort: %#x != %#x\n", aDev1->bPort, aDev2->bPort));
|
---|
1079 | return iDiff;
|
---|
1080 | }
|
---|
1081 |
|
---|
1082 | /*
|
---|
1083 | * Things that usually doesn't stay the same when re-enumerating
|
---|
1084 | * a device. The fewer things in the category the better chance
|
---|
1085 | * that we avoid messing up when more than one device of the same
|
---|
1086 | * kind is attached.
|
---|
1087 | */
|
---|
1088 | if (aIsAwaitingReAttach)
|
---|
1089 | {
|
---|
1090 | //Log3(("aDev1=%p == aDev2=%p\n", aDev1, aDev2));
|
---|
1091 | return 0;
|
---|
1092 | }
|
---|
1093 | /* device number always changes. */
|
---|
1094 | return strcmp(aDev1->pszAddress, aDev2->pszAddress);
|
---|
1095 | }
|
---|
1096 |
|
---|
1097 | /**
|
---|
1098 | * Updates the state of the device.
|
---|
1099 | *
|
---|
1100 | * If this method returns @c true, Host::onUSBDeviceStateChanged() will be
|
---|
1101 | * called to process the state change (complete the state change request,
|
---|
1102 | * inform the VM process etc.).
|
---|
1103 | *
|
---|
1104 | * If this method returns @c false, it is assumed that the given state change
|
---|
1105 | * is "minor": it doesn't require any further action other than update the
|
---|
1106 | * mState field with the actual state value.
|
---|
1107 | *
|
---|
1108 | * Regardless of the return value, this method always takes ownership of the
|
---|
1109 | * new USBDEVICE structure passed in and updates the pNext and pPrev fiends in
|
---|
1110 | * it using the values of the old structure.
|
---|
1111 | *
|
---|
1112 | * @param[in] aDev The current device state as seen by the proxy backend.
|
---|
1113 | * @param[out] aRunFilters Whether the state change should be accompanied by
|
---|
1114 | * running filters on the device.
|
---|
1115 | * @param[out] aIgnoreMachine Machine to ignore when running filters.
|
---|
1116 | *
|
---|
1117 | * @returns Whether the Host object should be bothered with this state change.
|
---|
1118 | *
|
---|
1119 | * @todo Just do everything here, that is, call filter runners and everything that
|
---|
1120 | * works by state change. Using 3 return codes/parameters is just plain ugly.
|
---|
1121 | */
|
---|
1122 | bool HostUSBDevice::i_updateState(PCUSBDEVICE aDev, bool *aRunFilters, SessionMachine **aIgnoreMachine)
|
---|
1123 | {
|
---|
1124 | *aRunFilters = false;
|
---|
1125 | *aIgnoreMachine = NULL;
|
---|
1126 |
|
---|
1127 | /*
|
---|
1128 | * Locking.
|
---|
1129 | */
|
---|
1130 | AssertReturn(!isWriteLockOnCurrentThread(), false);
|
---|
1131 | AutoCaller autoCaller(this);
|
---|
1132 | AssertComRCReturn(autoCaller.rc(), false);
|
---|
1133 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
1134 |
|
---|
1135 | /*
|
---|
1136 | * Replace the existing structure by the new one.
|
---|
1137 | */
|
---|
1138 | const USBDEVICESTATE enmOldState = mUsb->enmState; NOREF(enmOldState);
|
---|
1139 | if (mUsb != aDev)
|
---|
1140 | {
|
---|
1141 | #ifdef RT_OS_WINDOWS
|
---|
1142 | /* we used this logic of string comparison in HostUSBDevice::compare
|
---|
1143 | * now we need to preserve strings from the old device if the new device has zero strings
|
---|
1144 | * this ensures the device is correctly matched later on
|
---|
1145 | * otherwise we may end up with a phantom misconfigured device instance */
|
---|
1146 | if ((mUniSubState == kHostUSBDeviceSubState_AwaitingDetach /* (In case we don't get the detach notice.) */
|
---|
1147 | || mUniSubState == kHostUSBDeviceSubState_AwaitingReAttach)
|
---|
1148 | && (!aDev->pszSerialNumber || !*aDev->pszSerialNumber)
|
---|
1149 | && (!aDev->pszManufacturer || !*aDev->pszManufacturer)
|
---|
1150 | && (!aDev->pszProduct || !*aDev->pszProduct))
|
---|
1151 | {
|
---|
1152 | aDev->u64SerialHash = mUsb->u64SerialHash;
|
---|
1153 |
|
---|
1154 | if (mUsb->pszSerialNumber && *mUsb->pszSerialNumber)
|
---|
1155 | {
|
---|
1156 | if (aDev->pszSerialNumber)
|
---|
1157 | RTStrFree((char *)aDev->pszSerialNumber);
|
---|
1158 |
|
---|
1159 | /* since we're going to free old device later on,
|
---|
1160 | * we can just assign the string from it to the new device
|
---|
1161 | * and zero up the string filed for the old device */
|
---|
1162 | aDev->pszSerialNumber = mUsb->pszSerialNumber;
|
---|
1163 | mUsb->pszSerialNumber = NULL;
|
---|
1164 | }
|
---|
1165 |
|
---|
1166 | if (mUsb->pszManufacturer && *mUsb->pszManufacturer)
|
---|
1167 | {
|
---|
1168 | if (aDev->pszManufacturer)
|
---|
1169 | RTStrFree((char *)aDev->pszManufacturer);
|
---|
1170 |
|
---|
1171 | /* since we're going to free old device later on,
|
---|
1172 | * we can just assign the string from it to the new device
|
---|
1173 | * and zero up the string filed for the old device */
|
---|
1174 | aDev->pszManufacturer = mUsb->pszManufacturer;
|
---|
1175 | mUsb->pszManufacturer = NULL;
|
---|
1176 | }
|
---|
1177 |
|
---|
1178 | if (mUsb->pszProduct && *mUsb->pszProduct)
|
---|
1179 | {
|
---|
1180 | if (aDev->pszProduct)
|
---|
1181 | RTStrFree((char *)aDev->pszProduct);
|
---|
1182 |
|
---|
1183 | /* since we're going to free old device later on,
|
---|
1184 | * we can just assign the string from it to the new device
|
---|
1185 | * and zero up the string filed for the old device */
|
---|
1186 | aDev->pszProduct = mUsb->pszProduct;
|
---|
1187 | mUsb->pszProduct = NULL;
|
---|
1188 | }
|
---|
1189 | }
|
---|
1190 | #endif
|
---|
1191 | aDev->pNext = mUsb->pNext;
|
---|
1192 | aDev->pPrev = mUsb->pPrev;
|
---|
1193 | USBProxyBackend::freeDevice(mUsb);
|
---|
1194 | mUsb = aDev;
|
---|
1195 | }
|
---|
1196 |
|
---|
1197 | /** @def HOSTUSBDEVICE_FUZZY_STATE
|
---|
1198 | * Defined on hosts where we have a driver that keeps proper device states.
|
---|
1199 | */
|
---|
1200 | # if defined(RT_OS_LINUX) || defined(DOXYGEN_RUNNING)
|
---|
1201 | # define HOSTUSBDEVICE_FUZZY_STATE 1
|
---|
1202 | # else
|
---|
1203 | # undef HOSTUSBDEVICE_FUZZY_STATE
|
---|
1204 | # endif
|
---|
1205 | /*
|
---|
1206 | * For some hosts we'll have to be pretty careful here because
|
---|
1207 | * they don't always have a clue what is going on. This is
|
---|
1208 | * particularly true on linux and solaris, while windows and
|
---|
1209 | * darwin generally knows a bit more.
|
---|
1210 | */
|
---|
1211 | bool fIsImportant = false;
|
---|
1212 | if (enmOldState != mUsb->enmState)
|
---|
1213 | {
|
---|
1214 | LogFlowThisFunc(("%p {%s} %s\n", this, mName, i_getStateName()));
|
---|
1215 | switch (mUsb->enmState)
|
---|
1216 | {
|
---|
1217 | /*
|
---|
1218 | * Little fuzziness here, except where we fake capture.
|
---|
1219 | */
|
---|
1220 | case USBDEVICESTATE_USED_BY_HOST:
|
---|
1221 | switch (mUniState)
|
---|
1222 | {
|
---|
1223 | /* Host drivers installed, that's fine. */
|
---|
1224 | case kHostUSBDeviceState_Capturable:
|
---|
1225 | case kHostUSBDeviceState_Unused:
|
---|
1226 | LogThisFunc(("{%s} %s -> %s\n", mName, i_getStateName(), i_stateName(kHostUSBDeviceState_UsedByHost)));
|
---|
1227 | *aRunFilters = i_setState(kHostUSBDeviceState_UsedByHost);
|
---|
1228 | break;
|
---|
1229 | case kHostUSBDeviceState_UsedByHost:
|
---|
1230 | break;
|
---|
1231 |
|
---|
1232 | /* Can only mean that we've failed capturing it. */
|
---|
1233 | case kHostUSBDeviceState_Capturing:
|
---|
1234 | LogThisFunc(("{%s} capture failed! (#1)\n", mName));
|
---|
1235 | mUSBProxyBackend->captureDeviceCompleted(this, false /* aSuccess */);
|
---|
1236 | *aRunFilters = i_failTransition(kHostUSBDeviceState_UsedByHost);
|
---|
1237 | mMachine.setNull();
|
---|
1238 | break;
|
---|
1239 |
|
---|
1240 | /* Guess we've successfully released it. */
|
---|
1241 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
1242 | LogThisFunc(("{%s} %s -> %s\n", mName, i_getStateName(), i_stateName(kHostUSBDeviceState_UsedByHost)));
|
---|
1243 | mUSBProxyBackend->releaseDeviceCompleted(this, true /* aSuccess */);
|
---|
1244 | *aRunFilters = i_setState(kHostUSBDeviceState_UsedByHost);
|
---|
1245 | break;
|
---|
1246 |
|
---|
1247 | /* These are IPC states and should be left alone. */
|
---|
1248 | case kHostUSBDeviceState_AttachingToVM:
|
---|
1249 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
1250 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
1251 | LogThisFunc(("{%s} %s - changed to USED_BY_HOST...\n", mName, i_getStateName()));
|
---|
1252 | break;
|
---|
1253 |
|
---|
1254 | #ifdef HOSTUSBDEVICE_FUZZY_STATE
|
---|
1255 | /* Fake: We can't prevent anyone from grabbing it. */
|
---|
1256 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1257 | LogThisFunc(("{%s} %s -> %s!\n", mName, i_getStateName(), i_stateName(kHostUSBDeviceState_UsedByHost)));
|
---|
1258 | *aRunFilters = i_setState(kHostUSBDeviceState_UsedByHost);
|
---|
1259 | break;
|
---|
1260 | //case kHostUSBDeviceState_UsedByVM:
|
---|
1261 | // /** @todo needs to be detached from the VM. */
|
---|
1262 | // break;
|
---|
1263 | #endif
|
---|
1264 | /* Not supposed to happen... */
|
---|
1265 | #ifndef HOSTUSBDEVICE_FUZZY_STATE
|
---|
1266 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1267 | #endif
|
---|
1268 | case kHostUSBDeviceState_UsedByVM:
|
---|
1269 | case kHostUSBDeviceState_PhysDetached:
|
---|
1270 | case kHostUSBDeviceState_Unsupported:
|
---|
1271 | default:
|
---|
1272 | AssertMsgFailed(("{%s} %s\n", mName, i_getStateName()));
|
---|
1273 | break;
|
---|
1274 | }
|
---|
1275 | break;
|
---|
1276 |
|
---|
1277 | /*
|
---|
1278 | * It changed to capturable. Fuzzy hosts might easily
|
---|
1279 | * confuse UsedByVM with this one.
|
---|
1280 | */
|
---|
1281 | case USBDEVICESTATE_USED_BY_HOST_CAPTURABLE:
|
---|
1282 | switch (mUniState)
|
---|
1283 | {
|
---|
1284 | /* No change. */
|
---|
1285 | #ifdef HOSTUSBDEVICE_FUZZY_STATE
|
---|
1286 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1287 | case kHostUSBDeviceState_UsedByVM:
|
---|
1288 | #endif
|
---|
1289 | case kHostUSBDeviceState_Capturable:
|
---|
1290 | break;
|
---|
1291 |
|
---|
1292 | /* Changed! */
|
---|
1293 | case kHostUSBDeviceState_UsedByHost:
|
---|
1294 | fIsImportant = true;
|
---|
1295 | case kHostUSBDeviceState_Unused:
|
---|
1296 | LogThisFunc(("{%s} %s -> %s\n", mName, i_getStateName(), i_stateName(kHostUSBDeviceState_Capturable)));
|
---|
1297 | *aRunFilters = i_setState(kHostUSBDeviceState_Capturable);
|
---|
1298 | break;
|
---|
1299 |
|
---|
1300 | /* Can only mean that we've failed capturing it. */
|
---|
1301 | case kHostUSBDeviceState_Capturing:
|
---|
1302 | LogThisFunc(("{%s} capture failed! (#2)\n", mName));
|
---|
1303 | mUSBProxyBackend->captureDeviceCompleted(this, false /* aSuccess */);
|
---|
1304 | *aRunFilters = i_failTransition(kHostUSBDeviceState_Capturable);
|
---|
1305 | mMachine.setNull();
|
---|
1306 | break;
|
---|
1307 |
|
---|
1308 | /* Guess we've successfully released it. */
|
---|
1309 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
1310 | LogThisFunc(("{%s} %s -> %s\n", mName, i_getStateName(), i_stateName(kHostUSBDeviceState_Capturable)));
|
---|
1311 | mUSBProxyBackend->releaseDeviceCompleted(this, true /* aSuccess */);
|
---|
1312 | *aRunFilters = i_setState(kHostUSBDeviceState_Capturable);
|
---|
1313 | break;
|
---|
1314 |
|
---|
1315 | /* These are IPC states and should be left alone. */
|
---|
1316 | case kHostUSBDeviceState_AttachingToVM:
|
---|
1317 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
1318 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
1319 | LogThisFunc(("{%s} %s - changed to USED_BY_HOST_CAPTURABLE...\n", mName, i_getStateName()));
|
---|
1320 | break;
|
---|
1321 |
|
---|
1322 | /* Not supposed to happen*/
|
---|
1323 | #ifndef HOSTUSBDEVICE_FUZZY_STATE
|
---|
1324 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1325 | case kHostUSBDeviceState_UsedByVM:
|
---|
1326 | #endif
|
---|
1327 | case kHostUSBDeviceState_Unsupported:
|
---|
1328 | case kHostUSBDeviceState_PhysDetached:
|
---|
1329 | default:
|
---|
1330 | AssertMsgFailed(("{%s} %s\n", mName, i_getStateName()));
|
---|
1331 | break;
|
---|
1332 | }
|
---|
1333 | break;
|
---|
1334 |
|
---|
1335 |
|
---|
1336 | /*
|
---|
1337 | * It changed to capturable. Fuzzy hosts might easily
|
---|
1338 | * confuse UsedByVM and HeldByProxy with this one.
|
---|
1339 | */
|
---|
1340 | case USBDEVICESTATE_UNUSED:
|
---|
1341 | switch (mUniState)
|
---|
1342 | {
|
---|
1343 | /* No change. */
|
---|
1344 | #ifdef HOSTUSBDEVICE_FUZZY_STATE
|
---|
1345 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1346 | case kHostUSBDeviceState_UsedByVM:
|
---|
1347 | #endif
|
---|
1348 | case kHostUSBDeviceState_Unused:
|
---|
1349 | break;
|
---|
1350 |
|
---|
1351 | /* Changed! */
|
---|
1352 | case kHostUSBDeviceState_UsedByHost:
|
---|
1353 | case kHostUSBDeviceState_Capturable:
|
---|
1354 | fIsImportant = true;
|
---|
1355 | LogThisFunc(("{%s} %s -> %s\n", mName, i_getStateName(), i_stateName(kHostUSBDeviceState_Unused)));
|
---|
1356 | *aRunFilters = i_setState(kHostUSBDeviceState_Unused);
|
---|
1357 | break;
|
---|
1358 |
|
---|
1359 | /* Can mean that we've failed capturing it, but on windows it is the detach signal. */
|
---|
1360 | case kHostUSBDeviceState_Capturing:
|
---|
1361 | #if defined(RT_OS_WINDOWS)
|
---|
1362 | if (mUniSubState == kHostUSBDeviceSubState_AwaitingDetach)
|
---|
1363 | {
|
---|
1364 | LogThisFunc(("{%s} capture advancing thru UNUSED...\n", mName));
|
---|
1365 | *aRunFilters = i_advanceTransition();
|
---|
1366 | }
|
---|
1367 | else
|
---|
1368 | #endif
|
---|
1369 | {
|
---|
1370 | LogThisFunc(("{%s} capture failed! (#3)\n", mName));
|
---|
1371 | mUSBProxyBackend->captureDeviceCompleted(this, false /* aSuccess */);
|
---|
1372 | *aRunFilters = i_failTransition(kHostUSBDeviceState_Unused);
|
---|
1373 | mMachine.setNull();
|
---|
1374 | }
|
---|
1375 | break;
|
---|
1376 |
|
---|
1377 | /* Guess we've successfully released it. */
|
---|
1378 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
1379 | LogThisFunc(("{%s} %s -> %s\n", mName, i_getStateName(), i_stateName(kHostUSBDeviceState_Unused)));
|
---|
1380 | mUSBProxyBackend->releaseDeviceCompleted(this, true /* aSuccess */);
|
---|
1381 | *aRunFilters = i_setState(kHostUSBDeviceState_Unused);
|
---|
1382 | break;
|
---|
1383 |
|
---|
1384 | /* These are IPC states and should be left alone. */
|
---|
1385 | case kHostUSBDeviceState_AttachingToVM:
|
---|
1386 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
1387 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
1388 | LogThisFunc(("{%s} %s - changed to UNUSED...\n", mName, i_getStateName()));
|
---|
1389 | break;
|
---|
1390 |
|
---|
1391 | /* Not supposed to happen*/
|
---|
1392 | #ifndef HOSTUSBDEVICE_FUZZY_STATE
|
---|
1393 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1394 | case kHostUSBDeviceState_UsedByVM:
|
---|
1395 | #endif
|
---|
1396 | case kHostUSBDeviceState_Unsupported:
|
---|
1397 | case kHostUSBDeviceState_PhysDetached:
|
---|
1398 | default:
|
---|
1399 | AssertMsgFailed(("{%s} %s\n", mName, i_getStateName()));
|
---|
1400 | break;
|
---|
1401 | }
|
---|
1402 | break;
|
---|
1403 |
|
---|
1404 | /*
|
---|
1405 | * This is pretty straight forward, except that everyone
|
---|
1406 | * might sometimes confuse this and the UsedByVM state.
|
---|
1407 | */
|
---|
1408 | case USBDEVICESTATE_HELD_BY_PROXY:
|
---|
1409 | switch (mUniState)
|
---|
1410 | {
|
---|
1411 | /* No change. */
|
---|
1412 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1413 | break;
|
---|
1414 | case kHostUSBDeviceState_UsedByVM:
|
---|
1415 | LogThisFunc(("{%s} %s - changed to HELD_BY_PROXY...\n", mName, i_getStateName()));
|
---|
1416 | break;
|
---|
1417 |
|
---|
1418 | /* Guess we've successfully captured it. */
|
---|
1419 | case kHostUSBDeviceState_Capturing:
|
---|
1420 | LogThisFunc(("{%s} capture succeeded!\n", mName));
|
---|
1421 | mUSBProxyBackend->captureDeviceCompleted(this, true /* aSuccess */);
|
---|
1422 | *aRunFilters = i_advanceTransition(true /* fast forward thru re-attach */);
|
---|
1423 |
|
---|
1424 | /* Take action if we're supposed to attach it to a VM. */
|
---|
1425 | if (mUniState == kHostUSBDeviceState_AttachingToVM)
|
---|
1426 | {
|
---|
1427 | alock.release();
|
---|
1428 | i_attachToVM(mMachine, mCaptureFilename, mMaskedIfs);
|
---|
1429 | alock.acquire();
|
---|
1430 | }
|
---|
1431 | break;
|
---|
1432 |
|
---|
1433 | /* Can only mean that we've failed capturing it. */
|
---|
1434 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
1435 | LogThisFunc(("{%s} %s failed!\n", mName, i_getStateName()));
|
---|
1436 | mUSBProxyBackend->releaseDeviceCompleted(this, false /* aSuccess */);
|
---|
1437 | *aRunFilters = i_setState(kHostUSBDeviceState_HeldByProxy);
|
---|
1438 | break;
|
---|
1439 |
|
---|
1440 | /* These are IPC states and should be left alone. */
|
---|
1441 | case kHostUSBDeviceState_AttachingToVM:
|
---|
1442 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
1443 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
1444 | LogThisFunc(("{%s} %s - changed to HELD_BY_PROXY...\n", mName, i_getStateName()));
|
---|
1445 | break;
|
---|
1446 |
|
---|
1447 | /* Not supposed to happen. */
|
---|
1448 | case kHostUSBDeviceState_Unsupported:
|
---|
1449 | case kHostUSBDeviceState_UsedByHost:
|
---|
1450 | case kHostUSBDeviceState_Capturable:
|
---|
1451 | case kHostUSBDeviceState_Unused:
|
---|
1452 | case kHostUSBDeviceState_PhysDetached:
|
---|
1453 | default:
|
---|
1454 | AssertMsgFailed(("{%s} %s\n", mName, i_getStateName()));
|
---|
1455 | break;
|
---|
1456 | }
|
---|
1457 | break;
|
---|
1458 |
|
---|
1459 | /*
|
---|
1460 | * This is very straight forward and only Darwin implements it.
|
---|
1461 | */
|
---|
1462 | case USBDEVICESTATE_USED_BY_GUEST:
|
---|
1463 | switch (mUniState)
|
---|
1464 | {
|
---|
1465 | /* No change. */
|
---|
1466 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1467 | LogThisFunc(("{%s} %s - changed to USED_BY_GUEST...\n", mName, i_getStateName()));
|
---|
1468 | break;
|
---|
1469 | case kHostUSBDeviceState_UsedByVM:
|
---|
1470 | break;
|
---|
1471 |
|
---|
1472 | /* These are IPC states and should be left alone. */
|
---|
1473 | case kHostUSBDeviceState_AttachingToVM:
|
---|
1474 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
1475 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
1476 | LogThisFunc(("{%s} %s - changed to USED_BY_GUEST...\n", mName, i_getStateName()));
|
---|
1477 | break;
|
---|
1478 |
|
---|
1479 | /* Not supposed to happen. */
|
---|
1480 | case kHostUSBDeviceState_Unsupported:
|
---|
1481 | case kHostUSBDeviceState_Capturable:
|
---|
1482 | case kHostUSBDeviceState_Unused:
|
---|
1483 | case kHostUSBDeviceState_UsedByHost:
|
---|
1484 | case kHostUSBDeviceState_PhysDetached:
|
---|
1485 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
1486 | case kHostUSBDeviceState_Capturing:
|
---|
1487 | default:
|
---|
1488 | AssertMsgFailed(("{%s} %s\n", mName, i_getStateName()));
|
---|
1489 | break;
|
---|
1490 | }
|
---|
1491 | break;
|
---|
1492 |
|
---|
1493 | /*
|
---|
1494 | * This is not supposed to happen and indicates a bug in the backend!
|
---|
1495 | */
|
---|
1496 | case USBDEVICESTATE_UNSUPPORTED:
|
---|
1497 | AssertMsgFailed(("enmOldState=%d {%s} %s\n", enmOldState, mName, i_getStateName()));
|
---|
1498 | break;
|
---|
1499 | default:
|
---|
1500 | AssertMsgFailed(("enmState=%d {%s} %s\n", mUsb->enmState, mName, i_getStateName()));
|
---|
1501 | break;
|
---|
1502 | }
|
---|
1503 | }
|
---|
1504 | else if ( mUniSubState == kHostUSBDeviceSubState_AwaitingDetach
|
---|
1505 | && i_hasAsyncOperationTimedOut())
|
---|
1506 | {
|
---|
1507 | LogRel(("USB: timeout in %s for {%RTuuid} / {%s}\n", i_getStateName(), mId.raw(), mName));
|
---|
1508 | *aRunFilters = i_failTransition(kHostUSBDeviceState_Invalid);
|
---|
1509 | fIsImportant = true;
|
---|
1510 | }
|
---|
1511 | else
|
---|
1512 | {
|
---|
1513 | LogFlowThisFunc(("%p {%s} %s - no change %d\n", this, mName, i_getStateName(), enmOldState));
|
---|
1514 | /** @todo might have to handle some stuff here too if we cannot make the release/capture
|
---|
1515 | * handling deal with that above ... */
|
---|
1516 | }
|
---|
1517 |
|
---|
1518 | return fIsImportant;
|
---|
1519 | }
|
---|
1520 |
|
---|
1521 |
|
---|
1522 | /**
|
---|
1523 | * Updates the state of the device, checking for cases which we fake.
|
---|
1524 | *
|
---|
1525 | * See HostUSBDevice::updateState() for details.
|
---|
1526 | *
|
---|
1527 | * @param[in] aDev See HostUSBDevice::updateState().
|
---|
1528 | * @param[out] aRunFilters See HostUSBDevice::updateState()
|
---|
1529 | * @param[out] aIgnoreMachine See HostUSBDevice::updateState()
|
---|
1530 | *
|
---|
1531 | * @returns See HostUSBDevice::updateState()
|
---|
1532 | */
|
---|
1533 | bool HostUSBDevice::i_updateStateFake(PCUSBDEVICE aDev, bool *aRunFilters, SessionMachine **aIgnoreMachine)
|
---|
1534 | {
|
---|
1535 | Assert(!isWriteLockOnCurrentThread());
|
---|
1536 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
1537 | const HostUSBDeviceState enmState = mUniState;
|
---|
1538 | switch (enmState)
|
---|
1539 | {
|
---|
1540 | case kHostUSBDeviceState_Capturing:
|
---|
1541 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
1542 | {
|
---|
1543 | *aIgnoreMachine = mUniState == kHostUSBDeviceState_ReleasingToHost ? mMachine : NULL;
|
---|
1544 | *aRunFilters = i_advanceTransition();
|
---|
1545 | LogThisFunc(("{%s} %s\n", mName, i_getStateName()));
|
---|
1546 |
|
---|
1547 | if (mUsb != aDev)
|
---|
1548 | {
|
---|
1549 | aDev->pNext = mUsb->pNext;
|
---|
1550 | aDev->pPrev = mUsb->pPrev;
|
---|
1551 | USBProxyBackend::freeDevice(mUsb);
|
---|
1552 | mUsb = aDev;
|
---|
1553 | }
|
---|
1554 |
|
---|
1555 | /* call the completion method */
|
---|
1556 | if (enmState == kHostUSBDeviceState_Capturing)
|
---|
1557 | mUSBProxyBackend->captureDeviceCompleted(this, true /* aSuccess */);
|
---|
1558 | else
|
---|
1559 | mUSBProxyBackend->releaseDeviceCompleted(this, true /* aSuccess */);
|
---|
1560 |
|
---|
1561 | /* Take action if we're supposed to attach it to a VM. */
|
---|
1562 | if (mUniState == kHostUSBDeviceState_AttachingToVM)
|
---|
1563 | {
|
---|
1564 | alock.release();
|
---|
1565 | i_attachToVM(mMachine, mCaptureFilename, mMaskedIfs);
|
---|
1566 | }
|
---|
1567 | return true;
|
---|
1568 | }
|
---|
1569 |
|
---|
1570 | default:
|
---|
1571 | alock.release();
|
---|
1572 | return i_updateState(aDev, aRunFilters, aIgnoreMachine);
|
---|
1573 | }
|
---|
1574 | }
|
---|
1575 |
|
---|
1576 |
|
---|
1577 | /**
|
---|
1578 | * Checks if there is a pending asynchronous operation and whether
|
---|
1579 | * it has timed out or not.
|
---|
1580 | *
|
---|
1581 | * @returns true on timeout, false if not.
|
---|
1582 | *
|
---|
1583 | * @note Caller must have read or write locked the object before calling.
|
---|
1584 | */
|
---|
1585 | bool HostUSBDevice::i_hasAsyncOperationTimedOut() const
|
---|
1586 | {
|
---|
1587 | switch (mUniSubState)
|
---|
1588 | {
|
---|
1589 | #ifndef RT_OS_WINDOWS /* no timeouts on windows yet since I don't have all the details here... */
|
---|
1590 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
1591 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
1592 | {
|
---|
1593 | uint64_t elapsedNanoseconds = RTTimeNanoTS() - mLastStateChangeTS;
|
---|
1594 | return elapsedNanoseconds > UINT64_C(60000000000); /* 60 seconds */ /* PORTME */
|
---|
1595 | }
|
---|
1596 | #endif
|
---|
1597 | default:
|
---|
1598 | return false;
|
---|
1599 | }
|
---|
1600 | }
|
---|
1601 |
|
---|
1602 |
|
---|
1603 | /**
|
---|
1604 | * Translate the state into
|
---|
1605 | *
|
---|
1606 | * @returns
|
---|
1607 | * @param aState
|
---|
1608 | * @param aSubState
|
---|
1609 | * @param aPendingState
|
---|
1610 | */
|
---|
1611 | /*static*/ const char *HostUSBDevice::i_stateName(HostUSBDeviceState aState,
|
---|
1612 | HostUSBDeviceState aPendingState /*= kHostUSBDeviceState_Invalid*/,
|
---|
1613 | HostUSBDeviceSubState aSubState /*= kHostUSBDeviceSubState_Default*/)
|
---|
1614 | {
|
---|
1615 | switch (aState)
|
---|
1616 | {
|
---|
1617 | case kHostUSBDeviceState_Unsupported:
|
---|
1618 | AssertReturn(aPendingState == kHostUSBDeviceState_Invalid, "Unsupported{bad}");
|
---|
1619 | AssertReturn(aSubState == kHostUSBDeviceSubState_Default, "Unsupported[bad]");
|
---|
1620 | return "Unsupported";
|
---|
1621 |
|
---|
1622 | case kHostUSBDeviceState_UsedByHost:
|
---|
1623 | AssertReturn(aPendingState == kHostUSBDeviceState_Invalid, "UsedByHost{bad}");
|
---|
1624 | AssertReturn(aSubState == kHostUSBDeviceSubState_Default, "UsedByHost[bad]");
|
---|
1625 | return "UsedByHost";
|
---|
1626 |
|
---|
1627 | case kHostUSBDeviceState_Capturable:
|
---|
1628 | AssertReturn(aPendingState == kHostUSBDeviceState_Invalid, "Capturable{bad}");
|
---|
1629 | AssertReturn(aSubState == kHostUSBDeviceSubState_Default, "Capturable[bad]");
|
---|
1630 | return "Capturable";
|
---|
1631 |
|
---|
1632 | case kHostUSBDeviceState_Unused:
|
---|
1633 | AssertReturn(aPendingState == kHostUSBDeviceState_Invalid, "Unused{bad}");
|
---|
1634 | AssertReturn(aSubState == kHostUSBDeviceSubState_Default, "Unused[bad]");
|
---|
1635 | return "Unused";
|
---|
1636 |
|
---|
1637 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1638 | AssertReturn(aPendingState == kHostUSBDeviceState_Invalid, "HeldByProxy{bad}");
|
---|
1639 | AssertReturn(aSubState == kHostUSBDeviceSubState_Default, "HeldByProxy[bad]");
|
---|
1640 | return "HeldByProxy";
|
---|
1641 |
|
---|
1642 | case kHostUSBDeviceState_UsedByVM:
|
---|
1643 | AssertReturn(aPendingState == kHostUSBDeviceState_Invalid, "UsedByVM{bad}");
|
---|
1644 | AssertReturn(aSubState == kHostUSBDeviceSubState_Default, "UsedByVM[bad]");
|
---|
1645 | return "UsedByVM";
|
---|
1646 |
|
---|
1647 | case kHostUSBDeviceState_PhysDetached:
|
---|
1648 | AssertReturn(aPendingState == kHostUSBDeviceState_Invalid, "PhysDetached{bad}");
|
---|
1649 | AssertReturn(aSubState == kHostUSBDeviceSubState_Default, "PhysDetached[bad]");
|
---|
1650 | return "PhysDetached";
|
---|
1651 |
|
---|
1652 | case kHostUSBDeviceState_Capturing:
|
---|
1653 | switch (aPendingState)
|
---|
1654 | {
|
---|
1655 | case kHostUSBDeviceState_UsedByVM:
|
---|
1656 | switch (aSubState)
|
---|
1657 | {
|
---|
1658 | case kHostUSBDeviceSubState_Default:
|
---|
1659 | return "CapturingForVM";
|
---|
1660 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
1661 | return "CapturingForVM[Detach]";
|
---|
1662 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
1663 | return "CapturingForVM[Attach]";
|
---|
1664 | default:
|
---|
1665 | AssertFailedReturn("CapturingForVM[bad]");
|
---|
1666 | }
|
---|
1667 | break;
|
---|
1668 |
|
---|
1669 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1670 | switch (aSubState)
|
---|
1671 | {
|
---|
1672 | case kHostUSBDeviceSubState_Default:
|
---|
1673 | return "CapturingForProxy";
|
---|
1674 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
1675 | return "CapturingForProxy[Detach]";
|
---|
1676 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
1677 | return "CapturingForProxy[Attach]";
|
---|
1678 | default:
|
---|
1679 | AssertFailedReturn("CapturingForProxy[bad]");
|
---|
1680 | }
|
---|
1681 | break;
|
---|
1682 |
|
---|
1683 | default:
|
---|
1684 | AssertFailedReturn("Capturing{bad}");
|
---|
1685 | }
|
---|
1686 | break;
|
---|
1687 |
|
---|
1688 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
1689 | switch (aPendingState)
|
---|
1690 | {
|
---|
1691 | case kHostUSBDeviceState_Unused:
|
---|
1692 | switch (aSubState)
|
---|
1693 | {
|
---|
1694 | case kHostUSBDeviceSubState_Default:
|
---|
1695 | return "ReleasingToHost";
|
---|
1696 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
1697 | return "ReleasingToHost[Detach]";
|
---|
1698 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
1699 | return "ReleasingToHost[Attach]";
|
---|
1700 | default:
|
---|
1701 | AssertFailedReturn("ReleasingToHost[bad]");
|
---|
1702 | }
|
---|
1703 | break;
|
---|
1704 | default:
|
---|
1705 | AssertFailedReturn("ReleasingToHost{bad}");
|
---|
1706 | }
|
---|
1707 | break;
|
---|
1708 |
|
---|
1709 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
1710 | switch (aPendingState)
|
---|
1711 | {
|
---|
1712 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1713 | switch (aSubState)
|
---|
1714 | {
|
---|
1715 | case kHostUSBDeviceSubState_Default:
|
---|
1716 | return "DetatchingFromVM>Proxy";
|
---|
1717 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
1718 | return "DetatchingFromVM>Proxy[Detach]";
|
---|
1719 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
1720 | return "DetatchingFromVM>Proxy[Attach]";
|
---|
1721 | default:
|
---|
1722 | AssertFailedReturn("DetatchingFromVM>Proxy[bad]");
|
---|
1723 | }
|
---|
1724 | break;
|
---|
1725 |
|
---|
1726 | case kHostUSBDeviceState_Unused:
|
---|
1727 | switch (aSubState)
|
---|
1728 | {
|
---|
1729 | case kHostUSBDeviceSubState_Default:
|
---|
1730 | return "DetachingFromVM>Host";
|
---|
1731 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
1732 | return "DetachingFromVM>Host[Detach]";
|
---|
1733 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
1734 | return "DetachingFromVM>Host[Attach]";
|
---|
1735 | default:
|
---|
1736 | AssertFailedReturn("DetachingFromVM>Host[bad]");
|
---|
1737 | }
|
---|
1738 | break;
|
---|
1739 |
|
---|
1740 | default:
|
---|
1741 | AssertFailedReturn("DetachingFromVM{bad}");
|
---|
1742 | }
|
---|
1743 | break;
|
---|
1744 |
|
---|
1745 | case kHostUSBDeviceState_AttachingToVM:
|
---|
1746 | switch (aPendingState)
|
---|
1747 | {
|
---|
1748 | case kHostUSBDeviceState_UsedByVM:
|
---|
1749 | switch (aSubState)
|
---|
1750 | {
|
---|
1751 | case kHostUSBDeviceSubState_Default:
|
---|
1752 | return "AttachingToVM";
|
---|
1753 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
1754 | return "AttachingToVM[Detach]";
|
---|
1755 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
1756 | return "AttachingToVM[Attach]";
|
---|
1757 | default:
|
---|
1758 | AssertFailedReturn("AttachingToVM[bad]");
|
---|
1759 | }
|
---|
1760 | break;
|
---|
1761 |
|
---|
1762 | default:
|
---|
1763 | AssertFailedReturn("AttachingToVM{bad}");
|
---|
1764 | }
|
---|
1765 | break;
|
---|
1766 |
|
---|
1767 |
|
---|
1768 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
1769 | switch (aPendingState)
|
---|
1770 | {
|
---|
1771 | case kHostUSBDeviceState_PhysDetached:
|
---|
1772 | switch (aSubState)
|
---|
1773 | {
|
---|
1774 | case kHostUSBDeviceSubState_Default:
|
---|
1775 | return "PhysDetachingFromVM";
|
---|
1776 | default:
|
---|
1777 | AssertFailedReturn("AttachingToVM[bad]");
|
---|
1778 | }
|
---|
1779 | break;
|
---|
1780 |
|
---|
1781 | default:
|
---|
1782 | AssertFailedReturn("AttachingToVM{bad}");
|
---|
1783 | }
|
---|
1784 | break;
|
---|
1785 |
|
---|
1786 | default:
|
---|
1787 | AssertFailedReturn("BadState");
|
---|
1788 |
|
---|
1789 | }
|
---|
1790 | /* not reached */
|
---|
1791 | }
|
---|
1792 |
|
---|
1793 | /**
|
---|
1794 | * Set the device state.
|
---|
1795 | *
|
---|
1796 | * This method will verify that the state transition is a legal one
|
---|
1797 | * according to the statemachine. It will also take care of the
|
---|
1798 | * associated house keeping and determine if filters needs to be applied.
|
---|
1799 | *
|
---|
1800 | * @param aNewState The new state.
|
---|
1801 | * @param aNewPendingState The final state of a transition when applicable.
|
---|
1802 | * @param aNewSubState The new sub-state when applicable.
|
---|
1803 | *
|
---|
1804 | * @returns true if filters should be applied to the device, false if not.
|
---|
1805 | *
|
---|
1806 | * @note The caller must own the write lock for this object.
|
---|
1807 | */
|
---|
1808 | bool HostUSBDevice::i_setState(HostUSBDeviceState aNewState,
|
---|
1809 | HostUSBDeviceState aNewPendingState /*= kHostUSBDeviceState_Invalid*/,
|
---|
1810 | HostUSBDeviceSubState aNewSubState /*= kHostUSBDeviceSubState_Default*/)
|
---|
1811 | {
|
---|
1812 | Assert(isWriteLockOnCurrentThread());
|
---|
1813 | Assert( aNewSubState == kHostUSBDeviceSubState_Default
|
---|
1814 | || aNewSubState == kHostUSBDeviceSubState_AwaitingDetach
|
---|
1815 | || aNewSubState == kHostUSBDeviceSubState_AwaitingReAttach);
|
---|
1816 |
|
---|
1817 | /*
|
---|
1818 | * If the state is unchanged, then don't bother going
|
---|
1819 | * thru the validation and setting. This saves a bit of code.
|
---|
1820 | */
|
---|
1821 | if ( aNewState == mUniState
|
---|
1822 | && aNewPendingState == mPendingUniState
|
---|
1823 | && aNewSubState == mUniSubState)
|
---|
1824 | return false;
|
---|
1825 |
|
---|
1826 | /*
|
---|
1827 | * Welcome to the switch orgies!
|
---|
1828 | * You're welcome to check out the ones in startTransition(),
|
---|
1829 | * advanceTransition(), failTransition() and i_getStateName() too. Enjoy!
|
---|
1830 | */
|
---|
1831 |
|
---|
1832 | bool fFilters = false;
|
---|
1833 | HostUSBDeviceState NewPrevState = mUniState;
|
---|
1834 | switch (mUniState)
|
---|
1835 | {
|
---|
1836 | /*
|
---|
1837 | * Not much can be done with a device in this state.
|
---|
1838 | */
|
---|
1839 | case kHostUSBDeviceState_Unsupported:
|
---|
1840 | switch (aNewState)
|
---|
1841 | {
|
---|
1842 | case kHostUSBDeviceState_PhysDetached:
|
---|
1843 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
1844 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
1845 | break;
|
---|
1846 | default:
|
---|
1847 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1848 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1849 | }
|
---|
1850 | break;
|
---|
1851 |
|
---|
1852 | /*
|
---|
1853 | * Only the host OS (or the user) can make changes
|
---|
1854 | * that'll make a device get out of this state.
|
---|
1855 | */
|
---|
1856 | case kHostUSBDeviceState_UsedByHost:
|
---|
1857 | switch (aNewState)
|
---|
1858 | {
|
---|
1859 | case kHostUSBDeviceState_Capturable:
|
---|
1860 | case kHostUSBDeviceState_Unused:
|
---|
1861 | fFilters = true;
|
---|
1862 | case kHostUSBDeviceState_PhysDetached:
|
---|
1863 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
1864 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
1865 | break;
|
---|
1866 | default:
|
---|
1867 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1868 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1869 | }
|
---|
1870 | break;
|
---|
1871 |
|
---|
1872 | /*
|
---|
1873 | * Now it gets interesting.
|
---|
1874 | */
|
---|
1875 | case kHostUSBDeviceState_Capturable:
|
---|
1876 | switch (aNewState)
|
---|
1877 | {
|
---|
1878 | /* Host changes. */
|
---|
1879 | case kHostUSBDeviceState_Unused:
|
---|
1880 | fFilters = true; /* Wildcard only... */
|
---|
1881 | case kHostUSBDeviceState_UsedByHost:
|
---|
1882 | case kHostUSBDeviceState_PhysDetached:
|
---|
1883 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
1884 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
1885 | break;
|
---|
1886 |
|
---|
1887 | /* VBox actions */
|
---|
1888 | case kHostUSBDeviceState_Capturing:
|
---|
1889 | switch (aNewPendingState)
|
---|
1890 | {
|
---|
1891 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1892 | case kHostUSBDeviceState_UsedByVM:
|
---|
1893 | break;
|
---|
1894 | default:
|
---|
1895 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1896 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1897 | }
|
---|
1898 | break;
|
---|
1899 | default:
|
---|
1900 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1901 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1902 | }
|
---|
1903 | break;
|
---|
1904 |
|
---|
1905 | case kHostUSBDeviceState_Unused:
|
---|
1906 | switch (aNewState)
|
---|
1907 | {
|
---|
1908 | /* Host changes. */
|
---|
1909 | case kHostUSBDeviceState_PhysDetached:
|
---|
1910 | case kHostUSBDeviceState_UsedByHost:
|
---|
1911 | case kHostUSBDeviceState_Capturable:
|
---|
1912 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
1913 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
1914 | break;
|
---|
1915 |
|
---|
1916 | /* VBox actions */
|
---|
1917 | case kHostUSBDeviceState_Capturing:
|
---|
1918 | switch (aNewPendingState)
|
---|
1919 | {
|
---|
1920 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1921 | case kHostUSBDeviceState_UsedByVM:
|
---|
1922 | break;
|
---|
1923 | default:
|
---|
1924 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1925 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1926 | }
|
---|
1927 | break;
|
---|
1928 | default:
|
---|
1929 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1930 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1931 | }
|
---|
1932 | break;
|
---|
1933 |
|
---|
1934 | /*
|
---|
1935 | * VBox owns this device now, what's next...
|
---|
1936 | */
|
---|
1937 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1938 | switch (aNewState)
|
---|
1939 | {
|
---|
1940 | /* Host changes. */
|
---|
1941 | case kHostUSBDeviceState_PhysDetached:
|
---|
1942 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
1943 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
1944 | break;
|
---|
1945 |
|
---|
1946 | /* VBox actions */
|
---|
1947 | case kHostUSBDeviceState_AttachingToVM:
|
---|
1948 | switch (aNewPendingState)
|
---|
1949 | {
|
---|
1950 | case kHostUSBDeviceState_UsedByVM:
|
---|
1951 | break;
|
---|
1952 | default:
|
---|
1953 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1954 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1955 | }
|
---|
1956 | break;
|
---|
1957 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
1958 | switch (aNewPendingState)
|
---|
1959 | {
|
---|
1960 | case kHostUSBDeviceState_Unused: /* Only this! */
|
---|
1961 | break;
|
---|
1962 | default:
|
---|
1963 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1964 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1965 | }
|
---|
1966 | break;
|
---|
1967 | default:
|
---|
1968 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1969 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1970 | }
|
---|
1971 | break;
|
---|
1972 |
|
---|
1973 |
|
---|
1974 | case kHostUSBDeviceState_UsedByVM:
|
---|
1975 | switch (aNewState)
|
---|
1976 | {
|
---|
1977 | /* Host changes. */
|
---|
1978 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
1979 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
1980 | Assert(aNewPendingState == kHostUSBDeviceState_PhysDetached);
|
---|
1981 | break;
|
---|
1982 |
|
---|
1983 | /* VBox actions */
|
---|
1984 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
1985 | switch (aNewPendingState)
|
---|
1986 | {
|
---|
1987 | case kHostUSBDeviceState_HeldByProxy:
|
---|
1988 | case kHostUSBDeviceState_Unused: /* Only this! */
|
---|
1989 | break;
|
---|
1990 | default:
|
---|
1991 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1992 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1993 | }
|
---|
1994 | break;
|
---|
1995 | default:
|
---|
1996 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
1997 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
1998 | }
|
---|
1999 | break;
|
---|
2000 |
|
---|
2001 | /*
|
---|
2002 | * The final state.
|
---|
2003 | */
|
---|
2004 | case kHostUSBDeviceState_PhysDetached:
|
---|
2005 | switch (mUniState)
|
---|
2006 | {
|
---|
2007 | case kHostUSBDeviceState_Unsupported:
|
---|
2008 | case kHostUSBDeviceState_UsedByHost:
|
---|
2009 | case kHostUSBDeviceState_Capturable:
|
---|
2010 | case kHostUSBDeviceState_Unused:
|
---|
2011 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2012 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
2013 | case kHostUSBDeviceState_DetachingFromVM: // ??
|
---|
2014 | case kHostUSBDeviceState_Capturing:
|
---|
2015 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
2016 | break;
|
---|
2017 |
|
---|
2018 | case kHostUSBDeviceState_AttachingToVM: // ??
|
---|
2019 | case kHostUSBDeviceState_UsedByVM:
|
---|
2020 | default:
|
---|
2021 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
2022 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
2023 | }
|
---|
2024 | break;
|
---|
2025 |
|
---|
2026 |
|
---|
2027 | /*
|
---|
2028 | * The transitional states.
|
---|
2029 | */
|
---|
2030 | case kHostUSBDeviceState_Capturing:
|
---|
2031 | NewPrevState = mPrevUniState;
|
---|
2032 | switch (aNewState)
|
---|
2033 | {
|
---|
2034 | /* Sub state advance. */
|
---|
2035 | case kHostUSBDeviceState_Capturing:
|
---|
2036 | switch (aNewSubState)
|
---|
2037 | {
|
---|
2038 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
2039 | Assert(mUniSubState == kHostUSBDeviceSubState_AwaitingDetach);
|
---|
2040 | Assert(aNewPendingState == mPendingUniState);
|
---|
2041 | break;
|
---|
2042 | default:
|
---|
2043 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2044 | }
|
---|
2045 | break;
|
---|
2046 |
|
---|
2047 | /* Host/User/Failure. */
|
---|
2048 | case kHostUSBDeviceState_PhysDetached:
|
---|
2049 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2050 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2051 | break;
|
---|
2052 | case kHostUSBDeviceState_UsedByHost:
|
---|
2053 | case kHostUSBDeviceState_Capturable:
|
---|
2054 | case kHostUSBDeviceState_Unused:
|
---|
2055 | Assert(aNewState == mPrevUniState); /** @todo This is kind of wrong, see i_failTransition. */
|
---|
2056 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2057 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2058 | break;
|
---|
2059 |
|
---|
2060 | /* VBox */
|
---|
2061 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2062 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2063 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2064 | Assert( mPendingUniState == kHostUSBDeviceState_HeldByProxy
|
---|
2065 | || mPendingUniState == kHostUSBDeviceState_UsedByVM /* <- failure */ );
|
---|
2066 | break;
|
---|
2067 | case kHostUSBDeviceState_AttachingToVM:
|
---|
2068 | Assert(aNewPendingState == kHostUSBDeviceState_UsedByVM);
|
---|
2069 | NewPrevState = kHostUSBDeviceState_HeldByProxy;
|
---|
2070 | break;
|
---|
2071 |
|
---|
2072 | default:
|
---|
2073 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
2074 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
2075 | }
|
---|
2076 | break;
|
---|
2077 |
|
---|
2078 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
2079 | Assert(mPrevUniState == kHostUSBDeviceState_HeldByProxy);
|
---|
2080 | NewPrevState = mPrevUniState;
|
---|
2081 | switch (aNewState)
|
---|
2082 | {
|
---|
2083 | /* Sub state advance. */
|
---|
2084 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
2085 | switch (aNewSubState)
|
---|
2086 | {
|
---|
2087 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
2088 | Assert(mUniSubState == kHostUSBDeviceSubState_AwaitingDetach);
|
---|
2089 | Assert(aNewPendingState == mPendingUniState);
|
---|
2090 | break;
|
---|
2091 | default:
|
---|
2092 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2093 | }
|
---|
2094 | break;
|
---|
2095 |
|
---|
2096 | /* Host/Failure. */
|
---|
2097 | case kHostUSBDeviceState_PhysDetached:
|
---|
2098 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2099 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2100 | break;
|
---|
2101 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2102 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2103 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2104 | Assert(mPendingUniState == kHostUSBDeviceState_Unused);
|
---|
2105 | break;
|
---|
2106 |
|
---|
2107 | /* Success */
|
---|
2108 | case kHostUSBDeviceState_UsedByHost:
|
---|
2109 | case kHostUSBDeviceState_Capturable:
|
---|
2110 | case kHostUSBDeviceState_Unused:
|
---|
2111 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2112 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2113 | Assert(mPendingUniState == kHostUSBDeviceState_Unused);
|
---|
2114 | break;
|
---|
2115 |
|
---|
2116 | default:
|
---|
2117 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
2118 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
2119 | }
|
---|
2120 | break;
|
---|
2121 |
|
---|
2122 | case kHostUSBDeviceState_AttachingToVM:
|
---|
2123 | Assert(mPrevUniState == kHostUSBDeviceState_HeldByProxy);
|
---|
2124 | NewPrevState = mPrevUniState;
|
---|
2125 | switch (aNewState)
|
---|
2126 | {
|
---|
2127 | /* Host/Failure. */
|
---|
2128 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
2129 | Assert(aNewPendingState == kHostUSBDeviceState_PhysDetached);
|
---|
2130 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2131 | break;
|
---|
2132 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2133 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2134 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2135 | Assert(mPendingUniState == kHostUSBDeviceState_Unused);
|
---|
2136 | break;
|
---|
2137 |
|
---|
2138 | /* Success */
|
---|
2139 | case kHostUSBDeviceState_UsedByVM:
|
---|
2140 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2141 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2142 | Assert(mPendingUniState == kHostUSBDeviceState_UsedByVM);
|
---|
2143 | break;
|
---|
2144 |
|
---|
2145 | default:
|
---|
2146 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
2147 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
2148 | }
|
---|
2149 | break;
|
---|
2150 |
|
---|
2151 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
2152 | Assert(mPrevUniState == kHostUSBDeviceState_UsedByVM);
|
---|
2153 | NewPrevState = mPrevUniState;
|
---|
2154 | switch (aNewState)
|
---|
2155 | {
|
---|
2156 | /* Host/Failure. */
|
---|
2157 | case kHostUSBDeviceState_PhysDetached: //??
|
---|
2158 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2159 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2160 | break;
|
---|
2161 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
2162 | Assert(aNewPendingState == kHostUSBDeviceState_PhysDetached);
|
---|
2163 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2164 | break;
|
---|
2165 |
|
---|
2166 | /* Success */
|
---|
2167 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2168 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2169 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2170 | Assert(mPendingUniState == kHostUSBDeviceState_HeldByProxy);
|
---|
2171 | fFilters = true;
|
---|
2172 | break;
|
---|
2173 |
|
---|
2174 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
2175 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2176 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2177 | Assert(mPendingUniState == kHostUSBDeviceState_Unused);
|
---|
2178 | NewPrevState = kHostUSBDeviceState_HeldByProxy;
|
---|
2179 | break;
|
---|
2180 |
|
---|
2181 | default:
|
---|
2182 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
2183 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
2184 | }
|
---|
2185 | break;
|
---|
2186 |
|
---|
2187 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
2188 | Assert( mPrevUniState == kHostUSBDeviceState_DetachingFromVM
|
---|
2189 | || mPrevUniState == kHostUSBDeviceState_AttachingToVM
|
---|
2190 | || mPrevUniState == kHostUSBDeviceState_UsedByVM);
|
---|
2191 | NewPrevState = mPrevUniState; /* preserving it is more useful. */
|
---|
2192 | switch (aNewState)
|
---|
2193 | {
|
---|
2194 | case kHostUSBDeviceState_PhysDetached:
|
---|
2195 | Assert(aNewPendingState == kHostUSBDeviceState_Invalid);
|
---|
2196 | Assert(aNewSubState == kHostUSBDeviceSubState_Default);
|
---|
2197 | break;
|
---|
2198 | default:
|
---|
2199 | AssertLogRelMsgFailedReturn(("this=%p %s -X-> %s\n", this, i_getStateName(),
|
---|
2200 | i_stateName(aNewState, aNewPendingState, aNewSubState)), false);
|
---|
2201 | }
|
---|
2202 | break;
|
---|
2203 |
|
---|
2204 | default:
|
---|
2205 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2206 | }
|
---|
2207 |
|
---|
2208 | /*
|
---|
2209 | * Make the state change.
|
---|
2210 | */
|
---|
2211 | if (NewPrevState != mPrevUniState)
|
---|
2212 | LogFlowThisFunc(("%s -> %s (prev: %s -> %s) [%s]\n",
|
---|
2213 | i_getStateName(), i_stateName(aNewState, aNewPendingState, aNewSubState),
|
---|
2214 | i_stateName(mPrevUniState), i_stateName(NewPrevState), mName));
|
---|
2215 | else
|
---|
2216 | LogFlowThisFunc(("%s -> %s (prev: %s) [%s]\n",
|
---|
2217 | i_getStateName(), i_stateName(aNewState, aNewPendingState, aNewSubState),
|
---|
2218 | i_stateName(NewPrevState), mName));
|
---|
2219 | mPrevUniState = NewPrevState;
|
---|
2220 | mUniState = aNewState;
|
---|
2221 | mUniSubState = aNewSubState;
|
---|
2222 | mPendingUniState = aNewPendingState;
|
---|
2223 | mLastStateChangeTS = RTTimeNanoTS();
|
---|
2224 |
|
---|
2225 | return fFilters;
|
---|
2226 | }
|
---|
2227 |
|
---|
2228 |
|
---|
2229 | /**
|
---|
2230 | * A convenience for entering a transitional state.
|
---|
2231 |
|
---|
2232 | * @param aNewState The new state (transitional).
|
---|
2233 | * @param aFinalSubState The final state of the transition (non-transitional).
|
---|
2234 | * @param aNewSubState The new sub-state when applicable.
|
---|
2235 | *
|
---|
2236 | * @returns Always false because filters are never applied for the start of a transition.
|
---|
2237 | *
|
---|
2238 | * @note The caller must own the write lock for this object.
|
---|
2239 | */
|
---|
2240 | bool HostUSBDevice::i_startTransition(HostUSBDeviceState aNewState, HostUSBDeviceState aFinalState,
|
---|
2241 | HostUSBDeviceSubState aNewSubState /*= kHostUSBDeviceSubState_Default*/)
|
---|
2242 | {
|
---|
2243 | AssertReturn(isWriteLockOnCurrentThread(), false);
|
---|
2244 | /*
|
---|
2245 | * A quick prevalidation thing. Not really necessary since setState
|
---|
2246 | * verifies this too, but it's very easy here.
|
---|
2247 | */
|
---|
2248 | switch (mUniState)
|
---|
2249 | {
|
---|
2250 | case kHostUSBDeviceState_Unsupported:
|
---|
2251 | case kHostUSBDeviceState_UsedByHost:
|
---|
2252 | case kHostUSBDeviceState_Capturable:
|
---|
2253 | case kHostUSBDeviceState_Unused:
|
---|
2254 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2255 | case kHostUSBDeviceState_UsedByVM:
|
---|
2256 | break;
|
---|
2257 |
|
---|
2258 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
2259 | case kHostUSBDeviceState_Capturing:
|
---|
2260 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
2261 | case kHostUSBDeviceState_AttachingToVM:
|
---|
2262 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
2263 | AssertMsgFailedReturn(("this=%p %s is a transitional state.\n", this, i_getStateName()), false);
|
---|
2264 |
|
---|
2265 | case kHostUSBDeviceState_PhysDetached:
|
---|
2266 | default:
|
---|
2267 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2268 | }
|
---|
2269 |
|
---|
2270 | return i_setState(aNewState, aFinalState, aNewSubState);
|
---|
2271 | }
|
---|
2272 |
|
---|
2273 |
|
---|
2274 | /**
|
---|
2275 | * A convenience for advancing a transitional state forward.
|
---|
2276 | *
|
---|
2277 | * @param aSkipReAttach Fast forwards thru the re-attach substate if
|
---|
2278 | * applicable.
|
---|
2279 | *
|
---|
2280 | * @returns true if filters should be applied to the device, false if not.
|
---|
2281 | *
|
---|
2282 | * @note The caller must own the write lock for this object.
|
---|
2283 | */
|
---|
2284 | bool HostUSBDevice::i_advanceTransition(bool aSkipReAttach /* = false */)
|
---|
2285 | {
|
---|
2286 | AssertReturn(isWriteLockOnCurrentThread(), false);
|
---|
2287 | HostUSBDeviceState enmPending = mPendingUniState;
|
---|
2288 | HostUSBDeviceSubState enmSub = mUniSubState;
|
---|
2289 | HostUSBDeviceState enmState = mUniState;
|
---|
2290 | switch (enmState)
|
---|
2291 | {
|
---|
2292 | case kHostUSBDeviceState_Capturing:
|
---|
2293 | switch (enmSub)
|
---|
2294 | {
|
---|
2295 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
2296 | enmSub = kHostUSBDeviceSubState_AwaitingReAttach;
|
---|
2297 | break;
|
---|
2298 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
2299 | enmSub = kHostUSBDeviceSubState_Default;
|
---|
2300 | /* fall thru */
|
---|
2301 | case kHostUSBDeviceSubState_Default:
|
---|
2302 | switch (enmPending)
|
---|
2303 | {
|
---|
2304 | case kHostUSBDeviceState_UsedByVM:
|
---|
2305 | enmState = kHostUSBDeviceState_AttachingToVM;
|
---|
2306 | break;
|
---|
2307 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2308 | enmState = enmPending;
|
---|
2309 | enmPending = kHostUSBDeviceState_Invalid;
|
---|
2310 | break;
|
---|
2311 | default:
|
---|
2312 | AssertMsgFailedReturn(("this=%p invalid pending state %d: %s\n",
|
---|
2313 | this, enmPending, i_getStateName()), false);
|
---|
2314 | }
|
---|
2315 | break;
|
---|
2316 | default:
|
---|
2317 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2318 | }
|
---|
2319 | break;
|
---|
2320 |
|
---|
2321 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
2322 | switch (enmSub)
|
---|
2323 | {
|
---|
2324 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
2325 | enmSub = kHostUSBDeviceSubState_AwaitingReAttach;
|
---|
2326 | break;
|
---|
2327 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
2328 | enmSub = kHostUSBDeviceSubState_Default;
|
---|
2329 | /* fall thru */
|
---|
2330 | case kHostUSBDeviceSubState_Default:
|
---|
2331 | switch (enmPending)
|
---|
2332 | {
|
---|
2333 | /* Use Unused here since it implies that filters has been applied
|
---|
2334 | and will make sure they aren't applied if the final state really
|
---|
2335 | is Capturable. */
|
---|
2336 | case kHostUSBDeviceState_Unused:
|
---|
2337 | enmState = enmPending;
|
---|
2338 | enmPending = kHostUSBDeviceState_Invalid;
|
---|
2339 | break;
|
---|
2340 | default:
|
---|
2341 | AssertMsgFailedReturn(("this=%p invalid pending state %d: %s\n",
|
---|
2342 | this, enmPending, i_getStateName()), false);
|
---|
2343 | }
|
---|
2344 | break;
|
---|
2345 | default:
|
---|
2346 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2347 | }
|
---|
2348 | break;
|
---|
2349 |
|
---|
2350 | case kHostUSBDeviceState_AttachingToVM:
|
---|
2351 | switch (enmSub)
|
---|
2352 | {
|
---|
2353 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
2354 | enmSub = kHostUSBDeviceSubState_AwaitingReAttach;
|
---|
2355 | break;
|
---|
2356 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
2357 | enmSub = kHostUSBDeviceSubState_Default;
|
---|
2358 | /* fall thru */
|
---|
2359 | case kHostUSBDeviceSubState_Default:
|
---|
2360 | switch (enmPending)
|
---|
2361 | {
|
---|
2362 | case kHostUSBDeviceState_UsedByVM:
|
---|
2363 | enmState = enmPending;
|
---|
2364 | enmPending = kHostUSBDeviceState_Invalid;
|
---|
2365 | break;
|
---|
2366 | default:
|
---|
2367 | AssertMsgFailedReturn(("this=%p invalid pending state %d: %s\n",
|
---|
2368 | this, enmPending, i_getStateName()), false);
|
---|
2369 | }
|
---|
2370 | break;
|
---|
2371 | default:
|
---|
2372 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2373 | }
|
---|
2374 | break;
|
---|
2375 |
|
---|
2376 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
2377 | switch (enmSub)
|
---|
2378 | {
|
---|
2379 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
2380 | enmSub = kHostUSBDeviceSubState_AwaitingReAttach;
|
---|
2381 | break;
|
---|
2382 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
2383 | enmSub = kHostUSBDeviceSubState_Default;
|
---|
2384 | /* fall thru */
|
---|
2385 | case kHostUSBDeviceSubState_Default:
|
---|
2386 | switch (enmPending)
|
---|
2387 | {
|
---|
2388 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2389 | enmState = enmPending;
|
---|
2390 | enmPending = kHostUSBDeviceState_Invalid;
|
---|
2391 | break;
|
---|
2392 | case kHostUSBDeviceState_Unused:
|
---|
2393 | enmState = kHostUSBDeviceState_ReleasingToHost;
|
---|
2394 | break;
|
---|
2395 | default:
|
---|
2396 | AssertMsgFailedReturn(("this=%p invalid pending state %d: %s\n",
|
---|
2397 | this, enmPending, i_getStateName()), false);
|
---|
2398 | }
|
---|
2399 | break;
|
---|
2400 | default:
|
---|
2401 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2402 | }
|
---|
2403 | break;
|
---|
2404 |
|
---|
2405 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
2406 | switch (enmSub)
|
---|
2407 | {
|
---|
2408 | case kHostUSBDeviceSubState_Default:
|
---|
2409 | switch (enmPending)
|
---|
2410 | {
|
---|
2411 | case kHostUSBDeviceState_PhysDetached:
|
---|
2412 | enmState = enmPending;
|
---|
2413 | enmPending = kHostUSBDeviceState_Invalid;
|
---|
2414 | break;
|
---|
2415 | default:
|
---|
2416 | AssertMsgFailedReturn(("this=%p invalid pending state %d: %s\n",
|
---|
2417 | this, enmPending, i_getStateName()), false);
|
---|
2418 | }
|
---|
2419 | break;
|
---|
2420 | default:
|
---|
2421 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2422 | }
|
---|
2423 | break;
|
---|
2424 |
|
---|
2425 | case kHostUSBDeviceState_Unsupported:
|
---|
2426 | case kHostUSBDeviceState_UsedByHost:
|
---|
2427 | case kHostUSBDeviceState_Capturable:
|
---|
2428 | case kHostUSBDeviceState_Unused:
|
---|
2429 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2430 | case kHostUSBDeviceState_UsedByVM:
|
---|
2431 | AssertMsgFailedReturn(("this=%p %s is not transitional\n", this, i_getStateName()), false);
|
---|
2432 | case kHostUSBDeviceState_PhysDetached:
|
---|
2433 | default:
|
---|
2434 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, enmState), false);
|
---|
2435 |
|
---|
2436 | }
|
---|
2437 |
|
---|
2438 | bool fRc = i_setState(enmState, enmPending, enmSub);
|
---|
2439 | if (aSkipReAttach && mUniSubState == kHostUSBDeviceSubState_AwaitingReAttach)
|
---|
2440 | fRc |= i_advanceTransition(false /* don't fast forward re-attach */);
|
---|
2441 | return fRc;
|
---|
2442 | }
|
---|
2443 |
|
---|
2444 | /**
|
---|
2445 | * A convenience for failing a transitional state.
|
---|
2446 | *
|
---|
2447 | * @return true if filters should be applied to the device, false if not.
|
---|
2448 | * @param a_enmStateHint USB device state hint. kHostUSBDeviceState_Invalid
|
---|
2449 | * if the caller doesn't have a clue to give.
|
---|
2450 | *
|
---|
2451 | * @note The caller must own the write lock for this object.
|
---|
2452 | */
|
---|
2453 | bool HostUSBDevice::i_failTransition(HostUSBDeviceState a_enmStateHint)
|
---|
2454 | {
|
---|
2455 | AssertReturn(isWriteLockOnCurrentThread(), false);
|
---|
2456 | HostUSBDeviceSubState enmSub = mUniSubState;
|
---|
2457 | HostUSBDeviceState enmState = mUniState;
|
---|
2458 | switch (enmState)
|
---|
2459 | {
|
---|
2460 | /*
|
---|
2461 | * There are just two cases, either we got back to the
|
---|
2462 | * previous state (assumes Capture+Attach-To-VM updates it)
|
---|
2463 | * or we assume the device has been unplugged (physically).
|
---|
2464 | */
|
---|
2465 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
2466 | case kHostUSBDeviceState_Capturing:
|
---|
2467 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
2468 | case kHostUSBDeviceState_AttachingToVM:
|
---|
2469 | switch (enmSub)
|
---|
2470 | {
|
---|
2471 | case kHostUSBDeviceSubState_AwaitingDetach:
|
---|
2472 | enmSub = kHostUSBDeviceSubState_Default;
|
---|
2473 | /* fall thru */
|
---|
2474 | case kHostUSBDeviceSubState_Default:
|
---|
2475 | enmState = mPrevUniState;
|
---|
2476 | break;
|
---|
2477 | case kHostUSBDeviceSubState_AwaitingReAttach:
|
---|
2478 | enmSub = kHostUSBDeviceSubState_Default;
|
---|
2479 | if (a_enmStateHint != kHostUSBDeviceState_Invalid)
|
---|
2480 | enmState = mPrevUniState; /** @todo enmState = a_enmStateHint is more correct, but i_setState doesn't like it. It will usually correct itself shortly. */
|
---|
2481 | else
|
---|
2482 | enmState = kHostUSBDeviceState_PhysDetached;
|
---|
2483 | break;
|
---|
2484 | default:
|
---|
2485 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2486 | }
|
---|
2487 | break;
|
---|
2488 |
|
---|
2489 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
2490 | AssertMsgFailedReturn(("this=%p %s shall not fail\n", this, i_getStateName()), false);
|
---|
2491 |
|
---|
2492 | case kHostUSBDeviceState_Unsupported:
|
---|
2493 | case kHostUSBDeviceState_UsedByHost:
|
---|
2494 | case kHostUSBDeviceState_Capturable:
|
---|
2495 | case kHostUSBDeviceState_Unused:
|
---|
2496 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2497 | case kHostUSBDeviceState_UsedByVM:
|
---|
2498 | AssertMsgFailedReturn(("this=%p %s is not transitional\n", this, i_getStateName()), false);
|
---|
2499 | case kHostUSBDeviceState_PhysDetached:
|
---|
2500 | default:
|
---|
2501 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), false);
|
---|
2502 |
|
---|
2503 | }
|
---|
2504 |
|
---|
2505 | return i_setState(enmState, kHostUSBDeviceState_Invalid, enmSub);
|
---|
2506 | }
|
---|
2507 |
|
---|
2508 |
|
---|
2509 | /**
|
---|
2510 | * Determines the canonical state of the device.
|
---|
2511 | *
|
---|
2512 | * @returns canonical state.
|
---|
2513 | *
|
---|
2514 | * @note The caller must own the read (or write) lock for this object.
|
---|
2515 | */
|
---|
2516 | USBDeviceState_T HostUSBDevice::i_canonicalState() const
|
---|
2517 | {
|
---|
2518 | switch (mUniState)
|
---|
2519 | {
|
---|
2520 | /*
|
---|
2521 | * Straight forward.
|
---|
2522 | */
|
---|
2523 | case kHostUSBDeviceState_Unsupported:
|
---|
2524 | return USBDeviceState_NotSupported;
|
---|
2525 |
|
---|
2526 | case kHostUSBDeviceState_UsedByHost:
|
---|
2527 | return USBDeviceState_Unavailable;
|
---|
2528 |
|
---|
2529 | case kHostUSBDeviceState_Capturable:
|
---|
2530 | return USBDeviceState_Busy;
|
---|
2531 |
|
---|
2532 | case kHostUSBDeviceState_Unused:
|
---|
2533 | return USBDeviceState_Available;
|
---|
2534 |
|
---|
2535 | case kHostUSBDeviceState_HeldByProxy:
|
---|
2536 | return USBDeviceState_Held;
|
---|
2537 |
|
---|
2538 | case kHostUSBDeviceState_UsedByVM:
|
---|
2539 | return USBDeviceState_Captured;
|
---|
2540 |
|
---|
2541 | /*
|
---|
2542 | * Pretend we've reached the final state.
|
---|
2543 | */
|
---|
2544 | case kHostUSBDeviceState_Capturing:
|
---|
2545 | Assert( mPendingUniState == kHostUSBDeviceState_UsedByVM
|
---|
2546 | || mPendingUniState == kHostUSBDeviceState_HeldByProxy);
|
---|
2547 | return mPendingUniState == kHostUSBDeviceState_UsedByVM
|
---|
2548 | ? (USBDeviceState_T)USBDeviceState_Captured
|
---|
2549 | : (USBDeviceState_T)USBDeviceState_Held;
|
---|
2550 | /* The cast ^^^^ is because xidl is using different enums for
|
---|
2551 | each of the values. *Very* nice idea... :-) */
|
---|
2552 |
|
---|
2553 | case kHostUSBDeviceState_AttachingToVM:
|
---|
2554 | return USBDeviceState_Captured;
|
---|
2555 |
|
---|
2556 | /*
|
---|
2557 | * Return the previous state.
|
---|
2558 | */
|
---|
2559 | case kHostUSBDeviceState_ReleasingToHost:
|
---|
2560 | Assert( mPrevUniState == kHostUSBDeviceState_UsedByVM
|
---|
2561 | || mPrevUniState == kHostUSBDeviceState_HeldByProxy);
|
---|
2562 | return mPrevUniState == kHostUSBDeviceState_UsedByVM
|
---|
2563 | ? (USBDeviceState_T)USBDeviceState_Captured
|
---|
2564 | : (USBDeviceState_T)USBDeviceState_Held;
|
---|
2565 | /* The cast ^^^^ is because xidl is using different enums for
|
---|
2566 | each of the values. *Very* nice idea... :-) */
|
---|
2567 |
|
---|
2568 | case kHostUSBDeviceState_DetachingFromVM:
|
---|
2569 | return USBDeviceState_Captured;
|
---|
2570 | case kHostUSBDeviceState_PhysDetachingFromVM:
|
---|
2571 | return USBDeviceState_Captured;
|
---|
2572 |
|
---|
2573 | case kHostUSBDeviceState_PhysDetached:
|
---|
2574 | default:
|
---|
2575 | AssertReleaseMsgFailedReturn(("this=%p mUniState=%d\n", this, mUniState), USBDeviceState_NotSupported);
|
---|
2576 | }
|
---|
2577 | /* won't ever get here. */
|
---|
2578 | }
|
---|
2579 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|