VirtualBox

source: vbox/trunk/src/VBox/Devices/USB/VUSBDevice.cpp@ 60404

Last change on this file since 60404 was 59859, checked in by vboxsync, 8 years ago

gcc asan fix (don't call memcpy with a NULL parameter even if cb=0)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 60.1 KB
Line 
1/* $Id: VUSBDevice.cpp 59859 2016-02-26 18:00:42Z vboxsync $ */
2/** @file
3 * Virtual USB - Device.
4 */
5
6/*
7 * Copyright (C) 2006-2015 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/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#define LOG_GROUP LOG_GROUP_DRV_VUSB
23#include <VBox/vmm/pdm.h>
24#include <VBox/vmm/vmapi.h>
25#include <VBox/err.h>
26#include <VBox/log.h>
27#include <iprt/alloc.h>
28#include <iprt/time.h>
29#include <iprt/thread.h>
30#include <iprt/semaphore.h>
31#include <iprt/string.h>
32#include <iprt/assert.h>
33#include <iprt/asm.h>
34#include "VUSBInternal.h"
35
36#include "VUSBSniffer.h"
37
38
39/*********************************************************************************************************************************
40* Structures and Typedefs *
41*********************************************************************************************************************************/
42/**
43 * Argument package of vusbDevResetThread().
44 */
45typedef struct vusb_reset_args
46{
47 /** Pointer to the device which is being reset. */
48 PVUSBDEV pDev;
49 /** The reset return code. */
50 int rc;
51 /** Pointer to the completion callback. */
52 PFNVUSBRESETDONE pfnDone;
53 /** User argument to pfnDone. */
54 void *pvUser;
55} VUSBRESETARGS, *PVUSBRESETARGS;
56
57
58/*********************************************************************************************************************************
59* Global Variables *
60*********************************************************************************************************************************/
61/** Default message pipe. */
62const VUSBDESCENDPOINTEX g_Endpoint0 =
63{
64 {
65 /* .bLength = */ VUSB_DT_ENDPOINT_MIN_LEN,
66 /* .bDescriptorType = */ VUSB_DT_ENDPOINT,
67 /* .bEndpointAddress = */ 0,
68 /* .bmAttributes = */ 0,
69 /* .wMaxPacketSize = */ 64,
70 /* .bInterval = */ 0
71 },
72 NULL
73};
74
75/** Default configuration. */
76const VUSBDESCCONFIGEX g_Config0 =
77{
78 {
79 /* .bLength = */ VUSB_DT_CONFIG_MIN_LEN,
80 /* .bDescriptorType = */ VUSB_DT_CONFIG,
81 /* .WTotalLength = */ 0, /* (auto-calculated) */
82 /* .bNumInterfaces = */ 0,
83 /* .bConfigurationValue =*/ 0,
84 /* .iConfiguration = */ 0,
85 /* .bmAttributes = */ 0x80,
86 /* .MaxPower = */ 14
87 },
88 NULL,
89 NULL
90};
91
92
93
94static PCVUSBDESCCONFIGEX vusbDevFindCfgDesc(PVUSBDEV pDev, int iCfg)
95{
96 if (iCfg == 0)
97 return &g_Config0;
98
99 for (unsigned i = 0; i < pDev->pDescCache->pDevice->bNumConfigurations; i++)
100 if (pDev->pDescCache->paConfigs[i].Core.bConfigurationValue == iCfg)
101 return &pDev->pDescCache->paConfigs[i];
102 return NULL;
103}
104
105static PVUSBINTERFACESTATE vusbDevFindIfState(PVUSBDEV pDev, int iIf)
106{
107 for (unsigned i = 0; i < pDev->pCurCfgDesc->Core.bNumInterfaces; i++)
108 if (pDev->paIfStates[i].pIf->paSettings[0].Core.bInterfaceNumber == iIf)
109 return &pDev->paIfStates[i];
110 return NULL;
111}
112
113static PCVUSBDESCINTERFACEEX vusbDevFindAltIfDesc(PVUSBDEV pDev, PCVUSBINTERFACESTATE pIfState, int iAlt)
114{
115 for (uint32_t i = 0; i < pIfState->pIf->cSettings; i++)
116 if (pIfState->pIf->paSettings[i].Core.bAlternateSetting == iAlt)
117 return &pIfState->pIf->paSettings[i];
118 return NULL;
119}
120
121void vusbDevMapEndpoint(PVUSBDEV pDev, PCVUSBDESCENDPOINTEX pEndPtDesc)
122{
123 uint8_t i8Addr = pEndPtDesc->Core.bEndpointAddress & 0xF;
124 PVUSBPIPE pPipe = &pDev->aPipes[i8Addr];
125 LogFlow(("vusbDevMapEndpoint: pDev=%p[%s] pEndPtDesc=%p{.bEndpointAddress=%#x, .bmAttributes=%#x} p=%p stage %s->SETUP\n",
126 pDev, pDev->pUsbIns->pszName, pEndPtDesc, pEndPtDesc->Core.bEndpointAddress, pEndPtDesc->Core.bmAttributes,
127 pPipe, g_apszCtlStates[pPipe->pCtrl ? pPipe->pCtrl->enmStage : 3]));
128
129 if ((pEndPtDesc->Core.bmAttributes & 0x3) == 0)
130 {
131 Log(("vusb: map message pipe on address %u\n", i8Addr));
132 pPipe->in = pEndPtDesc;
133 pPipe->out = pEndPtDesc;
134 }
135 else if (pEndPtDesc->Core.bEndpointAddress & 0x80)
136 {
137 Log(("vusb: map input pipe on address %u\n", i8Addr));
138 pPipe->in = pEndPtDesc;
139 }
140 else
141 {
142 Log(("vusb: map output pipe on address %u\n", i8Addr));
143 pPipe->out = pEndPtDesc;
144
145#if 0
146 if ((pEndPtDesc->Core.bmAttributes & 0x03) == 1)
147 {
148 int rc = vusbBufferedPipeCreate(pDev, pPipe, VUSBDIRECTION_OUT, pDev->pUsbIns->enmSpeed,
149 32 /* cLatencyMs*/, &pPipe->hBuffer);
150 if (RT_SUCCESS(rc))
151 LogRel(("VUSB: Created a buffered pipe for isochronous output endpoint\n"));
152 else
153 LogRel(("VUSB: Failed to create a buffered pipe for isochronous output endpoint with rc=%Rrc\n", rc));
154 }
155#endif
156 }
157
158 if (pPipe->pCtrl)
159 {
160 vusbMsgFreeExtraData(pPipe->pCtrl);
161 pPipe->pCtrl = NULL;
162 }
163}
164
165static void unmap_endpoint(PVUSBDEV pDev, PCVUSBDESCENDPOINTEX pEndPtDesc)
166{
167 uint8_t EndPt = pEndPtDesc->Core.bEndpointAddress & 0xF;
168 PVUSBPIPE pPipe = &pDev->aPipes[EndPt];
169 LogFlow(("unmap_endpoint: pDev=%p[%s] pEndPtDesc=%p{.bEndpointAddress=%#x, .bmAttributes=%#x} p=%p stage %s->SETUP\n",
170 pDev, pDev->pUsbIns->pszName, pEndPtDesc, pEndPtDesc->Core.bEndpointAddress, pEndPtDesc->Core.bmAttributes,
171 pPipe, g_apszCtlStates[pPipe->pCtrl ? pPipe->pCtrl->enmStage : 3]));
172
173 if ((pEndPtDesc->Core.bmAttributes & 0x3) == 0)
174 {
175 Log(("vusb: unmap MSG pipe from address %u (%#x)\n", EndPt, pEndPtDesc->Core.bEndpointAddress));
176 pPipe->in = NULL;
177 pPipe->out = NULL;
178 }
179 else if (pEndPtDesc->Core.bEndpointAddress & 0x80)
180 {
181 Log(("vusb: unmap IN pipe from address %u (%#x)\n", EndPt, pEndPtDesc->Core.bEndpointAddress));
182 pPipe->in = NULL;
183
184 /* Terminate the pipe buffer if created. */
185 if (pPipe->hBuffer)
186 {
187 vusbBufferedPipeDestroy(pPipe->hBuffer);
188 pPipe->hBuffer = NULL;
189 }
190 }
191 else
192 {
193 Log(("vusb: unmap OUT pipe from address %u (%#x)\n", EndPt, pEndPtDesc->Core.bEndpointAddress));
194 pPipe->out = NULL;
195
196 /* Terminate the pipe buffer if created. */
197 if (pPipe->hBuffer)
198 {
199 vusbBufferedPipeDestroy(pPipe->hBuffer);
200 pPipe->hBuffer = NULL;
201 }
202 }
203
204 if (pPipe->pCtrl)
205 {
206 vusbMsgFreeExtraData(pPipe->pCtrl);
207 pPipe->pCtrl = NULL;
208 }
209}
210
211static void map_interface(PVUSBDEV pDev, PCVUSBDESCINTERFACEEX pIfDesc)
212{
213 LogFlow(("map_interface: pDev=%p[%s] pIfDesc=%p:{.iInterface=%d, .bAlternateSetting=%d}\n",
214 pDev, pDev->pUsbIns->pszName, pIfDesc, pIfDesc->Core.iInterface, pIfDesc->Core.bAlternateSetting));
215
216 for (unsigned i = 0; i < pIfDesc->Core.bNumEndpoints; i++)
217 {
218 if ((pIfDesc->paEndpoints[i].Core.bEndpointAddress & 0xF) == VUSB_PIPE_DEFAULT)
219 Log(("vusb: Endpoint 0x%x on interface %u.%u tried to override the default message pipe!!!\n",
220 pIfDesc->paEndpoints[i].Core.bEndpointAddress, pIfDesc->Core.bInterfaceNumber, pIfDesc->Core.bAlternateSetting));
221 else
222 vusbDevMapEndpoint(pDev, &pIfDesc->paEndpoints[i]);
223 }
224}
225
226
227/**
228 * Worker that resets the pipe data on select config and detach.
229 *
230 * This leaves the critical section unmolested
231 *
232 * @param pPipe The pipe which data should be reset.
233 */
234static void vusbDevResetPipeData(PVUSBPIPE pPipe)
235{
236 vusbMsgFreeExtraData(pPipe->pCtrl);
237 pPipe->pCtrl = NULL;
238
239 if (pPipe->hBuffer)
240 {
241 vusbBufferedPipeDestroy(pPipe->hBuffer);
242 pPipe->hBuffer = NULL;
243 }
244
245 RT_ZERO(pPipe->in);
246 RT_ZERO(pPipe->out);
247 pPipe->async = 0;
248}
249
250
251bool vusbDevDoSelectConfig(PVUSBDEV pDev, PCVUSBDESCCONFIGEX pCfgDesc)
252{
253 LogFlow(("vusbDevDoSelectConfig: pDev=%p[%s] pCfgDesc=%p:{.iConfiguration=%d}\n",
254 pDev, pDev->pUsbIns->pszName, pCfgDesc, pCfgDesc->Core.iConfiguration));
255
256 /*
257 * Clean up all pipes and interfaces.
258 */
259 unsigned i;
260 for (i = 0; i < VUSB_PIPE_MAX; i++)
261 if (i != VUSB_PIPE_DEFAULT)
262 vusbDevResetPipeData(&pDev->aPipes[i]);
263 memset(pDev->paIfStates, 0, pCfgDesc->Core.bNumInterfaces * sizeof(pDev->paIfStates[0]));
264
265 /*
266 * Map in the default setting for every interface.
267 */
268 for (i = 0; i < pCfgDesc->Core.bNumInterfaces; i++)
269 {
270 PCVUSBINTERFACE pIf;
271 struct vusb_interface_state *pIfState;
272
273 pIf = &pCfgDesc->paIfs[i];
274 pIfState = &pDev->paIfStates[i];
275 pIfState->pIf = pIf;
276
277 /*
278 * Find the 0 setting, if it is not present we just use
279 * the lowest numbered one.
280 */
281 for (uint32_t j = 0; j < pIf->cSettings; j++)
282 {
283 if ( !pIfState->pCurIfDesc
284 || pIf->paSettings[j].Core.bAlternateSetting < pIfState->pCurIfDesc->Core.bAlternateSetting)
285 pIfState->pCurIfDesc = &pIf->paSettings[j];
286 if (pIfState->pCurIfDesc->Core.bAlternateSetting == 0)
287 break;
288 }
289
290 if (pIfState->pCurIfDesc)
291 map_interface(pDev, pIfState->pCurIfDesc);
292 }
293
294 pDev->pCurCfgDesc = pCfgDesc;
295
296 if (pCfgDesc->Core.bmAttributes & 0x40)
297 pDev->u16Status |= (1 << VUSB_DEV_SELF_POWERED);
298 else
299 pDev->u16Status &= ~(1 << VUSB_DEV_SELF_POWERED);
300
301 return true;
302}
303
304/**
305 * Standard device request: SET_CONFIGURATION
306 * @returns success indicator.
307 */
308static bool vusbDevStdReqSetConfig(PVUSBDEV pDev, int EndPt, PVUSBSETUP pSetup, uint8_t *pbBuf, uint32_t *pcbBuf)
309{
310 unsigned iCfg = pSetup->wValue & 0xff;
311
312 if ((pSetup->bmRequestType & VUSB_RECIP_MASK) != VUSB_TO_DEVICE)
313 {
314 Log(("vusb: error: %s: SET_CONFIGURATION - invalid request (dir) !!!\n", pDev->pUsbIns->pszName));
315 return false;
316 }
317
318 /*
319 * Check that the device is in a valid state.
320 * (The caller has already checked that it's not being reset.)
321 */
322 const VUSBDEVICESTATE enmState = vusbDevGetState(pDev);
323 if (enmState == VUSB_DEVICE_STATE_DEFAULT)
324 {
325 LogFlow(("vusbDevStdReqSetConfig: %s: default dev state !!?\n", pDev->pUsbIns->pszName));
326 return false;
327 }
328
329 PCVUSBDESCCONFIGEX pNewCfgDesc = vusbDevFindCfgDesc(pDev, iCfg);
330 if (!pNewCfgDesc)
331 {
332 Log(("vusb: error: %s: config %i not found !!!\n", pDev->pUsbIns->pszName, iCfg));
333 return false;
334 }
335
336 if (iCfg == 0)
337 vusbDevSetState(pDev, VUSB_DEVICE_STATE_ADDRESS);
338 else
339 vusbDevSetState(pDev, VUSB_DEVICE_STATE_CONFIGURED);
340 if (pDev->pUsbIns->pReg->pfnUsbSetConfiguration)
341 {
342 int rc = vusbDevIoThreadExecSync(pDev, (PFNRT)pDev->pUsbIns->pReg->pfnUsbSetConfiguration, 5,
343 pDev->pUsbIns, pNewCfgDesc->Core.bConfigurationValue,
344 pDev->pCurCfgDesc, pDev->paIfStates, pNewCfgDesc);
345 if (RT_FAILURE(rc))
346 {
347 Log(("vusb: error: %s: failed to set config %i (%Rrc) !!!\n", pDev->pUsbIns->pszName, iCfg, rc));
348 return false;
349 }
350 }
351 Log(("vusb: %p[%s]: SET_CONFIGURATION: Selected config %u\n", pDev, pDev->pUsbIns->pszName, iCfg));
352 return vusbDevDoSelectConfig(pDev, pNewCfgDesc);
353}
354
355
356/**
357 * Standard device request: GET_CONFIGURATION
358 * @returns success indicator.
359 */
360static bool vusbDevStdReqGetConfig(PVUSBDEV pDev, int EndPt, PVUSBSETUP pSetup, uint8_t *pbBuf, uint32_t *pcbBuf)
361{
362 if ((pSetup->bmRequestType & VUSB_RECIP_MASK) != VUSB_TO_DEVICE)
363 {
364 Log(("vusb: error: %s: GET_CONFIGURATION - invalid request (dir) !!!\n", pDev->pUsbIns->pszName));
365 return false;
366 }
367
368 /*
369 * Check that the device is in a valid state.
370 * (The caller has already checked that it's not being reset.)
371 */
372 const VUSBDEVICESTATE enmState = vusbDevGetState(pDev);
373 if ( enmState != VUSB_DEVICE_STATE_CONFIGURED
374 && enmState != VUSB_DEVICE_STATE_ADDRESS)
375 {
376 LogFlow(("vusbDevStdReqGetConfig: error: %s: invalid device state %d!!!\n", pDev->pUsbIns->pszName, enmState));
377 return false;
378 }
379
380 if (*pcbBuf < 1)
381 {
382 LogFlow(("vusbDevStdReqGetConfig: %s: no space for data!\n", pDev->pUsbIns->pszName));
383 return true;
384 }
385
386 uint8_t iCfg;
387 if (enmState == VUSB_DEVICE_STATE_ADDRESS)
388 iCfg = 0;
389 else
390 iCfg = pDev->pCurCfgDesc->Core.bConfigurationValue;
391
392 *pbBuf = iCfg;
393 *pcbBuf = 1;
394 LogFlow(("vusbDevStdReqGetConfig: %s: returns iCfg=%d\n", pDev->pUsbIns->pszName, iCfg));
395 return true;
396}
397
398/**
399 * Standard device request: GET_INTERFACE
400 * @returns success indicator.
401 */
402static bool vusbDevStdReqGetInterface(PVUSBDEV pDev, int EndPt, PVUSBSETUP pSetup, uint8_t *pbBuf, uint32_t *pcbBuf)
403{
404 if ((pSetup->bmRequestType & VUSB_RECIP_MASK) != VUSB_TO_INTERFACE)
405 {
406 Log(("vusb: error: %s: GET_INTERFACE - invalid request (dir) !!!\n", pDev->pUsbIns->pszName));
407 return false;
408 }
409
410 /*
411 * Check that the device is in a valid state.
412 * (The caller has already checked that it's not being reset.)
413 */
414 const VUSBDEVICESTATE enmState = vusbDevGetState(pDev);
415 if (enmState != VUSB_DEVICE_STATE_CONFIGURED)
416 {
417 LogFlow(("vusbDevStdReqGetInterface: error: %s: invalid device state %d!!!\n", pDev->pUsbIns->pszName, enmState));
418 return false;
419 }
420
421 if (*pcbBuf < 1)
422 {
423 LogFlow(("vusbDevStdReqGetInterface: %s: no space for data!\n", pDev->pUsbIns->pszName));
424 return true;
425 }
426
427 for (unsigned i = 0; i < pDev->pCurCfgDesc->Core.bNumInterfaces; i++)
428 {
429 PCVUSBDESCINTERFACEEX pIfDesc = pDev->paIfStates[i].pCurIfDesc;
430 if ( pIfDesc
431 && pSetup->wIndex == pIfDesc->Core.bInterfaceNumber)
432 {
433 *pbBuf = pIfDesc->Core.bAlternateSetting;
434 *pcbBuf = 1;
435 Log(("vusb: %s: GET_INTERFACE: %u.%u\n", pDev->pUsbIns->pszName, pIfDesc->Core.bInterfaceNumber, *pbBuf));
436 return true;
437 }
438 }
439
440 Log(("vusb: error: %s: GET_INTERFACE - unknown iface %u !!!\n", pDev->pUsbIns->pszName, pSetup->wIndex));
441 return false;
442}
443
444/**
445 * Standard device request: SET_INTERFACE
446 * @returns success indicator.
447 */
448static bool vusbDevStdReqSetInterface(PVUSBDEV pDev, int EndPt, PVUSBSETUP pSetup, uint8_t *pbBuf, uint32_t *pcbBuf)
449{
450 if ((pSetup->bmRequestType & VUSB_RECIP_MASK) != VUSB_TO_INTERFACE)
451 {
452 Log(("vusb: error: %s: SET_INTERFACE - invalid request (dir) !!!\n", pDev->pUsbIns->pszName));
453 return false;
454 }
455
456 /*
457 * Check that the device is in a valid state.
458 * (The caller has already checked that it's not being reset.)
459 */
460 const VUSBDEVICESTATE enmState = vusbDevGetState(pDev);
461 if (enmState != VUSB_DEVICE_STATE_CONFIGURED)
462 {
463 LogFlow(("vusbDevStdReqSetInterface: error: %s: invalid device state %d !!!\n", pDev->pUsbIns->pszName, enmState));
464 return false;
465 }
466
467 /*
468 * Find the interface.
469 */
470 uint8_t iIf = pSetup->wIndex;
471 PVUSBINTERFACESTATE pIfState = vusbDevFindIfState(pDev, iIf);
472 if (!pIfState)
473 {
474 LogFlow(("vusbDevStdReqSetInterface: error: %s: couldn't find interface %u !!!\n", pDev->pUsbIns->pszName, iIf));
475 return false;
476 }
477 uint8_t iAlt = pSetup->wValue;
478 PCVUSBDESCINTERFACEEX pIfDesc = vusbDevFindAltIfDesc(pDev, pIfState, iAlt);
479 if (!pIfDesc)
480 {
481 LogFlow(("vusbDevStdReqSetInterface: error: %s: couldn't find alt interface %u.%u !!!\n", pDev->pUsbIns->pszName, iIf, iAlt));
482 return false;
483 }
484
485 if (pDev->pUsbIns->pReg->pfnUsbSetInterface)
486 {
487 int rc = vusbDevIoThreadExecSync(pDev, (PFNRT)pDev->pUsbIns->pReg->pfnUsbSetInterface, 3, pDev->pUsbIns, iIf, iAlt);
488 if (RT_FAILURE(rc))
489 {
490 LogFlow(("vusbDevStdReqSetInterface: error: %s: couldn't find alt interface %u.%u (%Rrc)\n", pDev->pUsbIns->pszName, iIf, iAlt, rc));
491 return false;
492 }
493 }
494
495 for (unsigned i = 0; i < pIfState->pCurIfDesc->Core.bNumEndpoints; i++)
496 unmap_endpoint(pDev, &pIfState->pCurIfDesc->paEndpoints[i]);
497
498 Log(("vusb: SET_INTERFACE: Selected %u.%u\n", iIf, iAlt));
499
500 map_interface(pDev, pIfDesc);
501 pIfState->pCurIfDesc = pIfDesc;
502
503 return true;
504}
505
506/**
507 * Standard device request: SET_ADDRESS
508 * @returns success indicator.
509 */
510static bool vusbDevStdReqSetAddress(PVUSBDEV pDev, int EndPt, PVUSBSETUP pSetup, uint8_t *pbBuf, uint32_t *pcbBuf)
511{
512 if ((pSetup->bmRequestType & VUSB_RECIP_MASK) != VUSB_TO_DEVICE)
513 {
514 Log(("vusb: error: %s: SET_ADDRESS - invalid request (dir) !!!\n", pDev->pUsbIns->pszName));
515 return false;
516 }
517
518 /*
519 * Check that the device is in a valid state.
520 * (The caller has already checked that it's not being reset.)
521 */
522 const VUSBDEVICESTATE enmState = vusbDevGetState(pDev);
523 if ( enmState != VUSB_DEVICE_STATE_DEFAULT
524 && enmState != VUSB_DEVICE_STATE_ADDRESS)
525 {
526 LogFlow(("vusbDevStdReqSetAddress: error: %s: invalid device state %d !!!\n", pDev->pUsbIns->pszName, enmState));
527 return false;
528 }
529
530 pDev->u8NewAddress = pSetup->wValue;
531 return true;
532}
533
534/**
535 * Standard device request: CLEAR_FEATURE
536 * @returns success indicator.
537 *
538 * @remark This is only called for VUSB_TO_ENDPOINT && ep == 0 && wValue == ENDPOINT_HALT.
539 * All other cases of CLEAR_FEATURE is handled in the normal async/sync manner.
540 */
541static bool vusbDevStdReqClearFeature(PVUSBDEV pDev, int EndPt, PVUSBSETUP pSetup, uint8_t *pbBuf, uint32_t *pcbBuf)
542{
543 switch (pSetup->bmRequestType & VUSB_RECIP_MASK)
544 {
545 case VUSB_TO_DEVICE:
546 Log(("vusb: ClearFeature: dev(%u): selector=%u\n", pSetup->wIndex, pSetup->wValue));
547 break;
548 case VUSB_TO_INTERFACE:
549 Log(("vusb: ClearFeature: iface(%u): selector=%u\n", pSetup->wIndex, pSetup->wValue));
550 break;
551 case VUSB_TO_ENDPOINT:
552 Log(("vusb: ClearFeature: ep(%u): selector=%u\n", pSetup->wIndex, pSetup->wValue));
553 if ( !EndPt /* Default control pipe only */
554 && pSetup->wValue == 0 /* ENDPOINT_HALT */
555 && pDev->pUsbIns->pReg->pfnUsbClearHaltedEndpoint)
556 {
557 int rc = vusbDevIoThreadExecSync(pDev, (PFNRT)pDev->pUsbIns->pReg->pfnUsbClearHaltedEndpoint,
558 2, pDev->pUsbIns, pSetup->wIndex);
559 return RT_SUCCESS(rc);
560 }
561 break;
562 default:
563 AssertMsgFailed(("VUSB_TO_OTHER!\n"));
564 break;
565 }
566
567 AssertMsgFailed(("Invalid safe check !!!\n"));
568 return false;
569}
570
571/**
572 * Standard device request: SET_FEATURE
573 * @returns success indicator.
574 */
575static bool vusbDevStdReqSetFeature(PVUSBDEV pDev, int EndPt, PVUSBSETUP pSetup, uint8_t *pbBuf, uint32_t *pcbBuf)
576{
577 switch (pSetup->bmRequestType & VUSB_RECIP_MASK)
578 {
579 case VUSB_TO_DEVICE:
580 Log(("vusb: SetFeature: dev(%u): selector=%u\n",
581 pSetup->wIndex, pSetup->wValue));
582 break;
583 case VUSB_TO_INTERFACE:
584 Log(("vusb: SetFeature: if(%u): selector=%u\n",
585 pSetup->wIndex, pSetup->wValue));
586 break;
587 case VUSB_TO_ENDPOINT:
588 Log(("vusb: SetFeature: ep(%u): selector=%u\n",
589 pSetup->wIndex, pSetup->wValue));
590 break;
591 default:
592 AssertMsgFailed(("VUSB_TO_OTHER!\n"));
593 return false;
594 }
595 AssertMsgFailed(("This stuff is bogus\n"));
596 return false;
597}
598
599static bool vusbDevStdReqGetStatus(PVUSBDEV pDev, int EndPt, PVUSBSETUP pSetup, uint8_t *pbBuf, uint32_t *pcbBuf)
600{
601 if (*pcbBuf != 2)
602 {
603 LogFlow(("vusbDevStdReqGetStatus: %s: buffer is too small! (%d)\n", pDev->pUsbIns->pszName, *pcbBuf));
604 return false;
605 }
606
607 uint16_t u16Status;
608 switch (pSetup->bmRequestType & VUSB_RECIP_MASK)
609 {
610 case VUSB_TO_DEVICE:
611 u16Status = pDev->u16Status;
612 LogFlow(("vusbDevStdReqGetStatus: %s: device status %#x (%d)\n", pDev->pUsbIns->pszName, u16Status, u16Status));
613 break;
614 case VUSB_TO_INTERFACE:
615 u16Status = 0;
616 LogFlow(("vusbDevStdReqGetStatus: %s: bogus interface status request!!\n", pDev->pUsbIns->pszName));
617 break;
618 case VUSB_TO_ENDPOINT:
619 u16Status = 0;
620 LogFlow(("vusbDevStdReqGetStatus: %s: bogus endpoint status request!!\n", pDev->pUsbIns->pszName));
621 break;
622 default:
623 AssertMsgFailed(("VUSB_TO_OTHER!\n"));
624 return false;
625 }
626
627 *(uint16_t *)pbBuf = u16Status;
628 return true;
629}
630
631
632/**
633 * Finds a cached string.
634 *
635 * @returns Pointer to the cached string if found. NULL if not.
636 * @param paLanguages The languages to search.
637 * @param cLanguages The number of languages in the table.
638 * @param idLang The language ID.
639 * @param iString The string index.
640 */
641static PCPDMUSBDESCCACHESTRING FindCachedString(PCPDMUSBDESCCACHELANG paLanguages, unsigned cLanguages,
642 uint16_t idLang, uint8_t iString)
643{
644 /** @todo binary lookups! */
645 unsigned iCurLang = cLanguages;
646 while (iCurLang-- > 0)
647 if (paLanguages[iCurLang].idLang == idLang)
648 {
649 PCPDMUSBDESCCACHESTRING paStrings = paLanguages[iCurLang].paStrings;
650 unsigned iCurStr = paLanguages[iCurLang].cStrings;
651 while (iCurStr-- > 0)
652 if (paStrings[iCurStr].idx == iString)
653 return &paStrings[iCurStr];
654 break;
655 }
656 return NULL;
657}
658
659
660/** Macro for copying descriptor data. */
661#define COPY_DATA(pbDst, cbLeft, pvSrc, cbSrc) \
662 do { \
663 uint32_t cbSrc_ = cbSrc; \
664 uint32_t cbCopy = RT_MIN(cbLeft, cbSrc_); \
665 if (cbCopy) \
666 memcpy(pbBuf, pvSrc, cbCopy); \
667 cbLeft -= cbCopy; \
668 if (!cbLeft) \
669 return; \
670 pbBuf += cbCopy; \
671 } while (0)
672
673/**
674 * Internal function for reading the language IDs.
675 */
676static void ReadCachedStringDesc(PCPDMUSBDESCCACHESTRING pString, uint8_t *pbBuf, uint32_t *pcbBuf)
677{
678 uint32_t cbLeft = *pcbBuf;
679
680 RTUTF16 wsz[128]; /* 128-1 => bLength=0xff */
681 PRTUTF16 pwsz = wsz;
682 size_t cwc;
683 int rc = RTStrToUtf16Ex(pString->psz, RT_ELEMENTS(wsz) - 1, &pwsz, RT_ELEMENTS(wsz), &cwc);
684 if (RT_FAILURE(rc))
685 {
686 AssertRC(rc);
687 wsz[0] = 'e';
688 wsz[1] = 'r';
689 wsz[2] = 'r';
690 cwc = 3;
691 }
692
693 VUSBDESCSTRING StringDesc;
694 StringDesc.bLength = (uint8_t)(sizeof(StringDesc) + cwc * sizeof(RTUTF16));
695 StringDesc.bDescriptorType = VUSB_DT_STRING;
696 COPY_DATA(pbBuf, cbLeft, &StringDesc, sizeof(StringDesc));
697 COPY_DATA(pbBuf, cbLeft, wsz, (uint32_t)cwc * sizeof(RTUTF16));
698
699 /* updated the size of the output buffer. */
700 *pcbBuf -= cbLeft;
701}
702
703
704/**
705 * Internal function for reading the language IDs.
706 */
707static void ReadCachedLangIdDesc(PCPDMUSBDESCCACHELANG paLanguages, unsigned cLanguages,
708 uint8_t *pbBuf, uint32_t *pcbBuf)
709{
710 uint32_t cbLeft = *pcbBuf;
711
712 VUSBDESCLANGID LangIdDesc;
713 size_t cbDesc = sizeof(LangIdDesc) + cLanguages * sizeof(paLanguages[0].idLang);
714 LangIdDesc.bLength = (uint8_t)RT_MIN(0xff, cbDesc);
715 LangIdDesc.bDescriptorType = VUSB_DT_STRING;
716 COPY_DATA(pbBuf, cbLeft, &LangIdDesc, sizeof(LangIdDesc));
717
718 unsigned iLanguage = cLanguages;
719 while (iLanguage-- > 0)
720 COPY_DATA(pbBuf, cbLeft, &paLanguages[iLanguage].idLang, sizeof(paLanguages[iLanguage].idLang));
721
722 /* updated the size of the output buffer. */
723 *pcbBuf -= cbLeft;
724}
725
726
727/**
728 * Internal function which performs a descriptor read on the cached descriptors.
729 */
730static void ReadCachedConfigDesc(PCVUSBDESCCONFIGEX pCfgDesc, uint8_t *pbBuf, uint32_t *pcbBuf)
731{
732 uint32_t cbLeft = *pcbBuf;
733
734/** @todo See @bugref{2693} */
735 /*
736 * Make a copy of the config descriptor and calculate the wTotalLength field.
737 */
738 VUSBDESCCONFIG CfgDesc;
739 memcpy(&CfgDesc, pCfgDesc, VUSB_DT_CONFIG_MIN_LEN);
740 uint32_t cbTotal = pCfgDesc->Core.bLength;
741 for (unsigned i = 0; i < pCfgDesc->Core.bNumInterfaces; i++)
742 {
743 PCVUSBINTERFACE pIf = &pCfgDesc->paIfs[i];
744 for (uint32_t j = 0; j < pIf->cSettings; j++)
745 {
746 cbTotal += pIf->paSettings[j].cbIAD;
747 cbTotal += pIf->paSettings[j].Core.bLength;
748 cbTotal += pIf->paSettings[j].cbClass;
749 for (unsigned k = 0; k < pIf->paSettings[j].Core.bNumEndpoints; k++)
750 {
751 cbTotal += pIf->paSettings[j].paEndpoints[k].Core.bLength;
752 cbTotal += pIf->paSettings[j].paEndpoints[k].cbSsepc;
753 cbTotal += pIf->paSettings[j].paEndpoints[k].cbClass;
754 }
755 }
756 }
757 CfgDesc.wTotalLength = RT_H2LE_U16(cbTotal);
758
759 /*
760 * Copy the config descriptor
761 */
762 COPY_DATA(pbBuf, cbLeft, &CfgDesc, VUSB_DT_CONFIG_MIN_LEN);
763 COPY_DATA(pbBuf, cbLeft, pCfgDesc->pvMore, pCfgDesc->Core.bLength - VUSB_DT_CONFIG_MIN_LEN);
764
765 /*
766 * Copy out all the interfaces for this configuration
767 */
768 for (unsigned i = 0; i < pCfgDesc->Core.bNumInterfaces; i++)
769 {
770 PCVUSBINTERFACE pIf = &pCfgDesc->paIfs[i];
771 for (uint32_t j = 0; j < pIf->cSettings; j++)
772 {
773 PCVUSBDESCINTERFACEEX pIfDesc = &pIf->paSettings[j];
774
775 COPY_DATA(pbBuf, cbLeft, pIfDesc->pIAD, pIfDesc->cbIAD);
776 COPY_DATA(pbBuf, cbLeft, pIfDesc, VUSB_DT_INTERFACE_MIN_LEN);
777 COPY_DATA(pbBuf, cbLeft, pIfDesc->pvMore, pIfDesc->Core.bLength - VUSB_DT_INTERFACE_MIN_LEN);
778 COPY_DATA(pbBuf, cbLeft, pIfDesc->pvClass, pIfDesc->cbClass);
779
780 /*
781 * Copy out all the endpoints for this interface
782 */
783 for (unsigned k = 0; k < pIfDesc->Core.bNumEndpoints; k++)
784 {
785 VUSBDESCENDPOINT EndPtDesc;
786 memcpy(&EndPtDesc, &pIfDesc->paEndpoints[k], VUSB_DT_ENDPOINT_MIN_LEN);
787 EndPtDesc.wMaxPacketSize = RT_H2LE_U16(EndPtDesc.wMaxPacketSize);
788
789 COPY_DATA(pbBuf, cbLeft, &EndPtDesc, VUSB_DT_ENDPOINT_MIN_LEN);
790 COPY_DATA(pbBuf, cbLeft, pIfDesc->paEndpoints[k].pvMore, EndPtDesc.bLength - VUSB_DT_ENDPOINT_MIN_LEN);
791 COPY_DATA(pbBuf, cbLeft, pIfDesc->paEndpoints[k].pvSsepc, pIfDesc->paEndpoints[k].cbSsepc);
792 COPY_DATA(pbBuf, cbLeft, pIfDesc->paEndpoints[k].pvClass, pIfDesc->paEndpoints[k].cbClass);
793 }
794 }
795 }
796
797 /* updated the size of the output buffer. */
798 *pcbBuf -= cbLeft;
799}
800
801/**
802 * Internal function which performs a descriptor read on the cached descriptors.
803 */
804static void ReadCachedDeviceDesc(PCVUSBDESCDEVICE pDevDesc, uint8_t *pbBuf, uint32_t *pcbBuf)
805{
806 uint32_t cbLeft = *pcbBuf;
807
808 /*
809 * Duplicate the device description and update some fields we keep in cpu type.
810 */
811 Assert(sizeof(VUSBDESCDEVICE) == 18);
812 VUSBDESCDEVICE DevDesc = *pDevDesc;
813 DevDesc.bcdUSB = RT_H2LE_U16(DevDesc.bcdUSB);
814 DevDesc.idVendor = RT_H2LE_U16(DevDesc.idVendor);
815 DevDesc.idProduct = RT_H2LE_U16(DevDesc.idProduct);
816 DevDesc.bcdDevice = RT_H2LE_U16(DevDesc.bcdDevice);
817
818 COPY_DATA(pbBuf, cbLeft, &DevDesc, sizeof(DevDesc));
819 COPY_DATA(pbBuf, cbLeft, pDevDesc + 1, pDevDesc->bLength - sizeof(DevDesc));
820
821 /* updated the size of the output buffer. */
822 *pcbBuf -= cbLeft;
823}
824
825#undef COPY_DATA
826
827/**
828 * Standard device request: GET_DESCRIPTOR
829 * @returns success indicator.
830 * @remark not really used yet as we consider GET_DESCRIPTOR 'safe'.
831 */
832static bool vusbDevStdReqGetDescriptor(PVUSBDEV pDev, int EndPt, PVUSBSETUP pSetup, uint8_t *pbBuf, uint32_t *pcbBuf)
833{
834 if ((pSetup->bmRequestType & VUSB_RECIP_MASK) == VUSB_TO_DEVICE)
835 {
836 switch (pSetup->wValue >> 8)
837 {
838 case VUSB_DT_DEVICE:
839 ReadCachedDeviceDesc(pDev->pDescCache->pDevice, pbBuf, pcbBuf);
840 LogFlow(("vusbDevStdReqGetDescriptor: %s: %u bytes of device descriptors\n", pDev->pUsbIns->pszName, *pcbBuf));
841 return true;
842
843 case VUSB_DT_CONFIG:
844 {
845 unsigned int iIndex = (pSetup->wValue & 0xff);
846 if (iIndex >= pDev->pDescCache->pDevice->bNumConfigurations)
847 {
848 LogFlow(("vusbDevStdReqGetDescriptor: %s: iIndex=%p >= bNumConfigurations=%d !!!\n",
849 pDev->pUsbIns->pszName, iIndex, pDev->pDescCache->pDevice->bNumConfigurations));
850 return false;
851 }
852 ReadCachedConfigDesc(&pDev->pDescCache->paConfigs[iIndex], pbBuf, pcbBuf);
853 LogFlow(("vusbDevStdReqGetDescriptor: %s: %u bytes of config descriptors\n", pDev->pUsbIns->pszName, *pcbBuf));
854 return true;
855 }
856
857 case VUSB_DT_STRING:
858 {
859 if (pSetup->wIndex == 0)
860 {
861 ReadCachedLangIdDesc(pDev->pDescCache->paLanguages, pDev->pDescCache->cLanguages, pbBuf, pcbBuf);
862 LogFlow(("vusbDevStdReqGetDescriptor: %s: %u bytes of language ID (string) descriptors\n", pDev->pUsbIns->pszName, *pcbBuf));
863 return true;
864 }
865 PCPDMUSBDESCCACHESTRING pString;
866 pString = FindCachedString(pDev->pDescCache->paLanguages, pDev->pDescCache->cLanguages,
867 pSetup->wIndex, pSetup->wValue & 0xff);
868 if (pString)
869 {
870 ReadCachedStringDesc(pString, pbBuf, pcbBuf);
871 LogFlow(("vusbDevStdReqGetDescriptor: %s: %u bytes of string descriptors \"%s\"\n",
872 pDev->pUsbIns->pszName, *pcbBuf, pString->psz));
873 return true;
874 }
875 break;
876 }
877
878 default:
879 break;
880 }
881 }
882 Log(("vusb: %s: warning: unknown descriptor: type=%u descidx=%u lang=%u len=%u!!!\n",
883 pDev->pUsbIns->pszName, pSetup->wValue >> 8, pSetup->wValue & 0xff, pSetup->wIndex, pSetup->wLength));
884 return false;
885}
886
887
888/**
889 * Service the standard USB requests.
890 *
891 * Devices may call this from controlmsg() if you want vusb core to handle your standard
892 * request, it's not necessary - you could handle them manually
893 *
894 * @param pDev The device.
895 * @param EndPoint The endpoint.
896 * @param pSetup Pointer to the setup request structure.
897 * @param pvBuf Buffer?
898 * @param pcbBuf ?
899 */
900bool vusbDevStandardRequest(PVUSBDEV pDev, int EndPoint, PVUSBSETUP pSetup, void *pvBuf, uint32_t *pcbBuf)
901{
902 static bool (* const s_apfnStdReq[VUSB_REQ_MAX])(PVUSBDEV, int, PVUSBSETUP, uint8_t *, uint32_t *) =
903 {
904 vusbDevStdReqGetStatus,
905 vusbDevStdReqClearFeature,
906 NULL,
907 vusbDevStdReqSetFeature,
908 NULL,
909 vusbDevStdReqSetAddress,
910 vusbDevStdReqGetDescriptor,
911 NULL,
912 vusbDevStdReqGetConfig,
913 vusbDevStdReqSetConfig,
914 vusbDevStdReqGetInterface,
915 vusbDevStdReqSetInterface,
916 NULL /* for iso */
917 };
918
919 /*
920 * Check that the device is in a valid state.
921 */
922 const VUSBDEVICESTATE enmState = vusbDevGetState(pDev);
923 if (enmState == VUSB_DEVICE_STATE_RESET)
924 {
925 LogRel(("VUSB: %s: standard control message ignored, the device is resetting\n", pDev->pUsbIns->pszName));
926 return false;
927 }
928
929 /*
930 * Do the request if it's one we want to deal with.
931 */
932 if ( pSetup->bRequest >= VUSB_REQ_MAX
933 || !s_apfnStdReq[pSetup->bRequest])
934 {
935 Log(("vusb: warning: standard req not implemented: message %u: val=%u idx=%u len=%u !!!\n",
936 pSetup->bRequest, pSetup->wValue, pSetup->wIndex, pSetup->wLength));
937 return false;
938 }
939
940 return s_apfnStdReq[pSetup->bRequest](pDev, EndPoint, pSetup, (uint8_t *)pvBuf, pcbBuf);
941}
942
943
944/**
945 * Add a device to the address hash
946 */
947static void vusbDevAddressHash(PVUSBDEV pDev)
948{
949 if (pDev->u8Address == VUSB_INVALID_ADDRESS)
950 return;
951 uint8_t u8Hash = vusbHashAddress(pDev->u8Address);
952 pDev->pNextHash = pDev->pHub->pRootHub->apAddrHash[u8Hash];
953 pDev->pHub->pRootHub->apAddrHash[u8Hash] = pDev;
954}
955
956/**
957 * Remove a device from the address hash
958 */
959static void vusbDevAddressUnHash(PVUSBDEV pDev)
960{
961 if (pDev->u8Address == VUSB_INVALID_ADDRESS)
962 return;
963
964 uint8_t u8Hash = vusbHashAddress(pDev->u8Address);
965 pDev->u8Address = VUSB_INVALID_ADDRESS;
966 pDev->u8NewAddress = VUSB_INVALID_ADDRESS;
967
968 PVUSBDEV pCur = pDev->pHub->pRootHub->apAddrHash[u8Hash];
969 if (pCur == pDev)
970 {
971 /* special case, we're at the head */
972 pDev->pHub->pRootHub->apAddrHash[u8Hash] = pDev->pNextHash;
973 pDev->pNextHash = NULL;
974 }
975 else
976 {
977 /* search the list */
978 PVUSBDEV pPrev;
979 for (pPrev = pCur, pCur = pCur->pNextHash;
980 pCur;
981 pPrev = pCur, pCur = pCur->pNextHash)
982 {
983 if (pCur == pDev)
984 {
985 pPrev->pNextHash = pCur->pNextHash;
986 pDev->pNextHash = NULL;
987 break;
988 }
989 }
990 }
991}
992
993/**
994 * Sets the address of a device.
995 *
996 * Called by status_completion() and vusbDevResetWorker().
997 */
998void vusbDevSetAddress(PVUSBDEV pDev, uint8_t u8Address)
999{
1000 LogFlow(("vusbDevSetAddress: pDev=%p[%s]/%i u8Address=%#x\n",
1001 pDev, pDev->pUsbIns->pszName, pDev->i16Port, u8Address));
1002
1003 /*
1004 * Check that the device is in a valid state.
1005 */
1006 const VUSBDEVICESTATE enmState = vusbDevGetState(pDev);
1007 VUSBDEV_ASSERT_VALID_STATE(enmState);
1008 if ( enmState == VUSB_DEVICE_STATE_ATTACHED
1009 || enmState == VUSB_DEVICE_STATE_DETACHED)
1010 {
1011 LogFlow(("vusbDevSetAddress: %s: fails because %d < POWERED\n", pDev->pUsbIns->pszName, pDev->enmState));
1012 return;
1013 }
1014 if (enmState == VUSB_DEVICE_STATE_RESET)
1015 {
1016 LogRel(("VUSB: %s: set address ignored, the device is resetting\n", pDev->pUsbIns->pszName));
1017 return;
1018 }
1019
1020 /*
1021 * Ok, get on with it.
1022 */
1023 if (pDev->u8Address == u8Address)
1024 return;
1025
1026 PVUSBROOTHUB pRh = vusbDevGetRh(pDev);
1027 AssertPtrReturnVoid(pRh);
1028 if (pDev->u8Address == VUSB_DEFAULT_ADDRESS)
1029 pRh->pDefaultAddress = NULL;
1030
1031 vusbDevAddressUnHash(pDev);
1032
1033 if (u8Address == VUSB_DEFAULT_ADDRESS)
1034 {
1035 if (pRh->pDefaultAddress != NULL)
1036 {
1037 vusbDevAddressUnHash(pRh->pDefaultAddress);
1038 vusbDevSetStateCmp(pRh->pDefaultAddress, VUSB_DEVICE_STATE_POWERED, VUSB_DEVICE_STATE_DEFAULT);
1039 Log(("2 DEFAULT ADDRS\n"));
1040 }
1041
1042 pRh->pDefaultAddress = pDev;
1043 vusbDevSetState(pDev, VUSB_DEVICE_STATE_DEFAULT);
1044 }
1045 else
1046 vusbDevSetState(pDev, VUSB_DEVICE_STATE_ADDRESS);
1047
1048 pDev->u8Address = u8Address;
1049 vusbDevAddressHash(pDev);
1050
1051 Log(("vusb: %p[%s]/%i: Assigned address %u\n",
1052 pDev, pDev->pUsbIns->pszName, pDev->i16Port, u8Address));
1053}
1054
1055
1056static DECLCALLBACK(int) vusbDevCancelAllUrbsWorker(PVUSBDEV pDev, bool fDetaching)
1057{
1058 /*
1059 * Iterate the URBs and cancel them.
1060 */
1061 PVUSBURBVUSB pVUsbUrb, pVUsbUrbNext;
1062 RTListForEachSafe(&pDev->LstAsyncUrbs, pVUsbUrb, pVUsbUrbNext, VUSBURBVUSBINT, NdLst)
1063 {
1064 PVUSBURB pUrb = pVUsbUrb->pUrb;
1065
1066 Assert(pUrb->pVUsb->pDev == pDev);
1067
1068 LogFlow(("%s: vusbDevCancelAllUrbs: CANCELING URB\n", pUrb->pszDesc));
1069 int rc = vusbUrbCancelWorker(pUrb, CANCELMODE_FAIL);
1070 AssertRC(rc);
1071 }
1072
1073 /*
1074 * Reap any URBs which became ripe during cancel now.
1075 */
1076 RTCritSectEnter(&pDev->CritSectAsyncUrbs);
1077 unsigned cReaped;
1078 do
1079 {
1080 cReaped = 0;
1081 pVUsbUrb = RTListGetFirst(&pDev->LstAsyncUrbs, VUSBURBVUSBINT, NdLst);
1082 while (pVUsbUrb)
1083 {
1084 PVUSBURBVUSB pNext = RTListGetNext(&pDev->LstAsyncUrbs, pVUsbUrb, VUSBURBVUSBINT, NdLst);
1085 PVUSBURB pUrb = pVUsbUrb->pUrb;
1086 Assert(pUrb->pVUsb->pDev == pDev);
1087
1088 PVUSBURB pRipe = NULL;
1089 if (pUrb->enmState == VUSBURBSTATE_REAPED)
1090 pRipe = pUrb;
1091 else if (pUrb->enmState == VUSBURBSTATE_CANCELLED)
1092#ifdef RT_OS_WINDOWS /** @todo Windows doesn't do cancelling, thus this kludge to prevent really bad
1093 * things from happening if we leave a pending URB behinds. */
1094 pRipe = pDev->pUsbIns->pReg->pfnUrbReap(pDev->pUsbIns, fDetaching ? 1500 : 0 /*ms*/);
1095#else
1096 pRipe = pDev->pUsbIns->pReg->pfnUrbReap(pDev->pUsbIns, fDetaching ? 10 : 0 /*ms*/);
1097#endif
1098 else
1099 AssertMsgFailed(("pUrb=%p enmState=%d\n", pUrb, pUrb->enmState));
1100 if (pRipe)
1101 {
1102 if ( pNext
1103 && pRipe == pNext->pUrb)
1104 pNext = RTListGetNext(&pDev->LstAsyncUrbs, pNext, VUSBURBVUSBINT, NdLst);
1105 vusbUrbRipe(pRipe);
1106 cReaped++;
1107 }
1108
1109 pVUsbUrb = pNext;
1110 }
1111 } while (cReaped > 0);
1112
1113 /*
1114 * If we're detaching, we'll have to orphan any leftover URBs.
1115 */
1116 if (fDetaching)
1117 {
1118 RTListForEachSafe(&pDev->LstAsyncUrbs, pVUsbUrb, pVUsbUrbNext, VUSBURBVUSBINT, NdLst)
1119 {
1120 PVUSBURB pUrb = pVUsbUrb->pUrb;
1121 Assert(pUrb->pVUsb->pDev == pDev);
1122
1123 AssertMsgFailed(("%s: Leaking left over URB! state=%d pDev=%p[%s]\n",
1124 pUrb->pszDesc, pUrb->enmState, pDev, pDev->pUsbIns->pszName));
1125 vusbUrbUnlink(pUrb);
1126 /* Unlink isn't enough, because boundary timer and detaching will try to reap it.
1127 * It was tested with MSD & iphone attachment to vSMP guest, if
1128 * it breaks anything, please add comment here, why we should unlink only.
1129 */
1130 pUrb->pVUsb->pfnFree(pUrb);
1131 }
1132 }
1133 RTCritSectLeave(&pDev->CritSectAsyncUrbs);
1134 return VINF_SUCCESS;
1135}
1136
1137/**
1138 * Cancels and completes (with CRC failure) all async URBs pending
1139 * on a device. This is typically done as part of a reset and
1140 * before detaching a device.
1141 *
1142 * @param fDetaching If set, we will unconditionally unlink (and leak)
1143 * any URBs which isn't reaped.
1144 */
1145DECLHIDDEN(void) vusbDevCancelAllUrbs(PVUSBDEV pDev, bool fDetaching)
1146{
1147 int rc = vusbDevIoThreadExecSync(pDev, (PFNRT)vusbDevCancelAllUrbsWorker, 2, pDev, fDetaching);
1148 AssertRC(rc);
1149}
1150
1151
1152static DECLCALLBACK(int) vusbDevUrbIoThread(RTTHREAD hThread, void *pvUser)
1153{
1154 PVUSBDEV pDev = (PVUSBDEV)pvUser;
1155
1156 /* Notify the starter that we are up and running. */
1157 RTThreadUserSignal(hThread);
1158
1159 LogFlowFunc(("Entering work loop\n"));
1160
1161 while (!ASMAtomicReadBool(&pDev->fTerminate))
1162 {
1163 if (vusbDevGetState(pDev) != VUSB_DEVICE_STATE_RESET)
1164 vusbUrbDoReapAsyncDev(pDev, RT_INDEFINITE_WAIT);
1165
1166 /* Process any URBs waiting to be cancelled first. */
1167 int rc = RTReqQueueProcess(pDev->hReqQueueSync, 0); /* Don't wait if there is nothing to do. */
1168 Assert(RT_SUCCESS(rc) || rc == VERR_TIMEOUT);
1169 }
1170
1171 return VINF_SUCCESS;
1172}
1173
1174int vusbDevUrbIoThreadWakeup(PVUSBDEV pDev)
1175{
1176 ASMAtomicXchgBool(&pDev->fWokenUp, true);
1177 return pDev->pUsbIns->pReg->pfnWakeup(pDev->pUsbIns);
1178}
1179
1180/**
1181 * Create the URB I/O thread.
1182 *
1183 * @returns VBox status code.
1184 * @param pDev The VUSB device.
1185 */
1186int vusbDevUrbIoThreadCreate(PVUSBDEV pDev)
1187{
1188 int rc = VINF_SUCCESS;
1189
1190 ASMAtomicXchgBool(&pDev->fTerminate, false);
1191 rc = RTThreadCreateF(&pDev->hUrbIoThread, vusbDevUrbIoThread, pDev, 0, RTTHREADTYPE_IO,
1192 RTTHREADFLAGS_WAITABLE, "USBDevIo-%d", pDev->i16Port);
1193 if (RT_SUCCESS(rc))
1194 {
1195 /* Wait for it to become active. */
1196 rc = RTThreadUserWait(pDev->hUrbIoThread, RT_INDEFINITE_WAIT);
1197 }
1198
1199 return rc;
1200}
1201
1202/**
1203 * Destro the URB I/O thread.
1204 *
1205 * @returns VBox status code.
1206 * @param pDev The VUSB device.
1207 */
1208int vusbDevUrbIoThreadDestroy(PVUSBDEV pDev)
1209{
1210 int rc = VINF_SUCCESS;
1211 int rcThread = VINF_SUCCESS;
1212
1213 ASMAtomicXchgBool(&pDev->fTerminate, true);
1214 vusbDevUrbIoThreadWakeup(pDev);
1215
1216 rc = RTThreadWait(pDev->hUrbIoThread, RT_INDEFINITE_WAIT, &rcThread);
1217 if (RT_SUCCESS(rc))
1218 rc = rcThread;
1219
1220 pDev->hUrbIoThread = NIL_RTTHREAD;
1221
1222 return rc;
1223}
1224
1225
1226/**
1227 * Detaches a device from the hub it's attached to.
1228 *
1229 * @returns VBox status code.
1230 * @param pDev The device to detach.
1231 *
1232 * @remark This can be called in any state but reset.
1233 */
1234int vusbDevDetach(PVUSBDEV pDev)
1235{
1236 LogFlow(("vusbDevDetach: pDev=%p[%s] enmState=%#x\n", pDev, pDev->pUsbIns->pszName, pDev->enmState));
1237 VUSBDEV_ASSERT_VALID_STATE(pDev->enmState);
1238 Assert(pDev->enmState != VUSB_DEVICE_STATE_RESET);
1239
1240 vusbDevCancelAllUrbs(pDev, true);
1241 vusbDevAddressUnHash(pDev);
1242
1243 PVUSBROOTHUB pRh = vusbDevGetRh(pDev);
1244 if (!pRh)
1245 AssertMsgFailedReturn(("Not attached!\n"), VERR_VUSB_DEVICE_NOT_ATTACHED);
1246 if (pRh->pDefaultAddress == pDev)
1247 pRh->pDefaultAddress = NULL;
1248
1249 pDev->pHub->pOps->pfnDetach(pDev->pHub, pDev);
1250 pDev->i16Port = -1;
1251 vusbDevSetState(pDev, VUSB_DEVICE_STATE_DETACHED);
1252 pDev->pHub = NULL;
1253
1254 /* Remove the configuration */
1255 pDev->pCurCfgDesc = NULL;
1256 for (unsigned i = 0; i < RT_ELEMENTS(pDev->aPipes); i++)
1257 vusbDevResetPipeData(&pDev->aPipes[i]);
1258 return VINF_SUCCESS;
1259}
1260
1261
1262/**
1263 * Destroys a device, detaching it from the hub if necessary.
1264 *
1265 * @param pDev The device.
1266 * @thread EMT
1267 */
1268void vusbDevDestroy(PVUSBDEV pDev)
1269{
1270 LogFlow(("vusbDevDestroy: pDev=%p[%s] enmState=%d\n", pDev, pDev->pUsbIns->pszName, pDev->enmState));
1271
1272 /*
1273 * Deal with pending async reset.
1274 * (anything but reset)
1275 */
1276 vusbDevSetStateCmp(pDev, VUSB_DEVICE_STATE_DEFAULT, VUSB_DEVICE_STATE_RESET);
1277
1278 /*
1279 * Detach and free resources.
1280 */
1281 if (pDev->pHub)
1282 vusbDevDetach(pDev);
1283 RTMemFree(pDev->paIfStates);
1284 TMR3TimerDestroy(pDev->pResetTimer);
1285 pDev->pResetTimer = NULL;
1286 for (unsigned i = 0; i < RT_ELEMENTS(pDev->aPipes); i++)
1287 {
1288 Assert(pDev->aPipes[i].pCtrl == NULL);
1289 RTCritSectDelete(&pDev->aPipes[i].CritSectCtrl);
1290 }
1291
1292 /*
1293 * Destroy I/O thread and request queue last because they might still be used
1294 * when cancelling URBs.
1295 */
1296 vusbDevUrbIoThreadDestroy(pDev);
1297
1298 int rc = RTReqQueueDestroy(pDev->hReqQueueSync);
1299 AssertRC(rc);
1300
1301 if (pDev->hSniffer != VUSBSNIFFER_NIL)
1302 VUSBSnifferDestroy(pDev->hSniffer);
1303
1304 vusbUrbPoolDestroy(&pDev->UrbPool);
1305
1306 RTCritSectDelete(&pDev->CritSectAsyncUrbs);
1307 /* Not using vusbDevSetState() deliberately here because it would assert on the state. */
1308 pDev->enmState = VUSB_DEVICE_STATE_DESTROYED;
1309}
1310
1311
1312/* -=-=-=-=-=- VUSBIDEVICE methods -=-=-=-=-=- */
1313
1314
1315/**
1316 * The actual reset has been done, do completion on EMT.
1317 *
1318 * There are several things we have to do now, like set default
1319 * config and address, and cleanup the state of control pipes.
1320 *
1321 * It's possible that the device has a delayed destroy request
1322 * pending when we get here. This can happen for async resetting.
1323 * We deal with it here, since we're now executing on the EMT
1324 * thread and the destruction will be properly serialized now.
1325 *
1326 * @param pDev The device that is being reset.
1327 * @param rc The vusbDevResetWorker return code.
1328 * @param pfnDone The done callback specified by the caller of vusbDevReset().
1329 * @param pvUser The user argument for the callback.
1330 */
1331static void vusbDevResetDone(PVUSBDEV pDev, int rc, PFNVUSBRESETDONE pfnDone, void *pvUser)
1332{
1333 VUSBDEV_ASSERT_VALID_STATE(pDev->enmState);
1334 Assert(pDev->enmState == VUSB_DEVICE_STATE_RESET);
1335
1336 /*
1337 * Do control pipe cleanup regardless of state and result.
1338 */
1339 for (unsigned i = 0; i < VUSB_PIPE_MAX; i++)
1340 if (pDev->aPipes[i].pCtrl)
1341 vusbMsgResetExtraData(pDev->aPipes[i].pCtrl);
1342
1343 /*
1344 * Switch to the default state.
1345 */
1346 vusbDevSetState(pDev, VUSB_DEVICE_STATE_DEFAULT);
1347 pDev->u16Status = 0;
1348 vusbDevDoSelectConfig(pDev, &g_Config0);
1349 if (!vusbDevIsRh(pDev))
1350 vusbDevSetAddress(pDev, VUSB_DEFAULT_ADDRESS);
1351 if (pfnDone)
1352 pfnDone(&pDev->IDevice, rc, pvUser);
1353}
1354
1355
1356/**
1357 * Timer callback for doing reset completion.
1358 *
1359 * @param pUsbIns The USB device instance.
1360 * @param pTimer The timer instance.
1361 * @param pvUser The VUSB device data.
1362 * @thread EMT
1363 */
1364static DECLCALLBACK(void) vusbDevResetDoneTimer(PPDMUSBINS pUsbIns, PTMTIMER pTimer, void *pvUser)
1365{
1366 PVUSBDEV pDev = (PVUSBDEV)pvUser;
1367 PVUSBRESETARGS pArgs = (PVUSBRESETARGS)pDev->pvArgs;
1368 Assert(pDev->pUsbIns == pUsbIns);
1369
1370 AssertPtr(pArgs);
1371
1372 /*
1373 * Reset-done processing and cleanup.
1374 */
1375 pDev->pvArgs = NULL;
1376 vusbDevResetDone(pDev, pArgs->rc, pArgs->pfnDone, pArgs->pvUser);
1377 RTMemFree(pArgs);
1378}
1379
1380
1381/**
1382 * Perform the actual reset.
1383 *
1384 * @thread EMT or a VUSB reset thread.
1385 */
1386static int vusbDevResetWorker(PVUSBDEV pDev, bool fResetOnLinux, bool fUseTimer, PVUSBRESETARGS pArgs)
1387{
1388 int rc = VINF_SUCCESS;
1389 uint64_t u64EndTS = TMTimerGet(pDev->pResetTimer) + TMTimerFromMilli(pDev->pResetTimer, 10);
1390
1391 if (pDev->pUsbIns->pReg->pfnUsbReset)
1392 rc = pDev->pUsbIns->pReg->pfnUsbReset(pDev->pUsbIns, fResetOnLinux);
1393
1394 if (pArgs)
1395 {
1396 pArgs->rc = rc;
1397 rc = VINF_SUCCESS;
1398 }
1399
1400 if (fUseTimer)
1401 {
1402 /*
1403 * We use a timer to communicate the result back to EMT.
1404 * This avoids suspend + poweroff issues, and it should give
1405 * us more accurate scheduling than making this thread sleep.
1406 */
1407 int rc2 = TMTimerSet(pDev->pResetTimer, u64EndTS);
1408 AssertReleaseRC(rc2);
1409 }
1410
1411 LogFlow(("vusbDevResetWorker: %s: returns %Rrc\n", pDev->pUsbIns->pszName, rc));
1412 return rc;
1413}
1414
1415
1416/**
1417 * Resets a device.
1418 *
1419 * Since a device reset shall take at least 10ms from the guest point of view,
1420 * it must be performed asynchronously. We create a thread which performs this
1421 * operation and ensures it will take at least 10ms.
1422 *
1423 * At times - like init - a synchronous reset is required, this can be done
1424 * by passing NULL for pfnDone.
1425 *
1426 * While the device is being reset it is in the VUSB_DEVICE_STATE_RESET state.
1427 * On completion it will be in the VUSB_DEVICE_STATE_DEFAULT state if successful,
1428 * or in the VUSB_DEVICE_STATE_DETACHED state if the rest failed.
1429 *
1430 * @returns VBox status code.
1431 *
1432 * @param pDev Pointer to the VUSB device interface.
1433 * @param fResetOnLinux Whether it's safe to reset the device(s) on a linux
1434 * host system. See discussion of logical reconnects elsewhere.
1435 * @param pfnDone Pointer to the completion routine. If NULL a synchronous
1436 * reset is preformed not respecting the 10ms.
1437 * @param pVM Pointer to the VM handle for performing the done function
1438 * on the EMT thread.
1439 * @thread EMT
1440 */
1441static DECLCALLBACK(int) vusbIDeviceReset(PVUSBIDEVICE pDevice, bool fResetOnLinux, PFNVUSBRESETDONE pfnDone, void *pvUser, PVM pVM)
1442{
1443 PVUSBDEV pDev = (PVUSBDEV)pDevice;
1444 Assert(!pfnDone || pVM);
1445 LogFlow(("vusb: reset: [%s]/%i\n", pDev->pUsbIns->pszName, pDev->i16Port));
1446
1447 /*
1448 * Only one reset operation at a time.
1449 */
1450 const VUSBDEVICESTATE enmStateOld = vusbDevSetState(pDev, VUSB_DEVICE_STATE_RESET);
1451 if (enmStateOld == VUSB_DEVICE_STATE_RESET)
1452 {
1453 LogRel(("VUSB: %s: reset request is ignored, the device is already resetting!\n", pDev->pUsbIns->pszName));
1454 return VERR_VUSB_DEVICE_IS_RESETTING;
1455 }
1456
1457 /*
1458 * First, cancel all async URBs.
1459 */
1460 vusbDevCancelAllUrbs(pDev, false);
1461
1462 /* Async or sync? */
1463 if (pfnDone)
1464 {
1465 /*
1466 * Async fashion.
1467 */
1468 PVUSBRESETARGS pArgs = (PVUSBRESETARGS)RTMemTmpAlloc(sizeof(*pArgs));
1469 if (pArgs)
1470 {
1471 pArgs->pDev = pDev;
1472 pArgs->pfnDone = pfnDone;
1473 pArgs->pvUser = pvUser;
1474 pArgs->rc = VINF_SUCCESS;
1475 AssertPtrNull(pDev->pvArgs);
1476 pDev->pvArgs = pArgs;
1477 int rc = vusbDevIoThreadExec(pDev, 0 /* fFlags */, (PFNRT)vusbDevResetWorker, 4, pDev, fResetOnLinux, true, pArgs);
1478 if (RT_SUCCESS(rc))
1479 return rc;
1480
1481 RTMemTmpFree(pArgs);
1482 }
1483 /* fall back to sync on failure */
1484 }
1485
1486 /*
1487 * Sync fashion.
1488 */
1489 int rc = vusbDevResetWorker(pDev, fResetOnLinux, false, NULL);
1490 vusbDevResetDone(pDev, rc, pfnDone, pvUser);
1491 return rc;
1492}
1493
1494
1495/**
1496 * Powers on the device.
1497 *
1498 * @returns VBox status code.
1499 * @param pInterface Pointer to the device interface structure.
1500 */
1501static DECLCALLBACK(int) vusbIDevicePowerOn(PVUSBIDEVICE pInterface)
1502{
1503 PVUSBDEV pDev = (PVUSBDEV)pInterface;
1504 LogFlow(("vusbDevPowerOn: pDev=%p[%s]\n", pDev, pDev->pUsbIns->pszName));
1505
1506 /*
1507 * Check that the device is in a valid state.
1508 */
1509 const VUSBDEVICESTATE enmState = vusbDevGetState(pDev);
1510 if (enmState == VUSB_DEVICE_STATE_DETACHED)
1511 {
1512 Log(("vusb: warning: attempt to power on detached device %p[%s]\n", pDev, pDev->pUsbIns->pszName));
1513 return VERR_VUSB_DEVICE_NOT_ATTACHED;
1514 }
1515 if (enmState == VUSB_DEVICE_STATE_RESET)
1516 {
1517 LogRel(("VUSB: %s: power on ignored, the device is resetting!\n", pDev->pUsbIns->pszName));
1518 return VERR_VUSB_DEVICE_IS_RESETTING;
1519 }
1520
1521 /*
1522 * Do the job.
1523 */
1524 if (enmState == VUSB_DEVICE_STATE_ATTACHED)
1525 vusbDevSetState(pDev, VUSB_DEVICE_STATE_POWERED);
1526
1527 return VINF_SUCCESS;
1528}
1529
1530
1531/**
1532 * Powers off the device.
1533 *
1534 * @returns VBox status code.
1535 * @param pInterface Pointer to the device interface structure.
1536 */
1537static DECLCALLBACK(int) vusbIDevicePowerOff(PVUSBIDEVICE pInterface)
1538{
1539 PVUSBDEV pDev = (PVUSBDEV)pInterface;
1540 LogFlow(("vusbDevPowerOff: pDev=%p[%s]\n", pDev, pDev->pUsbIns->pszName));
1541
1542 /*
1543 * Check that the device is in a valid state.
1544 */
1545 const VUSBDEVICESTATE enmState = vusbDevGetState(pDev);
1546 if (enmState == VUSB_DEVICE_STATE_DETACHED)
1547 {
1548 Log(("vusb: warning: attempt to power off detached device %p[%s]\n", pDev, pDev->pUsbIns->pszName));
1549 return VERR_VUSB_DEVICE_NOT_ATTACHED;
1550 }
1551 if (enmState == VUSB_DEVICE_STATE_RESET)
1552 {
1553 LogRel(("VUSB: %s: power off ignored, the device is resetting!\n", pDev->pUsbIns->pszName));
1554 return VERR_VUSB_DEVICE_IS_RESETTING;
1555 }
1556
1557 /*
1558 * If it's a root hub, we will have to cancel all URBs and reap them.
1559 */
1560 if (vusbDevIsRh(pDev))
1561 {
1562 PVUSBROOTHUB pRh = (PVUSBROOTHUB)pDev;
1563 VUSBIRhCancelAllUrbs(&pRh->IRhConnector);
1564 VUSBIRhReapAsyncUrbs(&pRh->IRhConnector, pInterface, 0);
1565 }
1566
1567 vusbDevSetState(pDev, VUSB_DEVICE_STATE_ATTACHED);
1568 return VINF_SUCCESS;
1569}
1570
1571
1572/**
1573 * Get the state of the device.
1574 *
1575 * @returns Device state.
1576 * @param pInterface Pointer to the device interface structure.
1577 */
1578static DECLCALLBACK(VUSBDEVICESTATE) vusbIDeviceGetState(PVUSBIDEVICE pInterface)
1579{
1580 return vusbDevGetState((PVUSBDEV)pInterface);
1581}
1582
1583
1584/**
1585 * @interface_method_impl{VUSBIDEVICE,pfnIsSavedStateSupported}
1586 */
1587static DECLCALLBACK(bool) vusbIDeviceIsSavedStateSupported(PVUSBIDEVICE pInterface)
1588{
1589 PVUSBDEV pDev = (PVUSBDEV)pInterface;
1590 bool fSavedStateSupported = RT_BOOL(pDev->pUsbIns->pReg->fFlags & PDM_USBREG_SAVED_STATE_SUPPORTED);
1591
1592 LogFlowFunc(("pInterface=%p\n", pInterface));
1593
1594 LogFlowFunc(("returns %RTbool\n", fSavedStateSupported));
1595 return fSavedStateSupported;
1596}
1597
1598
1599/**
1600 * @interface_method_impl{VUSBIDEVICE,pfnGetState}
1601 */
1602static DECLCALLBACK(VUSBSPEED) vusbIDeviceGetSpeed(PVUSBIDEVICE pInterface)
1603{
1604 PVUSBDEV pDev = (PVUSBDEV)pInterface;
1605 VUSBSPEED enmSpeed = pDev->pUsbIns->enmSpeed;
1606
1607 LogFlowFunc(("pInterface=%p, returns %u\n", pInterface, enmSpeed));
1608 return enmSpeed;
1609}
1610
1611
1612/**
1613 * The maximum number of interfaces the device can have in all of it's configuration.
1614 *
1615 * @returns Number of interfaces.
1616 * @param pDev The device.
1617 */
1618size_t vusbDevMaxInterfaces(PVUSBDEV pDev)
1619{
1620 uint8_t cMax = 0;
1621 unsigned i = pDev->pDescCache->pDevice->bNumConfigurations;
1622 while (i-- > 0)
1623 {
1624 if (pDev->pDescCache->paConfigs[i].Core.bNumInterfaces > cMax)
1625 cMax = pDev->pDescCache->paConfigs[i].Core.bNumInterfaces;
1626 }
1627
1628 return cMax;
1629}
1630
1631
1632/**
1633 * Executes a given function on the I/O thread.
1634 *
1635 * @returns IPRT status code.
1636 * @param pDev The USB device instance data.
1637 * @param fFlags Combination of VUSB_DEV_IO_THREAD_EXEC_FLAGS_*
1638 * @param pfnFunction The function to execute.
1639 * @param cArgs Number of arguments to the function.
1640 * @param Args The parameter list.
1641 *
1642 * @remarks See remarks on RTReqQueueCallV
1643 */
1644DECLHIDDEN(int) vusbDevIoThreadExecV(PVUSBDEV pDev, uint32_t fFlags, PFNRT pfnFunction, unsigned cArgs, va_list Args)
1645{
1646 int rc = VINF_SUCCESS;
1647 PRTREQ hReq = NULL;
1648
1649 Assert(pDev->hUrbIoThread != NIL_RTTHREAD);
1650 if (RT_LIKELY(pDev->hUrbIoThread != NIL_RTTHREAD))
1651 {
1652 uint32_t fReqFlags = RTREQFLAGS_IPRT_STATUS;
1653
1654 if (!(fFlags & VUSB_DEV_IO_THREAD_EXEC_FLAGS_SYNC))
1655 fReqFlags |= RTREQFLAGS_NO_WAIT;
1656
1657 rc = RTReqQueueCallV(pDev->hReqQueueSync, &hReq, 0 /* cMillies */, fReqFlags, pfnFunction, cArgs, Args);
1658 Assert(RT_SUCCESS(rc) || rc == VERR_TIMEOUT);
1659
1660 /* In case we are called on the I/O thread just process the request. */
1661 if ( pDev->hUrbIoThread == RTThreadSelf()
1662 && (fFlags & VUSB_DEV_IO_THREAD_EXEC_FLAGS_SYNC))
1663 {
1664 int rc2 = RTReqQueueProcess(pDev->hReqQueueSync, 0);
1665 Assert(RT_SUCCESS(rc2) || rc2 == VERR_TIMEOUT);
1666 }
1667 else
1668 vusbDevUrbIoThreadWakeup(pDev);
1669
1670 if ( rc == VERR_TIMEOUT
1671 && (fFlags & VUSB_DEV_IO_THREAD_EXEC_FLAGS_SYNC))
1672 {
1673 rc = RTReqWait(hReq, RT_INDEFINITE_WAIT);
1674 AssertRC(rc);
1675 }
1676 RTReqRelease(hReq);
1677 }
1678 else
1679 rc = VERR_INVALID_STATE;
1680
1681 return rc;
1682}
1683
1684
1685/**
1686 * Executes a given function on the I/O thread.
1687 *
1688 * @returns IPRT status code.
1689 * @param pDev The USB device instance data.
1690 * @param fFlags Combination of VUSB_DEV_IO_THREAD_EXEC_FLAGS_*
1691 * @param pfnFunction The function to execute.
1692 * @param cArgs Number of arguments to the function.
1693 * @param ... The parameter list.
1694 *
1695 * @remarks See remarks on RTReqQueueCallV
1696 */
1697DECLHIDDEN(int) vusbDevIoThreadExec(PVUSBDEV pDev, uint32_t fFlags, PFNRT pfnFunction, unsigned cArgs, ...)
1698{
1699 int rc = VINF_SUCCESS;
1700 va_list va;
1701
1702 va_start(va, cArgs);
1703 rc = vusbDevIoThreadExecV(pDev, fFlags, pfnFunction, cArgs, va);
1704 va_end(va);
1705 return rc;
1706}
1707
1708
1709/**
1710 * Executes a given function synchronously on the I/O thread waiting for it to complete.
1711 *
1712 * @returns IPRT status code.
1713 * @param pDev The USB device instance data
1714 * @param pfnFunction The function to execute.
1715 * @param cArgs Number of arguments to the function.
1716 * @param ... The parameter list.
1717 *
1718 * @remarks See remarks on RTReqQueueCallV
1719 */
1720DECLHIDDEN(int) vusbDevIoThreadExecSync(PVUSBDEV pDev, PFNRT pfnFunction, unsigned cArgs, ...)
1721{
1722 int rc = VINF_SUCCESS;
1723 va_list va;
1724
1725 va_start(va, cArgs);
1726 rc = vusbDevIoThreadExecV(pDev, VUSB_DEV_IO_THREAD_EXEC_FLAGS_SYNC, pfnFunction, cArgs, va);
1727 va_end(va);
1728 return rc;
1729}
1730
1731
1732static DECLCALLBACK(int) vusbDevGetDescriptorCacheWorker(PPDMUSBINS pUsbIns, PCPDMUSBDESCCACHE *ppDescCache)
1733{
1734 *ppDescCache = pUsbIns->pReg->pfnUsbGetDescriptorCache(pUsbIns);
1735 return VINF_SUCCESS;
1736}
1737
1738/**
1739 * Initialize a new VUSB device.
1740 *
1741 * @returns VBox status code.
1742 * @param pDev The VUSB device to initialize.
1743 * @param pUsbIns Pointer to the PDM USB Device instance.
1744 */
1745int vusbDevInit(PVUSBDEV pDev, PPDMUSBINS pUsbIns, const char *pszCaptureFilename)
1746{
1747 /*
1748 * Initialize the device data members.
1749 * (All that are Non-Zero at least.)
1750 */
1751 Assert(!pDev->IDevice.pfnReset);
1752 Assert(!pDev->IDevice.pfnPowerOn);
1753 Assert(!pDev->IDevice.pfnPowerOff);
1754 Assert(!pDev->IDevice.pfnGetState);
1755 Assert(!pDev->IDevice.pfnIsSavedStateSupported);
1756
1757 pDev->IDevice.pfnReset = vusbIDeviceReset;
1758 pDev->IDevice.pfnPowerOn = vusbIDevicePowerOn;
1759 pDev->IDevice.pfnPowerOff = vusbIDevicePowerOff;
1760 pDev->IDevice.pfnGetState = vusbIDeviceGetState;
1761 pDev->IDevice.pfnIsSavedStateSupported = vusbIDeviceIsSavedStateSupported;
1762 pDev->IDevice.pfnGetSpeed = vusbIDeviceGetSpeed;
1763 pDev->pUsbIns = pUsbIns;
1764 pDev->pNext = NULL;
1765 pDev->pNextHash = NULL;
1766 pDev->pHub = NULL;
1767 pDev->enmState = VUSB_DEVICE_STATE_DETACHED;
1768 pDev->u8Address = VUSB_INVALID_ADDRESS;
1769 pDev->u8NewAddress = VUSB_INVALID_ADDRESS;
1770 pDev->i16Port = -1;
1771 pDev->u16Status = 0;
1772 pDev->pDescCache = NULL;
1773 pDev->pCurCfgDesc = NULL;
1774 pDev->paIfStates = NULL;
1775 RTListInit(&pDev->LstAsyncUrbs);
1776 memset(&pDev->aPipes[0], 0, sizeof(pDev->aPipes));
1777 for (unsigned i = 0; i < RT_ELEMENTS(pDev->aPipes); i++)
1778 {
1779 int rc = RTCritSectInit(&pDev->aPipes[i].CritSectCtrl);
1780 AssertRCReturn(rc, rc);
1781 }
1782 pDev->pResetTimer = NULL;
1783 pDev->hSniffer = VUSBSNIFFER_NIL;
1784
1785 int rc = RTCritSectInit(&pDev->CritSectAsyncUrbs);
1786 AssertRCReturn(rc, rc);
1787
1788 /* Create the URB pool. */
1789 rc = vusbUrbPoolInit(&pDev->UrbPool);
1790 AssertRCReturn(rc, rc);
1791
1792 /* Setup request queue executing synchronous tasks on the I/O thread. */
1793 rc = RTReqQueueCreate(&pDev->hReqQueueSync);
1794 AssertRCReturn(rc, rc);
1795
1796 /* Create I/O thread. */
1797 rc = vusbDevUrbIoThreadCreate(pDev);
1798 AssertRCReturn(rc, rc);
1799
1800 /*
1801 * Create the reset timer.
1802 */
1803 rc = PDMUsbHlpTMTimerCreate(pDev->pUsbIns, TMCLOCK_VIRTUAL, vusbDevResetDoneTimer, pDev, 0 /*fFlags*/,
1804 "USB Device Reset Timer", &pDev->pResetTimer);
1805 AssertRCReturn(rc, rc);
1806
1807 if (pszCaptureFilename)
1808 {
1809 rc = VUSBSnifferCreate(&pDev->hSniffer, 0, pszCaptureFilename, NULL, NULL);
1810 AssertRCReturn(rc, rc);
1811 }
1812
1813 /*
1814 * Get the descriptor cache from the device. (shall cannot fail)
1815 */
1816 rc = vusbDevIoThreadExecSync(pDev, (PFNRT)vusbDevGetDescriptorCacheWorker, 2, pUsbIns, &pDev->pDescCache);
1817 AssertRC(rc);
1818 AssertPtr(pDev->pDescCache);
1819#ifdef VBOX_STRICT
1820 if (pDev->pDescCache->fUseCachedStringsDescriptors)
1821 {
1822 int32_t iPrevId = -1;
1823 for (unsigned iLang = 0; iLang < pDev->pDescCache->cLanguages; iLang++)
1824 {
1825 Assert((int32_t)pDev->pDescCache->paLanguages[iLang].idLang > iPrevId);
1826 iPrevId = pDev->pDescCache->paLanguages[iLang].idLang;
1827
1828 int32_t idxPrevStr = -1;
1829 PCPDMUSBDESCCACHESTRING paStrings = pDev->pDescCache->paLanguages[iLang].paStrings;
1830 unsigned cStrings = pDev->pDescCache->paLanguages[iLang].cStrings;
1831 for (unsigned iStr = 0; iStr < cStrings; iStr++)
1832 {
1833 Assert((int32_t)paStrings[iStr].idx > idxPrevStr);
1834 idxPrevStr = paStrings[iStr].idx;
1835 size_t cch = strlen(paStrings[iStr].psz);
1836 Assert(cch <= 127);
1837 }
1838 }
1839 }
1840#endif
1841
1842 /*
1843 * Allocate memory for the interface states.
1844 */
1845 size_t cbIface = vusbDevMaxInterfaces(pDev) * sizeof(*pDev->paIfStates);
1846 pDev->paIfStates = (PVUSBINTERFACESTATE)RTMemAllocZ(cbIface);
1847 AssertMsgReturn(pDev->paIfStates, ("RTMemAllocZ(%d) failed\n", cbIface), VERR_NO_MEMORY);
1848
1849 return VINF_SUCCESS;
1850}
1851
1852/*
1853 * Local Variables:
1854 * mode: c
1855 * c-file-style: "bsd"
1856 * c-basic-offset: 4
1857 * tab-width: 4
1858 * indent-tabs-mode: s
1859 * End:
1860 */
1861
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use