VirtualBox

Changeset 70693 in vbox for trunk/src/VBox/Devices/USB


Ignore:
Timestamp:
Jan 22, 2018 9:02:01 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
120429
Message:

VUSB/VUSBDevice: Avoid that the device is destroyed while in certain code paths by using locking

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/USB/VUSBDevice.cpp

    r69500 r70693  
    309309    if (pDev->pUsbIns->pReg->pfnUsbSetConfiguration)
    310310    {
     311        RTCritSectEnter(&pDev->pHub->pRootHub->CritSectDevices);
    311312        int rc = vusbDevIoThreadExecSync(pDev, (PFNRT)pDev->pUsbIns->pReg->pfnUsbSetConfiguration, 5,
    312313                                         pDev->pUsbIns, pNewCfgDesc->Core.bConfigurationValue,
     
    317318            return false;
    318319        }
     320        RTCritSectLeave(&pDev->pHub->pRootHub->CritSectDevices);
    319321    }
    320322    Log(("vusb: %p[%s]: SET_CONFIGURATION: Selected config %u\n", pDev, pDev->pUsbIns->pszName, iCfg));
     
    457459    if (pDev->pUsbIns->pReg->pfnUsbSetInterface)
    458460    {
     461        RTCritSectEnter(&pDev->pHub->pRootHub->CritSectDevices);
    459462        int rc = vusbDevIoThreadExecSync(pDev, (PFNRT)pDev->pUsbIns->pReg->pfnUsbSetInterface, 3, pDev->pUsbIns, iIf, iAlt);
    460463        if (RT_FAILURE(rc))
     
    463466            return false;
    464467        }
     468        RTCritSectLeave(&pDev->pHub->pRootHub->CritSectDevices);
    465469    }
    466470
     
    529533                &&  pDev->pUsbIns->pReg->pfnUsbClearHaltedEndpoint)
    530534            {
     535                RTCritSectEnter(&pDev->pHub->pRootHub->CritSectDevices);
    531536                int rc = vusbDevIoThreadExecSync(pDev, (PFNRT)pDev->pUsbIns->pReg->pfnUsbClearHaltedEndpoint,
    532537                                                 2, pDev->pUsbIns, pSetup->wIndex);
     538                RTCritSectLeave(&pDev->pHub->pRootHub->CritSectDevices);
    533539                return RT_SUCCESS(rc);
    534540            }
Note: See TracChangeset for help on using the changeset viewer.

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