VirtualBox

Changeset 47627 in vbox


Ignore:
Timestamp:
Aug 9, 2013 8:31:24 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
87828
Message:

Main/GuestCtrl: Reduced locking times, more error checking, adjusted logging.

Location:
trunk/src/VBox/Main
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h

    r47469 r47627  
    388388    const ComPtr<IEvent>             Event(void) { return mEvent; };
    389389    const std::list<VBoxEventType_T> Types(void) { return mEventTypes; };
     390    size_t                           TypeCount(void) { return mEventTypes.size(); }
    390391    virtual int                      Signal(IEvent *pEvent);
    391392    int                              Wait(RTMSINTERVAL uTimeoutMS);
  • trunk/src/VBox/Main/include/GuestProcessImpl.h

    r47469 r47627  
    7777    inline int checkPID(uint32_t uPID);
    7878    static Utf8Str guestErrorToString(int guestRc);
    79     bool isReady(void);
    8079    int readData(uint32_t uHandle, uint32_t uSize, uint32_t uTimeoutMS, void *pvData, size_t cbData, uint32_t *pcbRead, int *pGuestRc);
    8180    static HRESULT setErrorExternal(VirtualBoxBase *pInterface, int guestRc);
     
    9796     * @{ */
    9897    inline bool isAlive(void);
     98    inline bool hasEnded(void);
    9999    int onGuestDisconnected(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData);
    100100    int onProcessInputStatus(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData);
  • trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp

    r47469 r47627  
    110110    VBOXGUESTCTRLHOSTCBCTX ctxCb = { u32Function, uContextID };
    111111    rc = pGuest->dispatchToSession(&ctxCb, pSvcCb);
    112     LogFlowFuncLeaveRC(rc);
     112
     113    LogFlowFunc(("Returning rc=%Rrc\n", rc));
    113114    return rc;
    114115}
     
    322323        rc = VERR_NOT_FOUND;
    323324
    324     LogFlowFuncLeaveRC(rc);
     325    LogFlowThisFunc(("Returning rc=%Rrc\n", rc));
    325326    return rc;
    326327}
     
    341342        if (pSession == itSessions->second)
    342343        {
    343             GuestSession *pCurSession = itSessions->second;
    344             AssertPtr(pCurSession);
     344            /* Make sure to consume the pointer before the one of the
     345             * iterator gets released. */
     346            ComObjPtr<GuestSession> pCurSession = pSession;
    345347
    346348            LogFlowFunc(("Removing session (pSession=%p, ID=%RU32) (now total %ld sessions)\n",
    347                          pCurSession, pCurSession->getId(), mData.mGuestSessions.size() - 1));
     349                         pSession, pSession->getId(), mData.mGuestSessions.size() - 1));
    348350
    349351            itSessions->second->Release();
     
    351353            mData.mGuestSessions.erase(itSessions);
    352354
    353             fireGuestSessionRegisteredEvent(mEventSource, pSession,
     355            alock.release(); /* Release lock before firing off event. */
     356
     357            fireGuestSessionRegisteredEvent(mEventSource, pCurSession,
    354358                                            false /* Unregistered */);
    355359            rc = VINF_SUCCESS;
     
    360364    }
    361365
    362     LogFlowFuncLeaveRC(rc);
     366    LogFlowThisFunc(("Returning rc=%Rrc\n", rc));
    363367    return rc;
    364368}
     
    431435        mData.mGuestSessions[uNewSessionID] = pGuestSession;
    432436
     437        alock.release(); /* Release lock before firing off event. */
     438
    433439        fireGuestSessionRegisteredEvent(mEventSource, pGuestSession,
    434440                                        true /* Registered */);
     
    439445    }
    440446
    441     LogFlowFuncLeaveRC(rc);
     447    LogFlowThisFunc(("Returning rc=%Rrc\n", rc));
    442448    return rc;
    443449}
     
    452458/////////////////////////////////////////////////////////////////////////////
    453459
    454 STDMETHODIMP Guest::CreateSession(IN_BSTR aUser, IN_BSTR aPassword, IN_BSTR aDomain, IN_BSTR aSessionName, IGuestSession **aGuestSession)
     460STDMETHODIMP Guest::CreateSession(IN_BSTR aUser, IN_BSTR aPassword, IN_BSTR aDomain,
     461                                  IN_BSTR aSessionName, IGuestSession **aGuestSession)
    455462{
    456463#ifndef VBOX_WITH_GUEST_CONTROL
     
    515522    }
    516523
    517     LogFlowFuncLeaveRC(rc);
     524    LogFlowThisFunc(("Returning rc=%Rhrc\n", hr));
    518525    return hr;
    519526#endif /* VBOX_WITH_GUEST_CONTROL */
  • trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp

    r47470 r47627  
    850850    AssertPtrReturn(puContextID, VERR_INVALID_POINTER);
    851851
     852    if (   uSessionID >= VBOX_GUESTCTRL_MAX_SESSIONS
     853        || uObjectID  >= VBOX_GUESTCTRL_MAX_OBJECTS)
     854        return VERR_INVALID_PARAMETER;
     855
    852856    uint32_t uCount = ASMAtomicIncU32(&mNextContextID);
    853857    if (uCount == VBOX_GUESTCTRL_MAX_CONTEXTS)
     
    859863    *puContextID = uNewContextID;
    860864
     865    LogFlowThisFunc(("mNextContextID=%RU32, uSessionID=%RU32, uObjectID=%RU32, uCount=%RU32, uNewContextID=%RU32\n",
     866                     mNextContextID, uSessionID, uObjectID, uCount, uNewContextID));
    861867    return VINF_SUCCESS;
    862868}
     
    913919                 itEvents != itTypes->second.end(); itEvents++)
    914920            {
     921                LogFlowThisFunc(("Signalling event=%p with type=%ld ...\n",
     922                                 (*itEvents), aType));
     923
    915924                ComPtr<IEvent> pThisEvent = aEvent;
    916925                Assert(!pThisEvent.isNull());
     
    969978    AssertPtrReturn(pEvent, VERR_INVALID_POINTER);
    970979
    971     LogFlowFunc(("pEvent=%p, uTimeoutMS=%RU32\n",
    972                  pEvent, uTimeoutMS));
    973 
    974980    int vrc = pEvent->Wait(uTimeoutMS);
    975981    if (RT_SUCCESS(vrc))
     
    991997    }
    992998
    993     LogFlowFuncLeaveRC(vrc);
    994999    return vrc;
    9951000}
     
    10271032                             uint32_t uParms, PVBOXHGCMSVCPARM paParms)
    10281033{
    1029     LogFlowThisFuncEnter();
    1030 
    10311034#ifndef VBOX_GUESTCTRL_TEST_CASE
    10321035    ComObjPtr<Console> pConsole = mConsole;
    10331036    Assert(!pConsole.isNull());
    10341037
     1038    int vrc = VERR_HGCM_SERVICE_NOT_FOUND;
     1039
    10351040    /* Forward the information to the VMM device. */
    10361041    VMMDev *pVMMDev = pConsole->getVMMDev();
    1037     AssertPtr(pVMMDev);
    1038 
    1039     LogFlowThisFunc(("uFunction=%RU32, uParms=%RU32\n", uFunction, uParms));
    1040     int vrc = pVMMDev->hgcmHostCall(HGCMSERVICE_NAME, uFunction, uParms, paParms);
    1041     if (RT_FAILURE(vrc))
    1042     {
    1043         /** @todo What to do here? */
     1042    if (pVMMDev)
     1043    {
     1044        LogFlowThisFunc(("uFunction=%RU32, uParms=%RU32\n", uFunction, uParms));
     1045        vrc = pVMMDev->hgcmHostCall(HGCMSERVICE_NAME, uFunction, uParms, paParms);
     1046        if (RT_FAILURE(vrc))
     1047        {
     1048            /** @todo What to do here? */
     1049        }
    10441050    }
    10451051#else
     1052    LogFlowThisFuncEnter();
     1053
    10461054    /* Not needed within testcases. */
    10471055    int vrc = VINF_SUCCESS;
    10481056#endif
    1049     LogFlowFuncLeaveRC(vrc);
    10501057    return vrc;
    10511058}
     
    10651072GuestWaitEvent::~GuestWaitEvent(void)
    10661073{
    1067 
    10681074}
    10691075
     
    10891095int GuestWaitEvent::Wait(RTMSINTERVAL uTimeoutMS)
    10901096{
    1091     LogFlowThisFunc(("uTimeoutMS=%RU32ms\n", uTimeoutMS));
    1092 
    10931097    int rc = VINF_SUCCESS;
    10941098
     
    11081112    }
    11091113
    1110     LogFlowFuncLeaveRC(rc);
    1111     return rc;
    1112 }
    1113 
     1114    return rc;
     1115}
     1116
  • trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp

    r47469 r47627  
    212212    uninit();
    213213
    214     LogFlowFuncLeaveRC(rc);
     214    LogFlowThisFunc(("Returning rc=%Rrc\n", rc));
    215215    return hr;
    216216#endif /* VBOX_WITH_GUEST_CONTROL */
     
    314314    }
    315315
    316     LogFlowFuncLeaveRC(rc);
     316    LogFlowThisFunc(("Returning rc=%Rrc\n", rc));
    317317    return hr;
    318318#endif /* VBOX_WITH_GUEST_CONTROL */
  • trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp

    r47470 r47627  
    363363    mEventSource.queryInterfaceTo(aEventSource);
    364364
    365     LogFlowFuncLeaveRC(S_OK);
     365    LogFlowThisFuncLeave();
    366366    return S_OK;
    367367#endif /* VBOX_WITH_GUEST_CONTROL */
     
    478478#endif
    479479
    480     AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    481 
    482480    int vrc;
    483481    switch (pCbCtx->uFunction)
     
    514512
    515513#ifdef DEBUG
    516     LogFlowFuncLeaveRC(vrc);
     514    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    517515#endif
    518516    return vrc;
     
    631629}
    632630
    633 bool GuestProcess::isReady(void)
    634 {
    635     AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
    636 
    637     if (mData.mStatus == ProcessStatus_Started)
    638     {
    639         Assert(mData.mPID); /* PID must not be 0. */
    640         return true;
    641     }
    642 
    643     return false;
     631inline bool GuestProcess::hasEnded(void)
     632{
     633    return (   mData.mStatus == ProcessStatus_TerminatedNormally
     634            || mData.mStatus == ProcessStatus_TerminatedSignal
     635            || mData.mStatus == ProcessStatus_TerminatedAbnormally
     636            || mData.mStatus == ProcessStatus_TimedOutKilled
     637            || mData.mStatus == ProcessStatus_TimedOutAbnormally
     638            || mData.mStatus == ProcessStatus_Down
     639            || mData.mStatus == ProcessStatus_Error);
    644640}
    645641
     
    649645    AssertPtrReturn(pSvcCbData, VERR_INVALID_POINTER);
    650646
    651     LogFlowThisFunc(("uPID=%RU32\n", mData.mPID));
    652 
    653647    int vrc = setProcessStatus(ProcessStatus_Down, VINF_SUCCESS);
    654648
    655     LogFlowFuncLeaveRC(vrc);
     649    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    656650    return vrc;
    657651}
     
    707701        if (inputStatus != ProcessInputStatus_Undefined)
    708702        {
     703            AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     704
     705            /* Copy over necessary data before releasing lock again. */
     706            uint32_t uPID = mData.mPID;
     707            /** @todo Also handle mSession? */
     708
     709            alock.release(); /* Release lock before firing off event. */
     710
    709711            fireGuestProcessInputNotifyEvent(mEventSource, mSession, this,
    710                                              mData.mPID, 0 /* StdIn */, dataCb.uProcessed, inputStatus);
    711         }
    712     }
    713 
    714     LogFlowFuncLeaveRC(vrc);
     712                                             uPID, 0 /* StdIn */, dataCb.uProcessed, inputStatus);
     713        }
     714    }
     715
     716    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    715717    return vrc;
    716718}
     
    757759            {
    758760                procStatus = ProcessStatus_Started;
     761
     762                AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    759763                mData.mPID = dataCb.uPID; /* Set the process PID. */
    760764                break;
     
    764768            {
    765769                procStatus = ProcessStatus_TerminatedNormally;
     770
     771                AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    766772                mData.mExitCode = dataCb.uFlags; /* Contains the exit code. */
    767773                break;
     
    771777            {
    772778                procStatus = ProcessStatus_TerminatedSignal;
     779
     780                AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    773781                mData.mExitCode = dataCb.uFlags; /* Contains the signal. */
    774782                break;
     
    824832    }
    825833
    826     LogFlowFuncLeaveRC(vrc);
     834    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    827835    return vrc;
    828836}
     
    860868    }
    861869
    862     LogFlowFuncLeaveRC(vrc);
     870    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    863871    return vrc;
    864872}
     
    940948    unregisterWaitEvent(pEvent);
    941949
    942     LogFlowFuncLeaveRC(vrc);
     950    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    943951    return vrc;
    944952}
     
    947955int GuestProcess::setProcessStatus(ProcessStatus_T procStatus, int procRc)
    948956{
     957    LogFlowThisFuncEnter();
     958
     959    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
     960
    949961    LogFlowThisFunc(("oldStatus=%ld, newStatus=%ld, procRc=%Rrc\n",
    950962                     mData.mStatus, procStatus, procRc));
     
    955967        /* Do not allow overwriting an already set error. If this happens
    956968         * this means we forgot some error checking/locking somewhere. */
    957         //AssertMsg(RT_SUCCESS(mData.mRC), ("Guest rc already set (to %Rrc)\n", mData.mRC));
     969        AssertMsg(RT_SUCCESS(mData.mRC), ("Guest rc already set (to %Rrc)\n", mData.mRC));
    958970    }
    959971    else
    960972        AssertMsg(RT_SUCCESS(procRc), ("Guest rc must not be an error (%Rrc)\n", procRc));
     973
     974    int rc = VINF_SUCCESS;
    961975
    962976    if (mData.mStatus != procStatus) /* Was there a process status change? */
     
    976990        }
    977991
     992        /* Copy over necessary data before releasing lock again. */
     993        uint32_t uPID =  mData.mPID;
     994        ProcessStatus_T uStatus = mData.mStatus;
     995        /** @todo Also handle mSession? */
     996
     997        alock.release(); /* Release lock before firing off event. */
     998
    978999        fireGuestProcessStateChangedEvent(mEventSource, mSession, this,
    979                                           mData.mPID, mData.mStatus, errorInfo);
    980     }
    981 
    982     return VINF_SUCCESS;
     1000                                          uPID, uStatus, errorInfo);
     1001#if 0
     1002        /*
     1003         * On Guest Additions < 4.3 there is no guarantee that outstanding
     1004         * requests will be delivered to the host after the process has ended,
     1005         * so just cancel all waiting events here to not let clients run
     1006         * into timeouts.
     1007         */
     1008        if (   mSession->getProtocolVersion() < 2
     1009            && hasEnded())
     1010        {
     1011            LogFlowThisFunc(("Process ended, canceling outstanding wait events ...\n"));
     1012            rc = cancelWaitEvents();
     1013        }
     1014#endif
     1015    }
     1016
     1017    return rc;
    9831018}
    9841019
     
    9941029int GuestProcess::startProcess(uint32_t uTimeoutMS, int *pGuestRc)
    9951030{
    996     LogFlowThisFunc(("uTimeoutMS=%RU32, procCmd=%s, procTimeoutMS=%RU32, procFlags=%x\n",
    997                      uTimeoutMS, mData.mProcess.mCommand.c_str(), mData.mProcess.mTimeoutMS, mData.mProcess.mFlags));
     1031    LogFlowThisFunc(("uTimeoutMS=%RU32, procCmd=%s, procTimeoutMS=%RU32, procFlags=%x, sessionID=%RU32\n",
     1032                     uTimeoutMS, mData.mProcess.mCommand.c_str(), mData.mProcess.mTimeoutMS, mData.mProcess.mFlags,
     1033                     mSession->getId()));
    9981034
    9991035    /* Wait until the caller function (if kicked off by a thread)
     
    11331169    unregisterWaitEvent(pEvent);
    11341170
    1135     LogFlowFuncLeaveRC(vrc);
     1171    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    11361172    return vrc;
    11371173}
     
    11651201    }
    11661202
    1167     LogFlowFuncLeaveRC(vrc);
     1203    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    11681204    return vrc;
    11691205}
     
    11871223    /* Nothing to do here anymore. */
    11881224
    1189     LogFlowFuncLeaveRC(vrc);
     1225    LogFlowFunc(("pProcess=%p returning rc=%Rrc\n", pProcess, vrc));
    11901226    return vrc;
    11911227}
     
    12441280    }
    12451281
    1246     LogFlowFuncLeaveRC(vrc);
     1282    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    12471283    return vrc;
    12481284}
     
    13671403int GuestProcess::waitFor(uint32_t fWaitFlags, ULONG uTimeoutMS, ProcessWaitResult_T &waitResult, int *pGuestRc)
    13681404{
    1369     LogFlowThisFuncEnter();
    1370 
    13711405    AssertReturn(fWaitFlags, VERR_INVALID_PARAMETER);
    13721406
    13731407    AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
    13741408
    1375     LogFlowThisFunc(("fWaitFlags=0x%x, uTimeoutMS=%RU32, mStatus=%RU32, pGuestRc=%p\n",
    1376                      fWaitFlags, uTimeoutMS, mData.mStatus, pGuestRc));
     1409    LogFlowThisFunc(("fWaitFlags=0x%x, uTimeoutMS=%RU32, procStatus=%RU32, procRc=%Rrc, pGuestRc=%p\n",
     1410                     fWaitFlags, uTimeoutMS, mData.mStatus, mData.mRC, pGuestRc));
    13771411
    13781412    /* Did some error occur before? Then skip waiting and return. */
     
    13871421
    13881422    waitResult = waitFlagsToResult(fWaitFlags);
    1389     LogFlowThisFunc(("procStatus=%ld, procRc=%Rrc, waitResult=%ld\n",
    1390                      mData.mStatus, mData.mRC, waitResult));
     1423    LogFlowThisFunc(("waitFlagToResult=%ld\n", waitResult));
    13911424
    13921425    /* No waiting needed? Return immediately using the last set error. */
     
    14501483        else /* Waiting failed, bail out. */
    14511484            break;
     1485
     1486        alock.release(); /* Don't hold lock in next waiting round. */
    14521487    }
    14531488
    14541489    unregisterWaitEvent(pEvent);
    14551490
    1456     LogFlowThisFunc(("waitResult=%ld, processStatus=%ld, rc=%Rrc\n",
     1491    LogFlowThisFunc(("Returned waitResult=%ld, processStatus=%ld, rc=%Rrc\n",
    14571492                     waitResult, processStatus, vrc));
    14581493    return vrc;
     
    14991534{
    15001535    AssertPtrReturn(pEvent, VERR_INVALID_POINTER);
     1536    /* pvData is optional. */
     1537    /* cbData is optional. */
     1538    /* pcbRead is optional. */
     1539
     1540    LogFlowThisFunc(("cEventTypes=%zu, pEvent=%p, uHandle=%RU32, uTimeoutMS=%RU32, pvData=%p, cbData=%zu, pcbRead=%p\n",
     1541                     pEvent->TypeCount(), pEvent, uHandle, uTimeoutMS, pvData, cbData, pcbRead));
    15011542
    15021543    int vrc;
     
    15101551        if (RT_SUCCESS(vrc))
    15111552        {
     1553#ifdef DEBUG_andy
     1554            LogFlowThisFunc(("pEvent=%p, evtType=%ld\n", pEvent, evtType));
     1555#endif
    15121556            if (evtType == VBoxEventType_OnGuestProcessOutput)
    15131557            {
     
    15171561                ULONG uHandleEvent;
    15181562                HRESULT hr = pProcessEvent->COMGETTER(Handle)(&uHandleEvent);
    1519                 if (uHandleEvent == uHandle)
     1563                LogFlowThisFunc(("Received output, uHandle=%RU32\n", uHandleEvent));
     1564                if (   SUCCEEDED(hr)
     1565                    && uHandleEvent == uHandle)
    15201566                {
    15211567                    if (pvData)
     
    15361582                        }
    15371583                    }
    1538                     if (pcbRead)
     1584
     1585                    if (   RT_SUCCESS(vrc)
     1586                        && pcbRead)
    15391587                    {
    15401588                        ULONG cbRead;
     
    15461594                    break;
    15471595                }
     1596                else if (FAILED(hr))
     1597                    vrc = VERR_COM_UNEXPECTED;
    15481598            }
    15491599            else
     
    15511601        }
    15521602
    1553     } while (RT_SUCCESS(vrc));
    1554 
    1555     LogFlowFuncLeaveRC(vrc);
     1603    } while (vrc == VINF_SUCCESS);
     1604
     1605    if (   vrc != VINF_SUCCESS
     1606        && pcbRead)
     1607    {
     1608        *pcbRead = 0;
     1609    }
     1610
     1611    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    15561612    return vrc;
    15571613}
     
    17591815    LogFlowThisFunc(("rc=%Rrc, cbRead=%RU32\n", vrc, cbRead));
    17601816
    1761     LogFlowFuncLeaveRC(vrc);
     1817    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    17621818    return hr;
    17631819#endif /* VBOX_WITH_GUEST_CONTROL */
     
    18541910    }
    18551911
    1856     LogFlowFuncLeaveRC(vrc);
     1912    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    18571913    return hr;
    18581914#endif /* VBOX_WITH_GUEST_CONTROL */
     
    19221978    *aWritten = (ULONG)cbWritten;
    19231979
    1924     LogFlowFuncLeaveRC(vrc);
     1980    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    19251981    return hr;
    19261982#endif /* VBOX_WITH_GUEST_CONTROL */
     
    19932049    }
    19942050
    1995     LogFlowFuncLeaveRC(vrc);
     2051    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    19962052    return vrc;
    19972053}
     
    20842140        if (RT_SUCCESS(vrc))
    20852141            return vrc;
     2142        /* else do the the waiting below. */
    20862143    }
    20872144
     
    20952152    LogFlowThisFunc(("waitFlags=0x%x\n", fWaitFlags));
    20962153
    2097     /** @todo Decrease timeout. */
     2154    /** @todo Decrease timeout while running. */
    20982155    uint32_t uTimeoutMS = mStartupInfo.mTimeoutMS;
    20992156
     
    21632220        if (fHandleStdOut)
    21642221        {
     2222            cbRead = 0;
    21652223            vrc = pProcess->readData(OUTPUT_HANDLE_ID_STDOUT, sizeof(byBuf),
    21662224                                     uTimeoutMS, byBuf, sizeof(byBuf),
     
    21712229            if (cbRead)
    21722230            {
    2173                 LogFlowThisFunc(("Received %RU64 bytes from stdout\n", cbRead));
     2231                LogFlowThisFunc(("Received %RU32 bytes from stdout\n", cbRead));
    21742232                vrc = mStdOut.AddData(byBuf, cbRead);
    21752233
     
    21892247        if (fHandleStdErr)
    21902248        {
     2249            cbRead = 0;
    21912250            vrc = pProcess->readData(OUTPUT_HANDLE_ID_STDERR, sizeof(byBuf),
    21922251                                     uTimeoutMS, byBuf, sizeof(byBuf),
     
    21972256            if (cbRead)
    21982257            {
    2199                 LogFlowThisFunc(("Received %RU64 bytes from stderr\n", cbRead));
     2258                LogFlowThisFunc(("Received %RU32 bytes from stderr\n", cbRead));
    22002259                vrc = mStdErr.AddData(byBuf, cbRead);
    22012260            }
     
    22112270        *pGuestRc = guestRc;
    22122271
    2213     LogFlowFuncLeaveRC(vrc);
     2272    LogFlowThisFunc(("Returning rc=%Rrc\n", vrc));
    22142273    return vrc;
    22152274}
  • trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp

    r47469 r47627  
    341341    mData.mCredentials.mUser.cloneTo(aUser);
    342342
    343     LogFlowFuncLeaveRC(S_OK);
     343    LogFlowThisFuncLeave();
    344344    return S_OK;
    345345#endif /* VBOX_WITH_GUEST_CONTROL */
     
    362362    mData.mCredentials.mDomain.cloneTo(aDomain);
    363363
    364     LogFlowFuncLeaveRC(S_OK);
     364    LogFlowThisFuncLeave();
    365365    return S_OK;
    366366#endif /* VBOX_WITH_GUEST_CONTROL */
     
    383383    mData.mSession.mName.cloneTo(aName);
    384384
    385     LogFlowFuncLeaveRC(S_OK);
     385    LogFlowThisFuncLeave();
    386386    return S_OK;
    387387#endif /* VBOX_WITH_GUEST_CONTROL */
     
    404404    *aId = mData.mSession.mID;
    405405
    406     LogFlowFuncLeaveRC(S_OK);
     406    LogFlowThisFuncLeave();
    407407    return S_OK;
    408408#endif /* VBOX_WITH_GUEST_CONTROL */
     
    425425    *aStatus = mData.mStatus;
    426426
    427     LogFlowFuncLeaveRC(S_OK);
     427    LogFlowThisFuncLeave();
    428428    return S_OK;
    429429#endif /* VBOX_WITH_GUEST_CONTROL */
     
    446446    *aTimeout = mData.mTimeout;
    447447
    448     LogFlowFuncLeaveRC(S_OK);
     448    LogFlowThisFuncLeave();
    449449    return S_OK;
    450450#endif /* VBOX_WITH_GUEST_CONTROL */
     
    465465    mData.mTimeout = aTimeout;
    466466
    467     LogFlowFuncLeaveRC(S_OK);
     467    LogFlowThisFuncLeave();
    468468    return S_OK;
    469469#endif /* VBOX_WITH_GUEST_CONTROL */
     
    486486    *aVersion = mData.mProtocolVersion;
    487487
    488     LogFlowFuncLeaveRC(S_OK);
     488    LogFlowThisFuncLeave();
    489489    return S_OK;
    490490#endif /* VBOX_WITH_GUEST_CONTROL */
     
    517517    environment.detachTo(ComSafeArrayOutArg(aEnvironment));
    518518
    519     LogFlowFuncLeaveRC(S_OK);
     519    LogFlowThisFuncLeave();
    520520    return S_OK;
    521521#endif /* VBOX_WITH_GUEST_CONTROL */
     
    631631    mEventSource.queryInterfaceTo(aEventSource);
    632632
    633     LogFlowFuncLeaveRC(S_OK);
     633    LogFlowThisFuncLeave();
    634634    return S_OK;
    635635#endif /* VBOX_WITH_GUEST_CONTROL */
     
    685685    paParms[i++].setUInt32(uFlags);
    686686
     687    alock.release(); /* Drop the write lock before waiting. */
     688
    687689    vrc = sendCommand(HOST_SESSION_CLOSE, i, paParms);
    688690    if (RT_SUCCESS(vrc))
    689     {
    690         alock.release(); /* Drop the write lock before waiting. */
    691 
    692691        vrc = waitForStatusChange(pEvent, GuestSessionWaitForFlag_Terminate, uTimeoutMS,
    693692                                  NULL /* Session status */, pGuestRc);
    694     }
    695693
    696694    unregisterWaitEvent(pEvent);
     
    991989        if (pFile == itFiles->second)
    992990        {
    993             GuestFile *pThis = itFiles->second;
    994             AssertPtr(pThis);
     991            /* Make sure to consume the pointer before the one of thfe
     992             * iterator gets released. */
     993            ComObjPtr<GuestFile> pCurFile = pFile;
    995994
    996995            Bstr strName;
    997             HRESULT hr = pThis->COMGETTER(FileName)(strName.asOutParam());
     996            HRESULT hr = pCurFile->COMGETTER(FileName)(strName.asOutParam());
    998997            ComAssertComRC(hr);
    999998
     
    10021001                             Utf8Str(strName).c_str(), mData.mSession.mID, mData.mFiles.size() - 1, mData.mNumObjects - 1));
    10031002
     1003            itFiles->second->Release();
     1004
    10041005            mData.mFiles.erase(itFiles);
    10051006            mData.mNumObjects--;
    10061007
    1007             fireGuestFileRegisteredEvent(mEventSource, this, pFile,
     1008            alock.release(); /* Release lock before firing off event. */
     1009
     1010            fireGuestFileRegisteredEvent(mEventSource, this, pCurFile,
    10081011                                         false /* Unregistered */);
    10091012            return VINF_SUCCESS;
     
    11071110        LogFlowFunc(("Added new guest file \"%s\" (Session: %RU32) (now total %ld files, %ld objects)\n",
    11081111                     openInfo.mFileName.c_str(), mData.mSession.mID, mData.mFiles.size(), mData.mNumObjects));
     1112
     1113        alock.release(); /* Release lock before firing off event. */
    11091114
    11101115        fireGuestFileRegisteredEvent(mEventSource, this, pFile,
     
    13341339
    13351340    /* Set the session status. */
    1336     if (sessionStatus != GuestSessionStatus_Undefined)
    1337     {
    1338         int rc2 = setSessionStatus(sessionStatus, guestRc);
    1339         if (RT_SUCCESS(vrc))
    1340             vrc = rc2;
    1341     }
     1341    if (RT_SUCCESS(vrc))
     1342        vrc = setSessionStatus(sessionStatus, guestRc);
    13421343
    13431344    LogFlowThisFunc(("ID=%RU32, guestRc=%Rrc\n", mData.mSession.mID, guestRc));
     
    14051406    paParms[i++].setUInt32(mData.mSession.mOpenFlags);
    14061407
     1408    alock.release(); /* Drop write lock before sending. */
     1409
    14071410    vrc = sendCommand(HOST_SESSION_CREATE, i, paParms);
    14081411    if (RT_SUCCESS(vrc))
    1409     {
    1410         alock.release(); /* Drop write lock before waiting. */
    1411 
    14121412        vrc = waitForStatusChange(pEvent, GuestSessionWaitForFlag_Start,
    14131413                                  30 * 1000 /* 30s timeout */,
    14141414                                  NULL /* Session status */, pGuestRc);
    1415     }
    14161415
    14171416    unregisterWaitEvent(pEvent);
     
    14951494        if (pProcess == itProcs->second)
    14961495        {
    1497             GuestProcess *pCurProc = itProcs->second;
    1498             AssertPtr(pCurProc);
    1499 
    1500             hr = pCurProc->COMGETTER(PID)(&uPID);
     1496            /* Make sure to consume the pointer before the one of thfe
     1497             * iterator gets released. */
     1498            ComObjPtr<GuestProcess> pCurProcess = pProcess;
     1499
     1500            hr = pCurProcess->COMGETTER(PID)(&uPID);
    15011501            ComAssertComRC(hr);
    15021502
    15031503            Assert(mData.mNumObjects);
    15041504            LogFlowFunc(("Removing process ID=%RU32 (Session: %RU32), guest PID=%RU32 (now total %ld processes, %ld objects)\n",
    1505                          pCurProc->getObjectID(), mData.mSession.mID, uPID, mData.mProcesses.size() - 1, mData.mNumObjects - 1));
    1506 
    1507             pCurProc->cancelWaitEvents();
    1508 
    1509             itProcs->second->Release();
     1505                         pProcess->getObjectID(), mData.mSession.mID, uPID, mData.mProcesses.size() - 1, mData.mNumObjects - 1));
     1506
     1507            pProcess->cancelWaitEvents();
     1508            pProcess->Release();
    15101509
    15111510            mData.mProcesses.erase(itProcs);
    15121511            mData.mNumObjects--;
    15131512
    1514             fireGuestProcessRegisteredEvent(mEventSource, this /* Session */, NULL /* Process */,
     1513            alock.release(); /* Release lock before firing off event. */
     1514
     1515            fireGuestProcessRegisteredEvent(mEventSource, this /* Session */, pCurProcess,
    15151516                                            uPID, false /* Process unregistered */);
    15161517            rc = VINF_SUCCESS;
     
    18151816    uint32_t uVBoxMinor    = VBOX_FULL_VERSION_GET_MINOR(uVerAdditions);
    18161817
     1818#if 0
     1819    /* Hardcode the to-used protocol version; nice for testing side effects. */
     1820    mData.mProtocolVersion = 2;
     1821#else
    18171822    mData.mProtocolVersion = (
    18181823                              /* VBox 5.0 and up. */
     
    18231828                           : 1; /* Legacy guest control (VBox < 4.3). */
    18241829    /* Build revision is ignored. */
     1830#endif
    18251831
    18261832    LogFlowThisFunc(("uVerAdditions=%RU32 (%RU32.%RU32), mProtocolVersion=%RU32\n",
     
    18291835    /* Tell the user but don't bitch too often. */
    18301836    static short s_gctrlLegacyWarning = 0;
    1831     if (s_gctrlLegacyWarning++ < 3) /** @todo Find a bit nicer text. */
     1837    if (   mData.mProtocolVersion < 2
     1838        && s_gctrlLegacyWarning++ < 3) /** @todo Find a bit nicer text. */
    18321839        LogRel((tr("Warning: Guest Additions are older (%ld.%ld) than host capabilities for guest control, please upgrade them. Using protocol version %ld now\n"),
    18331840                uVBoxMajor, uVBoxMinor, mData.mProtocolVersion));
     
    19411948    }
    19421949
    1943     alock.release(); /* Release lock before waiting. */
    1944 
    19451950    int vrc;
    19461951
     
    19611966    if (RT_FAILURE(vrc))
    19621967        return vrc;
     1968
     1969    alock.release(); /* Release lock before waiting. */
    19631970
    19641971    GuestSessionStatus_T sessionStatus;
     
    20352042            *pGuestRc = (int)lGuestRc;
    20362043
    2037         LogFlowThisFunc(("Status changed event for session ID=%RU32: %ld (%Rrc)\n",
     2044        LogFlowThisFunc(("Status changed event for session ID=%RU32, new status is: %ld (%Rrc)\n",
    20382045                         mData.mSession.mID, sessionStatus,
    20392046                         RT_SUCCESS((int)lGuestRc) ? VINF_SUCCESS : (int)lGuestRc));
     
    25302537    mData.mEnvironment.Clear();
    25312538
    2532     LogFlowFuncLeaveRC(S_OK);
     2539    LogFlowThisFuncLeave();
    25332540    return S_OK;
    25342541#endif /* VBOX_WITH_GUEST_CONTROL */
     
    25552562    strValue.cloneTo(aValue);
    25562563
    2557     LogFlowFuncLeaveRC(S_OK);
     2564    LogFlowThisFuncLeave();
    25582565    return S_OK;
    25592566#endif /* VBOX_WITH_GUEST_CONTROL */
     
    25972604    mData.mEnvironment.Unset(Utf8Str(aName));
    25982605
    2599     LogFlowFuncLeaveRC(S_OK);
     2606    LogFlowThisFuncLeave();
    26002607    return S_OK;
    26012608#endif /* VBOX_WITH_GUEST_CONTROL */
  • trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp

    r47469 r47627  
    361361             * order to reduce the CPU load due to busy waiting. */
    362362            if (waitRes == ProcessWaitResult_WaitFlagNotSupported)
    363                 RTThreadSleep(1); /* Optional, don't check rc. */
     363                RTThreadYield(); /* Optional, don't check rc. */
    364364
    365365            size_t cbRead = 0;
     
    695695                         * order to reduce the CPU load due to busy waiting. */
    696696                        if (waitRes == ProcessWaitResult_WaitFlagNotSupported)
    697                             RTThreadSleep(1); /* Optional, don't check rc. */
    698 
    699                         uint32_t cbRead;
     697                            RTThreadYield(); /* Optional, don't check rc. */
     698
     699                        uint32_t cbRead = 0; /* readData can return with VWRN_GSTCTL_OBJECTSTATE_CHANGED. */
    700700                        rc = pProcess->readData(OUTPUT_HANDLE_ID_STDOUT, sizeof(byBuf),
    701701                                                30 * 1000 /* Timeout */, byBuf, sizeof(byBuf),
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