VirtualBox

Ignore:
Timestamp:
May 31, 2012 4:48:33 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
78291
Message:

Main/HostUSBDevice(all platforms)+USBProxyService: redo USB locking, fixes major regression, added lots of assertions to catch locking flaws early, whitespace cleanup
Main/Machine: small USB locking fix to be consistent with the remaining code
Main/Host+glue/AutoLock: replace USB list lock by host lock, small numbering cleanup
Main/Console: redo USB locking, do less in USB callbacks/EMT (addresses long standing todo items), eliminate unsafe iterator parameters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/darwin/USBProxyServiceDarwin.cpp

    r37599 r41528  
    55
    66/*
    7  * Copyright (C) 2006-2010 Oracle Corporation
     7 * Copyright (C) 2005-2012 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    3939 * Initialize data members.
    4040 */
    41 USBProxyServiceDarwin::USBProxyServiceDarwin (Host *aHost)
    42     : USBProxyService (aHost), mServiceRunLoopRef (NULL), mNotifyOpaque (NULL), mWaitABitNextTime (false), mUSBLibInitialized (false)
     41USBProxyServiceDarwin::USBProxyServiceDarwin(Host *aHost)
     42    : USBProxyService(aHost), mServiceRunLoopRef(NULL), mNotifyOpaque(NULL), mWaitABitNextTime(false), mUSBLibInitialized(false)
    4343{
    4444    LogFlowThisFunc(("aHost=%p\n", aHost));
     
    101101
    102102#ifdef VBOX_WITH_NEW_USB_CODE_ON_DARWIN
    103 void *USBProxyServiceDarwin::insertFilter (PCUSBFILTER aFilter)
    104 {
    105     return USBLibAddFilter (aFilter);
    106 }
    107 
    108 
    109 void USBProxyServiceDarwin::removeFilter (void *aId)
    110 {
    111     USBLibRemoveFilter (aId);
     103void *USBProxyServiceDarwin::insertFilter(PCUSBFILTER aFilter)
     104{
     105    return USBLibAddFilter(aFilter);
     106}
     107
     108
     109void USBProxyServiceDarwin::removeFilter(void *aId)
     110{
     111    USBLibRemoveFilter(aId);
    112112}
    113113#endif /* VBOX_WITH_NEW_USB_CODE_ON_DARWIN */
     
    120120     */
    121121    AssertReturn(aDevice, VERR_GENERAL_FAILURE);
     122    AssertReturn(!aDevice->isWriteLockOnCurrentThread(), VERR_GENERAL_FAILURE);
     123
     124    AutoReadLock devLock(aDevice COMMA_LOCKVAL_SRC_POS);
    122125    LogFlowThisFunc(("aDevice=%s\n", aDevice->getName().c_str()));
    123     AssertReturn(aDevice->isWriteLockOnCurrentThread(), VERR_GENERAL_FAILURE);
     126
    124127    Assert(aDevice->getUnistate() == kHostUSBDeviceState_Capturing);
    125128
     
    129132     */
    130133    ASMAtomicWriteBool(&mFakeAsync, true);
     134    devLock.release();
    131135    interruptWait();
    132136    return VINF_SUCCESS;
     
    161165void USBProxyServiceDarwin::captureDeviceCompleted(HostUSBDevice *aDevice, bool aSuccess)
    162166{
     167    AssertReturnVoid(aDevice->isWriteLockOnCurrentThread());
    163168#ifdef VBOX_WITH_NEW_USB_CODE_ON_DARWIN
    164169    /*
     
    179184     */
    180185    AssertReturn(aDevice, VERR_GENERAL_FAILURE);
     186    AssertReturn(!aDevice->isWriteLockOnCurrentThread(), VERR_GENERAL_FAILURE);
     187
     188    AutoReadLock devLock(aDevice COMMA_LOCKVAL_SRC_POS);
    181189    LogFlowThisFunc(("aDevice=%s\n", aDevice->getName().c_str()));
    182     AssertReturn(aDevice->isWriteLockOnCurrentThread(), VERR_GENERAL_FAILURE);
     190
    183191    Assert(aDevice->getUnistate() == kHostUSBDeviceState_ReleasingToHost);
    184192
     
    188196     */
    189197    ASMAtomicWriteBool(&mFakeAsync, true);
     198    devLock.release();
    190199    interruptWait();
    191200    return VINF_SUCCESS;
     
    222231void USBProxyServiceDarwin::releaseDeviceCompleted(HostUSBDevice *aDevice, bool aSuccess)
    223232{
     233    AssertReturnVoid(aDevice->isWriteLockOnCurrentThread());
    224234#ifdef VBOX_WITH_NEW_USB_CODE_ON_DARWIN
    225235    /*
     
    234244
    235245
     246/** @todo unused */
    236247void USBProxyServiceDarwin::detachingDevice(HostUSBDevice *aDevice)
    237248{
    238249#ifndef VBOX_WITH_NEW_USB_CODE_ON_DARWIN
    239     aDevice->setLogicalReconnect (HostUSBDevice::kDetachingPendingDetach);
     250    aDevice->setLogicalReconnect(HostUSBDevice::kDetachingPendingDetach);
    240251#else
    241252    NOREF(aDevice);
     
    246257bool USBProxyServiceDarwin::updateDeviceState(HostUSBDevice *aDevice, PUSBDEVICE aUSBDevice, bool *aRunFilters, SessionMachine **aIgnoreMachine)
    247258{
     259    AssertReturn(aDevice, false);
     260    AssertReturn(!aDevice->isWriteLockOnCurrentThread(), false);
    248261#ifndef VBOX_WITH_NEW_USB_CODE_ON_DARWIN
    249262    /* We're faking async state stuff. */
     
    264277#endif
    265278
    266     SInt32 rc = CFRunLoopRunInMode(CFSTR (VBOX_IOKIT_MODE_STRING),
     279    SInt32 rc = CFRunLoopRunInMode(CFSTR(VBOX_IOKIT_MODE_STRING),
    267280                                   mWaitABitNextTime && aMillies >= 1000
    268281                                   ? 1.0 /* seconds */
     
    277290
    278291
    279 int USBProxyServiceDarwin::interruptWait (void)
     292int USBProxyServiceDarwin::interruptWait(void)
    280293{
    281294    if (mServiceRunLoopRef)
    282         CFRunLoopStop (mServiceRunLoopRef);
     295        CFRunLoopStop(mServiceRunLoopRef);
    283296    return 0;
    284297}
    285298
    286299
    287 PUSBDEVICE USBProxyServiceDarwin::getDevices (void)
     300PUSBDEVICE USBProxyServiceDarwin::getDevices(void)
    288301{
    289302    /* call iokit.cpp */
     
    292305
    293306
    294 void USBProxyServiceDarwin::serviceThreadInit (void)
     307void USBProxyServiceDarwin::serviceThreadInit(void)
    295308{
    296309    mServiceRunLoopRef = CFRunLoopGetCurrent();
     
    299312
    300313
    301 void USBProxyServiceDarwin::serviceThreadTerm (void)
    302 {
    303     DarwinUnsubscribeUSBNotifications (mNotifyOpaque);
     314void USBProxyServiceDarwin::serviceThreadTerm(void)
     315{
     316    DarwinUnsubscribeUSBNotifications(mNotifyOpaque);
    304317    mServiceRunLoopRef = NULL;
    305318}
     
    311324 * @param   pCur    The USB device to free.
    312325 */
    313 void DarwinFreeUSBDeviceFromIOKit (PUSBDEVICE pCur)
    314 {
    315     USBProxyService::freeDevice (pCur);
    316 }
    317 
     326void DarwinFreeUSBDeviceFromIOKit(PUSBDEVICE pCur)
     327{
     328    USBProxyService::freeDevice(pCur);
     329}
     330
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