VirtualBox

source: vbox/trunk/src/VBox/Main/USBProxyService.cpp@ 1

Last change on this file since 1 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.0 KB
Line 
1/** @file
2 * VirtualBox USB Proxy Service (base) class.
3 */
4
5/*
6 * Copyright (C) 2006 InnoTek Systemberatung GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * If you received this file as part of a commercial VirtualBox
17 * distribution, then only the terms of your commercial VirtualBox
18 * license agreement apply instead of the previous paragraph.
19 */
20
21#include "USBProxyService.h"
22#include "Logging.h"
23
24#include <VBox/err.h>
25#include <iprt/asm.h>
26#include <iprt/semaphore.h>
27
28
29
30/** @todo add the required locking. */
31
32/**
33 * Initialize data members.
34 */
35USBProxyService::USBProxyService (Host *aHost)
36 : mHost (aHost), mThread (NIL_RTTHREAD), mTerminate (false), mDevices (), mLastError (VINF_SUCCESS)
37{
38 LogFlowMember (("USBProxyService::USBProxyService: aHost=%p\n", aHost));
39}
40
41
42/**
43 * Empty destructor.
44 */
45USBProxyService::~USBProxyService()
46{
47 LogFlowMember (("USBProxyService::~USBProxyService: \n"));
48 Assert (mThread == NIL_RTTHREAD);
49 mDevices.clear();
50 mTerminate = true;
51 mHost = NULL;
52}
53
54
55bool USBProxyService::isActive (void)
56{
57 return mThread != NIL_RTTHREAD;
58}
59
60
61int USBProxyService::getLastError (void)
62{
63 return mLastError;
64}
65
66
67int USBProxyService::start (void)
68{
69 int rc = VINF_SUCCESS;
70 if (mThread == NIL_RTTHREAD)
71 {
72 /*
73 * Force update before starting the poller thread.
74 */
75 wait (0);
76 processChanges ();
77
78 /*
79 * Create the poller thread which will look for changes.
80 */
81 mTerminate = false;
82 rc = RTThreadCreate (&mThread, USBProxyService::serviceThread, this,
83 0, RTTHREADTYPE_INFREQUENT_POLLER, RTTHREADFLAGS_WAITABLE, "USBPROXY");
84 AssertRC (rc);
85 if (VBOX_SUCCESS (rc))
86 LogFlow (("USBProxyService::start: started mThread=%RTthrd\n", mThread));
87 else
88 {
89 mThread = NIL_RTTHREAD;
90 mLastError = rc;
91 }
92 }
93 else
94 LogFlow (("USBProxyService::start: already running, mThread=%RTthrd\n", mThread));
95 return rc;
96}
97
98
99int USBProxyService::stop (void)
100{
101 int rc = VINF_SUCCESS;
102 if (mThread != NIL_RTTHREAD)
103 {
104 /*
105 * Mark the thread for termination and kick it.
106 */
107 ASMAtomicXchgSize (&mTerminate, true);
108 rc = interruptWait();
109 AssertRC (rc);
110
111 /*
112 * Wait for the thread to finish and then update the state.
113 */
114 rc = RTThreadWait (mThread, 60000, NULL);
115 if (rc == VERR_INVALID_HANDLE)
116 rc = VINF_SUCCESS;
117 if (VBOX_SUCCESS (rc))
118 {
119 LogFlowMember (("USBProxyService::stop: stopped mThread=%RTthrd\n", mThread));
120 mThread = NIL_RTTHREAD;
121 mTerminate = false;
122 }
123 else
124 {
125 AssertRC (rc);
126 mLastError = rc;
127 }
128 }
129 else
130 LogFlowMember (("USBProxyService::stop: not active\n"));
131
132 return rc;
133}
134
135
136/**
137 * Sort a list of USB devices.
138 *
139 * @returns Pointer to the head of the sorted doubly linked list.
140 * @param aDevices Head pointer (can be both singly and doubly linked list).
141 */
142static PUSBDEVICE sortDevices (PUSBDEVICE pDevices)
143{
144 PUSBDEVICE pHead = NULL;
145 PUSBDEVICE pTail = NULL;
146 while (pDevices)
147 {
148 /* unlink head */
149 PUSBDEVICE pDev = pDevices;
150 pDevices = pDev->pNext;
151 if (pDevices)
152 pDevices->pPrev = NULL;
153
154 /* find location. */
155 PUSBDEVICE pCur = pTail;
156 while ( pCur
157 && HostUSBDevice::compare (pCur, pDev) > 0)
158 pCur = pCur->pPrev;
159
160 /* insert (after pCur) */
161 pDev->pPrev = pCur;
162 if (pCur)
163 {
164 pDev->pNext = pCur->pNext;
165 pCur->pNext = pDev;
166 if (pDev->pNext)
167 pDev->pNext->pPrev = pDev;
168 else
169 pTail = pDev;
170 }
171 else
172 {
173 pDev->pNext = pHead;
174 if (pHead)
175 pHead->pPrev = pDev;
176 else
177 pTail = pDev;
178 pHead = pDev;
179 }
180 }
181
182 return pHead;
183}
184
185
186void USBProxyService::processChanges (void)
187{
188 LogFlowMember (("USBProxyService::processChanges: \n"));
189
190 /*
191 * Get the sorted list of USB devices.
192 */
193 PUSBDEVICE pDevices = getDevices();
194 if (pDevices)
195 {
196 pDevices = sortDevices (pDevices);
197
198 /*
199 * Compare previous list with the previous list of devices
200 * and merge in any changes while notifying Host.
201 */
202 HostUSBDeviceList::iterator It = this->mDevices.begin();
203 while ( It != mDevices.end()
204 || pDevices)
205 {
206 /*
207 * Compare.
208 */
209 ComObjPtr <HostUSBDevice> DevPtr;
210 int iDiff;
211 if (It == mDevices.end())
212 iDiff = 1;
213 else
214 {
215 DevPtr = *It;
216 if (!pDevices)
217 iDiff = -1;
218 else
219 iDiff = DevPtr->compare (pDevices);
220 }
221 if (!iDiff)
222 {
223 /*
224 * Device still there, update the state and move on.
225 */
226 if (DevPtr->updateState (pDevices))
227 mHost->onUSBDeviceStateChanged (DevPtr);
228 It++;
229 PUSBDEVICE pFree = pDevices;
230 pDevices = pDevices->pNext; /* treated as singly linked */
231 freeDevice (pFree);
232 /** @todo detect status changes! */
233 }
234 else
235 {
236 if (iDiff > 0)
237 {
238 /*
239 * Head of pDevices was attached.
240 */
241 PUSBDEVICE pNew = pDevices;
242 pDevices = pDevices->pNext;
243 pNew->pPrev = pNew->pNext = NULL;
244
245 ComObjPtr <HostUSBDevice> NewObj;
246 NewObj.createObject();
247 NewObj->init (pNew, this);
248 Log (("USBProxyService::processChanges: attached %p/%p:{.idVendor=%#06x, .idProduct=%#06x, .pszProduct=\"%s\", .pszManufacturer=\"%s\"}\n",
249 (HostUSBDevice *)NewObj, pNew, pNew->idVendor, pNew->idProduct, pNew->pszProduct, pNew->pszManufacturer));
250
251 mDevices.insert (It, NewObj);
252 mHost->onUSBDeviceAttached (NewObj);
253 }
254 else
255 {
256 /*
257 * DevPtr was detached.
258 */
259 It = mDevices.erase (It);
260 mHost->onUSBDeviceDetached (DevPtr);
261 Log (("USBProxyService::processChanges: detached %p\n", (HostUSBDevice *)DevPtr)); /** @todo add details .*/
262 }
263 }
264 } /* while */
265 }
266 else
267 {
268 /* All devices were detached */
269 HostUSBDeviceList::iterator It = this->mDevices.begin();
270 while (It != mDevices.end())
271 {
272 ComObjPtr <HostUSBDevice> DevPtr = *It;
273 /*
274 * DevPtr was detached.
275 */
276 It = mDevices.erase (It);
277 mHost->onUSBDeviceDetached (DevPtr);
278 Log (("USBProxyService::processChanges: detached %p\n", (HostUSBDevice *)DevPtr)); /** @todo add details .*/
279 }
280 }
281
282 LogFlowMember (("USBProxyService::processChanges: returns void\n"));
283}
284
285
286/*static*/ DECLCALLBACK (int) USBProxyService::serviceThread (RTTHREAD Thread, void *pvUser)
287{
288 USBProxyService *pThis = (USBProxyService *)pvUser;
289 LogFlow (("USBProxyService::serviceThread: pThis=%p\n", pThis));
290
291 /*
292 * Processing loop.
293 */
294 for (;;)
295 {
296 pThis->wait (RT_INDEFINITE_WAIT);
297 if (pThis->mTerminate)
298 break;
299 pThis->processChanges();
300 }
301
302 LogFlow (("USBProxyService::serviceThread: returns VINF_SUCCESS\n"));
303 return VINF_SUCCESS;
304}
305
306
307/*static*/ void USBProxyService::freeDevice (PUSBDEVICE pDevice)
308{
309 PUSBCONFIG pCfg = pDevice->paConfigurations;
310 unsigned cCfgs = pDevice->bNumConfigurations;
311 while (cCfgs-- > 0)
312 {
313 PUSBINTERFACE pIf = pCfg->paInterfaces;
314 unsigned cIfs = pCfg->bNumInterfaces;
315 while (cIfs-- > 0)
316 {
317 RTMemFree (pIf->paEndpoints);
318 pIf->paEndpoints = NULL;
319 RTStrFree ((char *)pIf->pszDriver);
320 pIf->pszDriver = NULL;
321 RTStrFree ((char *)pIf->pszInterface);
322 pIf->pszInterface = NULL;
323 /* next */
324 pIf++;
325 }
326 RTMemFree (pCfg->paInterfaces);
327 pCfg->paInterfaces = NULL;
328 RTStrFree ((char *)pCfg->pszConfiguration);
329 pCfg->pszConfiguration = NULL;
330
331 /* next */
332 pCfg++;
333 }
334 RTMemFree (pDevice->paConfigurations);
335 pDevice->paConfigurations = NULL;
336
337 RTStrFree ((char *)pDevice->pszManufacturer);
338 pDevice->pszManufacturer = NULL;
339 RTStrFree ((char *)pDevice->pszProduct);
340 pDevice->pszProduct = NULL;
341 RTStrFree ((char *)pDevice->pszSerialNumber);
342 pDevice->pszSerialNumber = NULL;
343
344 RTStrFree ((char *)pDevice->pszAddress);
345 pDevice->pszAddress = NULL;
346
347 RTMemFree (pDevice);
348
349}
350
351
352/* static */ uint64_t USBProxyService::calcSerialHash (const char *aSerial)
353{
354 if (!aSerial)
355 aSerial = "";
356
357 register const uint8_t *pu8 = (const uint8_t *)aSerial;
358 register uint64_t u64 = 14695981039346656037ULL;
359 for (;;)
360 {
361 register uint8_t u8 = *pu8;
362 if (!u8)
363 break;
364 u64 = (u64 * 1099511628211ULL) ^ u8;
365 pu8++;
366 }
367
368 return u64;
369}
370
371
372
373/* Stubs which the host specific classes overrides: */
374
375
376int USBProxyService::wait (unsigned aMillies)
377{
378 return RTThreadSleep (250);
379}
380
381
382int USBProxyService::interruptWait (void)
383{
384 return VERR_NOT_IMPLEMENTED;
385}
386
387
388PUSBDEVICE USBProxyService::getDevices (void)
389{
390 return NULL;
391}
392
393/**
394 * The default implementation returns non-NULL to emulate successful insertions
395 * for those subclasses that don't reimplement this method.
396 */
397void *USBProxyService::insertFilter (IUSBDeviceFilter * /* aFilter */)
398{
399 // return non-NULL to prevent failed assertions in Main
400 return (void *) 1;
401}
402
403
404void USBProxyService::removeFilter (void * /* aID */)
405{
406}
407
408
409int USBProxyService::captureDevice (HostUSBDevice *pDevice)
410{
411 return VERR_NOT_IMPLEMENTED;
412}
413
414
415int USBProxyService::holdDevice (HostUSBDevice *pDevice)
416{
417 return VERR_NOT_IMPLEMENTED;
418}
419
420
421int USBProxyService::releaseDevice (HostUSBDevice *pDevice)
422{
423 return VERR_NOT_IMPLEMENTED;
424}
425
426
427int USBProxyService::resetDevice (HostUSBDevice *pDevice)
428{
429 return VERR_NOT_IMPLEMENTED;
430}
431
Note: See TracBrowser for help on using the repository browser.

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