Changeset 47627 in vbox
- Timestamp:
- Aug 9, 2013 8:31:24 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87828
- Location:
- trunk/src/VBox/Main
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r47469 r47627 388 388 const ComPtr<IEvent> Event(void) { return mEvent; }; 389 389 const std::list<VBoxEventType_T> Types(void) { return mEventTypes; }; 390 size_t TypeCount(void) { return mEventTypes.size(); } 390 391 virtual int Signal(IEvent *pEvent); 391 392 int Wait(RTMSINTERVAL uTimeoutMS); -
trunk/src/VBox/Main/include/GuestProcessImpl.h
r47469 r47627 77 77 inline int checkPID(uint32_t uPID); 78 78 static Utf8Str guestErrorToString(int guestRc); 79 bool isReady(void);80 79 int readData(uint32_t uHandle, uint32_t uSize, uint32_t uTimeoutMS, void *pvData, size_t cbData, uint32_t *pcbRead, int *pGuestRc); 81 80 static HRESULT setErrorExternal(VirtualBoxBase *pInterface, int guestRc); … … 97 96 * @{ */ 98 97 inline bool isAlive(void); 98 inline bool hasEnded(void); 99 99 int onGuestDisconnected(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData); 100 100 int onProcessInputStatus(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCbData); -
trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp
r47469 r47627 110 110 VBOXGUESTCTRLHOSTCBCTX ctxCb = { u32Function, uContextID }; 111 111 rc = pGuest->dispatchToSession(&ctxCb, pSvcCb); 112 LogFlowFuncLeaveRC(rc); 112 113 LogFlowFunc(("Returning rc=%Rrc\n", rc)); 113 114 return rc; 114 115 } … … 322 323 rc = VERR_NOT_FOUND; 323 324 324 LogFlow FuncLeaveRC(rc);325 LogFlowThisFunc(("Returning rc=%Rrc\n", rc)); 325 326 return rc; 326 327 } … … 341 342 if (pSession == itSessions->second) 342 343 { 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; 345 347 346 348 LogFlowFunc(("Removing session (pSession=%p, ID=%RU32) (now total %ld sessions)\n", 347 p CurSession, pCurSession->getId(), mData.mGuestSessions.size() - 1));349 pSession, pSession->getId(), mData.mGuestSessions.size() - 1)); 348 350 349 351 itSessions->second->Release(); … … 351 353 mData.mGuestSessions.erase(itSessions); 352 354 353 fireGuestSessionRegisteredEvent(mEventSource, pSession, 355 alock.release(); /* Release lock before firing off event. */ 356 357 fireGuestSessionRegisteredEvent(mEventSource, pCurSession, 354 358 false /* Unregistered */); 355 359 rc = VINF_SUCCESS; … … 360 364 } 361 365 362 LogFlow FuncLeaveRC(rc);366 LogFlowThisFunc(("Returning rc=%Rrc\n", rc)); 363 367 return rc; 364 368 } … … 431 435 mData.mGuestSessions[uNewSessionID] = pGuestSession; 432 436 437 alock.release(); /* Release lock before firing off event. */ 438 433 439 fireGuestSessionRegisteredEvent(mEventSource, pGuestSession, 434 440 true /* Registered */); … … 439 445 } 440 446 441 LogFlow FuncLeaveRC(rc);447 LogFlowThisFunc(("Returning rc=%Rrc\n", rc)); 442 448 return rc; 443 449 } … … 452 458 ///////////////////////////////////////////////////////////////////////////// 453 459 454 STDMETHODIMP Guest::CreateSession(IN_BSTR aUser, IN_BSTR aPassword, IN_BSTR aDomain, IN_BSTR aSessionName, IGuestSession **aGuestSession) 460 STDMETHODIMP Guest::CreateSession(IN_BSTR aUser, IN_BSTR aPassword, IN_BSTR aDomain, 461 IN_BSTR aSessionName, IGuestSession **aGuestSession) 455 462 { 456 463 #ifndef VBOX_WITH_GUEST_CONTROL … … 515 522 } 516 523 517 LogFlow FuncLeaveRC(rc);524 LogFlowThisFunc(("Returning rc=%Rhrc\n", hr)); 518 525 return hr; 519 526 #endif /* VBOX_WITH_GUEST_CONTROL */ -
trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp
r47470 r47627 850 850 AssertPtrReturn(puContextID, VERR_INVALID_POINTER); 851 851 852 if ( uSessionID >= VBOX_GUESTCTRL_MAX_SESSIONS 853 || uObjectID >= VBOX_GUESTCTRL_MAX_OBJECTS) 854 return VERR_INVALID_PARAMETER; 855 852 856 uint32_t uCount = ASMAtomicIncU32(&mNextContextID); 853 857 if (uCount == VBOX_GUESTCTRL_MAX_CONTEXTS) … … 859 863 *puContextID = uNewContextID; 860 864 865 LogFlowThisFunc(("mNextContextID=%RU32, uSessionID=%RU32, uObjectID=%RU32, uCount=%RU32, uNewContextID=%RU32\n", 866 mNextContextID, uSessionID, uObjectID, uCount, uNewContextID)); 861 867 return VINF_SUCCESS; 862 868 } … … 913 919 itEvents != itTypes->second.end(); itEvents++) 914 920 { 921 LogFlowThisFunc(("Signalling event=%p with type=%ld ...\n", 922 (*itEvents), aType)); 923 915 924 ComPtr<IEvent> pThisEvent = aEvent; 916 925 Assert(!pThisEvent.isNull()); … … 969 978 AssertPtrReturn(pEvent, VERR_INVALID_POINTER); 970 979 971 LogFlowFunc(("pEvent=%p, uTimeoutMS=%RU32\n",972 pEvent, uTimeoutMS));973 974 980 int vrc = pEvent->Wait(uTimeoutMS); 975 981 if (RT_SUCCESS(vrc)) … … 991 997 } 992 998 993 LogFlowFuncLeaveRC(vrc);994 999 return vrc; 995 1000 } … … 1027 1032 uint32_t uParms, PVBOXHGCMSVCPARM paParms) 1028 1033 { 1029 LogFlowThisFuncEnter();1030 1031 1034 #ifndef VBOX_GUESTCTRL_TEST_CASE 1032 1035 ComObjPtr<Console> pConsole = mConsole; 1033 1036 Assert(!pConsole.isNull()); 1034 1037 1038 int vrc = VERR_HGCM_SERVICE_NOT_FOUND; 1039 1035 1040 /* Forward the information to the VMM device. */ 1036 1041 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 } 1044 1050 } 1045 1051 #else 1052 LogFlowThisFuncEnter(); 1053 1046 1054 /* Not needed within testcases. */ 1047 1055 int vrc = VINF_SUCCESS; 1048 1056 #endif 1049 LogFlowFuncLeaveRC(vrc);1050 1057 return vrc; 1051 1058 } … … 1065 1072 GuestWaitEvent::~GuestWaitEvent(void) 1066 1073 { 1067 1068 1074 } 1069 1075 … … 1089 1095 int GuestWaitEvent::Wait(RTMSINTERVAL uTimeoutMS) 1090 1096 { 1091 LogFlowThisFunc(("uTimeoutMS=%RU32ms\n", uTimeoutMS));1092 1093 1097 int rc = VINF_SUCCESS; 1094 1098 … … 1108 1112 } 1109 1113 1110 LogFlowFuncLeaveRC(rc); 1111 return rc; 1112 } 1113 1114 return rc; 1115 } 1116 -
trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp
r47469 r47627 212 212 uninit(); 213 213 214 LogFlow FuncLeaveRC(rc);214 LogFlowThisFunc(("Returning rc=%Rrc\n", rc)); 215 215 return hr; 216 216 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 314 314 } 315 315 316 LogFlow FuncLeaveRC(rc);316 LogFlowThisFunc(("Returning rc=%Rrc\n", rc)); 317 317 return hr; 318 318 #endif /* VBOX_WITH_GUEST_CONTROL */ -
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r47470 r47627 363 363 mEventSource.queryInterfaceTo(aEventSource); 364 364 365 LogFlow FuncLeaveRC(S_OK);365 LogFlowThisFuncLeave(); 366 366 return S_OK; 367 367 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 478 478 #endif 479 479 480 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);481 482 480 int vrc; 483 481 switch (pCbCtx->uFunction) … … 514 512 515 513 #ifdef DEBUG 516 LogFlow FuncLeaveRC(vrc);514 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 517 515 #endif 518 516 return vrc; … … 631 629 } 632 630 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; 631 inline 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); 644 640 } 645 641 … … 649 645 AssertPtrReturn(pSvcCbData, VERR_INVALID_POINTER); 650 646 651 LogFlowThisFunc(("uPID=%RU32\n", mData.mPID));652 653 647 int vrc = setProcessStatus(ProcessStatus_Down, VINF_SUCCESS); 654 648 655 LogFlow FuncLeaveRC(vrc);649 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 656 650 return vrc; 657 651 } … … 707 701 if (inputStatus != ProcessInputStatus_Undefined) 708 702 { 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 709 711 fireGuestProcessInputNotifyEvent(mEventSource, mSession, this, 710 mData.mPID, 0 /* StdIn */, dataCb.uProcessed, inputStatus);711 } 712 } 713 714 LogFlow FuncLeaveRC(vrc);712 uPID, 0 /* StdIn */, dataCb.uProcessed, inputStatus); 713 } 714 } 715 716 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 715 717 return vrc; 716 718 } … … 757 759 { 758 760 procStatus = ProcessStatus_Started; 761 762 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 759 763 mData.mPID = dataCb.uPID; /* Set the process PID. */ 760 764 break; … … 764 768 { 765 769 procStatus = ProcessStatus_TerminatedNormally; 770 771 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 766 772 mData.mExitCode = dataCb.uFlags; /* Contains the exit code. */ 767 773 break; … … 771 777 { 772 778 procStatus = ProcessStatus_TerminatedSignal; 779 780 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 773 781 mData.mExitCode = dataCb.uFlags; /* Contains the signal. */ 774 782 break; … … 824 832 } 825 833 826 LogFlow FuncLeaveRC(vrc);834 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 827 835 return vrc; 828 836 } … … 860 868 } 861 869 862 LogFlow FuncLeaveRC(vrc);870 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 863 871 return vrc; 864 872 } … … 940 948 unregisterWaitEvent(pEvent); 941 949 942 LogFlow FuncLeaveRC(vrc);950 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 943 951 return vrc; 944 952 } … … 947 955 int GuestProcess::setProcessStatus(ProcessStatus_T procStatus, int procRc) 948 956 { 957 LogFlowThisFuncEnter(); 958 959 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 960 949 961 LogFlowThisFunc(("oldStatus=%ld, newStatus=%ld, procRc=%Rrc\n", 950 962 mData.mStatus, procStatus, procRc)); … … 955 967 /* Do not allow overwriting an already set error. If this happens 956 968 * 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)); 958 970 } 959 971 else 960 972 AssertMsg(RT_SUCCESS(procRc), ("Guest rc must not be an error (%Rrc)\n", procRc)); 973 974 int rc = VINF_SUCCESS; 961 975 962 976 if (mData.mStatus != procStatus) /* Was there a process status change? */ … … 976 990 } 977 991 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 978 999 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; 983 1018 } 984 1019 … … 994 1029 int GuestProcess::startProcess(uint32_t uTimeoutMS, int *pGuestRc) 995 1030 { 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())); 998 1034 999 1035 /* Wait until the caller function (if kicked off by a thread) … … 1133 1169 unregisterWaitEvent(pEvent); 1134 1170 1135 LogFlow FuncLeaveRC(vrc);1171 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 1136 1172 return vrc; 1137 1173 } … … 1165 1201 } 1166 1202 1167 LogFlow FuncLeaveRC(vrc);1203 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 1168 1204 return vrc; 1169 1205 } … … 1187 1223 /* Nothing to do here anymore. */ 1188 1224 1189 LogFlowFunc LeaveRC(vrc);1225 LogFlowFunc(("pProcess=%p returning rc=%Rrc\n", pProcess, vrc)); 1190 1226 return vrc; 1191 1227 } … … 1244 1280 } 1245 1281 1246 LogFlow FuncLeaveRC(vrc);1282 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 1247 1283 return vrc; 1248 1284 } … … 1367 1403 int GuestProcess::waitFor(uint32_t fWaitFlags, ULONG uTimeoutMS, ProcessWaitResult_T &waitResult, int *pGuestRc) 1368 1404 { 1369 LogFlowThisFuncEnter();1370 1371 1405 AssertReturn(fWaitFlags, VERR_INVALID_PARAMETER); 1372 1406 1373 1407 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); 1374 1408 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)); 1377 1411 1378 1412 /* Did some error occur before? Then skip waiting and return. */ … … 1387 1421 1388 1422 waitResult = waitFlagsToResult(fWaitFlags); 1389 LogFlowThisFunc(("procStatus=%ld, procRc=%Rrc, waitResult=%ld\n", 1390 mData.mStatus, mData.mRC, waitResult)); 1423 LogFlowThisFunc(("waitFlagToResult=%ld\n", waitResult)); 1391 1424 1392 1425 /* No waiting needed? Return immediately using the last set error. */ … … 1450 1483 else /* Waiting failed, bail out. */ 1451 1484 break; 1485 1486 alock.release(); /* Don't hold lock in next waiting round. */ 1452 1487 } 1453 1488 1454 1489 unregisterWaitEvent(pEvent); 1455 1490 1456 LogFlowThisFunc((" waitResult=%ld, processStatus=%ld, rc=%Rrc\n",1491 LogFlowThisFunc(("Returned waitResult=%ld, processStatus=%ld, rc=%Rrc\n", 1457 1492 waitResult, processStatus, vrc)); 1458 1493 return vrc; … … 1499 1534 { 1500 1535 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)); 1501 1542 1502 1543 int vrc; … … 1510 1551 if (RT_SUCCESS(vrc)) 1511 1552 { 1553 #ifdef DEBUG_andy 1554 LogFlowThisFunc(("pEvent=%p, evtType=%ld\n", pEvent, evtType)); 1555 #endif 1512 1556 if (evtType == VBoxEventType_OnGuestProcessOutput) 1513 1557 { … … 1517 1561 ULONG uHandleEvent; 1518 1562 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) 1520 1566 { 1521 1567 if (pvData) … … 1536 1582 } 1537 1583 } 1538 if (pcbRead) 1584 1585 if ( RT_SUCCESS(vrc) 1586 && pcbRead) 1539 1587 { 1540 1588 ULONG cbRead; … … 1546 1594 break; 1547 1595 } 1596 else if (FAILED(hr)) 1597 vrc = VERR_COM_UNEXPECTED; 1548 1598 } 1549 1599 else … … 1551 1601 } 1552 1602 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)); 1556 1612 return vrc; 1557 1613 } … … 1759 1815 LogFlowThisFunc(("rc=%Rrc, cbRead=%RU32\n", vrc, cbRead)); 1760 1816 1761 LogFlow FuncLeaveRC(vrc);1817 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 1762 1818 return hr; 1763 1819 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 1854 1910 } 1855 1911 1856 LogFlow FuncLeaveRC(vrc);1912 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 1857 1913 return hr; 1858 1914 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 1922 1978 *aWritten = (ULONG)cbWritten; 1923 1979 1924 LogFlow FuncLeaveRC(vrc);1980 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 1925 1981 return hr; 1926 1982 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 1993 2049 } 1994 2050 1995 LogFlow FuncLeaveRC(vrc);2051 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 1996 2052 return vrc; 1997 2053 } … … 2084 2140 if (RT_SUCCESS(vrc)) 2085 2141 return vrc; 2142 /* else do the the waiting below. */ 2086 2143 } 2087 2144 … … 2095 2152 LogFlowThisFunc(("waitFlags=0x%x\n", fWaitFlags)); 2096 2153 2097 /** @todo Decrease timeout . */2154 /** @todo Decrease timeout while running. */ 2098 2155 uint32_t uTimeoutMS = mStartupInfo.mTimeoutMS; 2099 2156 … … 2163 2220 if (fHandleStdOut) 2164 2221 { 2222 cbRead = 0; 2165 2223 vrc = pProcess->readData(OUTPUT_HANDLE_ID_STDOUT, sizeof(byBuf), 2166 2224 uTimeoutMS, byBuf, sizeof(byBuf), … … 2171 2229 if (cbRead) 2172 2230 { 2173 LogFlowThisFunc(("Received %RU 64bytes from stdout\n", cbRead));2231 LogFlowThisFunc(("Received %RU32 bytes from stdout\n", cbRead)); 2174 2232 vrc = mStdOut.AddData(byBuf, cbRead); 2175 2233 … … 2189 2247 if (fHandleStdErr) 2190 2248 { 2249 cbRead = 0; 2191 2250 vrc = pProcess->readData(OUTPUT_HANDLE_ID_STDERR, sizeof(byBuf), 2192 2251 uTimeoutMS, byBuf, sizeof(byBuf), … … 2197 2256 if (cbRead) 2198 2257 { 2199 LogFlowThisFunc(("Received %RU 64bytes from stderr\n", cbRead));2258 LogFlowThisFunc(("Received %RU32 bytes from stderr\n", cbRead)); 2200 2259 vrc = mStdErr.AddData(byBuf, cbRead); 2201 2260 } … … 2211 2270 *pGuestRc = guestRc; 2212 2271 2213 LogFlow FuncLeaveRC(vrc);2272 LogFlowThisFunc(("Returning rc=%Rrc\n", vrc)); 2214 2273 return vrc; 2215 2274 } -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r47469 r47627 341 341 mData.mCredentials.mUser.cloneTo(aUser); 342 342 343 LogFlow FuncLeaveRC(S_OK);343 LogFlowThisFuncLeave(); 344 344 return S_OK; 345 345 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 362 362 mData.mCredentials.mDomain.cloneTo(aDomain); 363 363 364 LogFlow FuncLeaveRC(S_OK);364 LogFlowThisFuncLeave(); 365 365 return S_OK; 366 366 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 383 383 mData.mSession.mName.cloneTo(aName); 384 384 385 LogFlow FuncLeaveRC(S_OK);385 LogFlowThisFuncLeave(); 386 386 return S_OK; 387 387 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 404 404 *aId = mData.mSession.mID; 405 405 406 LogFlow FuncLeaveRC(S_OK);406 LogFlowThisFuncLeave(); 407 407 return S_OK; 408 408 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 425 425 *aStatus = mData.mStatus; 426 426 427 LogFlow FuncLeaveRC(S_OK);427 LogFlowThisFuncLeave(); 428 428 return S_OK; 429 429 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 446 446 *aTimeout = mData.mTimeout; 447 447 448 LogFlow FuncLeaveRC(S_OK);448 LogFlowThisFuncLeave(); 449 449 return S_OK; 450 450 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 465 465 mData.mTimeout = aTimeout; 466 466 467 LogFlow FuncLeaveRC(S_OK);467 LogFlowThisFuncLeave(); 468 468 return S_OK; 469 469 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 486 486 *aVersion = mData.mProtocolVersion; 487 487 488 LogFlow FuncLeaveRC(S_OK);488 LogFlowThisFuncLeave(); 489 489 return S_OK; 490 490 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 517 517 environment.detachTo(ComSafeArrayOutArg(aEnvironment)); 518 518 519 LogFlow FuncLeaveRC(S_OK);519 LogFlowThisFuncLeave(); 520 520 return S_OK; 521 521 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 631 631 mEventSource.queryInterfaceTo(aEventSource); 632 632 633 LogFlow FuncLeaveRC(S_OK);633 LogFlowThisFuncLeave(); 634 634 return S_OK; 635 635 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 685 685 paParms[i++].setUInt32(uFlags); 686 686 687 alock.release(); /* Drop the write lock before waiting. */ 688 687 689 vrc = sendCommand(HOST_SESSION_CLOSE, i, paParms); 688 690 if (RT_SUCCESS(vrc)) 689 {690 alock.release(); /* Drop the write lock before waiting. */691 692 691 vrc = waitForStatusChange(pEvent, GuestSessionWaitForFlag_Terminate, uTimeoutMS, 693 692 NULL /* Session status */, pGuestRc); 694 }695 693 696 694 unregisterWaitEvent(pEvent); … … 991 989 if (pFile == itFiles->second) 992 990 { 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; 995 994 996 995 Bstr strName; 997 HRESULT hr = p This->COMGETTER(FileName)(strName.asOutParam());996 HRESULT hr = pCurFile->COMGETTER(FileName)(strName.asOutParam()); 998 997 ComAssertComRC(hr); 999 998 … … 1002 1001 Utf8Str(strName).c_str(), mData.mSession.mID, mData.mFiles.size() - 1, mData.mNumObjects - 1)); 1003 1002 1003 itFiles->second->Release(); 1004 1004 1005 mData.mFiles.erase(itFiles); 1005 1006 mData.mNumObjects--; 1006 1007 1007 fireGuestFileRegisteredEvent(mEventSource, this, pFile, 1008 alock.release(); /* Release lock before firing off event. */ 1009 1010 fireGuestFileRegisteredEvent(mEventSource, this, pCurFile, 1008 1011 false /* Unregistered */); 1009 1012 return VINF_SUCCESS; … … 1107 1110 LogFlowFunc(("Added new guest file \"%s\" (Session: %RU32) (now total %ld files, %ld objects)\n", 1108 1111 openInfo.mFileName.c_str(), mData.mSession.mID, mData.mFiles.size(), mData.mNumObjects)); 1112 1113 alock.release(); /* Release lock before firing off event. */ 1109 1114 1110 1115 fireGuestFileRegisteredEvent(mEventSource, this, pFile, … … 1334 1339 1335 1340 /* 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); 1342 1343 1343 1344 LogFlowThisFunc(("ID=%RU32, guestRc=%Rrc\n", mData.mSession.mID, guestRc)); … … 1405 1406 paParms[i++].setUInt32(mData.mSession.mOpenFlags); 1406 1407 1408 alock.release(); /* Drop write lock before sending. */ 1409 1407 1410 vrc = sendCommand(HOST_SESSION_CREATE, i, paParms); 1408 1411 if (RT_SUCCESS(vrc)) 1409 {1410 alock.release(); /* Drop write lock before waiting. */1411 1412 1412 vrc = waitForStatusChange(pEvent, GuestSessionWaitForFlag_Start, 1413 1413 30 * 1000 /* 30s timeout */, 1414 1414 NULL /* Session status */, pGuestRc); 1415 }1416 1415 1417 1416 unregisterWaitEvent(pEvent); … … 1495 1494 if (pProcess == itProcs->second) 1496 1495 { 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); 1501 1501 ComAssertComRC(hr); 1502 1502 1503 1503 Assert(mData.mNumObjects); 1504 1504 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(); 1510 1509 1511 1510 mData.mProcesses.erase(itProcs); 1512 1511 mData.mNumObjects--; 1513 1512 1514 fireGuestProcessRegisteredEvent(mEventSource, this /* Session */, NULL /* Process */, 1513 alock.release(); /* Release lock before firing off event. */ 1514 1515 fireGuestProcessRegisteredEvent(mEventSource, this /* Session */, pCurProcess, 1515 1516 uPID, false /* Process unregistered */); 1516 1517 rc = VINF_SUCCESS; … … 1815 1816 uint32_t uVBoxMinor = VBOX_FULL_VERSION_GET_MINOR(uVerAdditions); 1816 1817 1818 #if 0 1819 /* Hardcode the to-used protocol version; nice for testing side effects. */ 1820 mData.mProtocolVersion = 2; 1821 #else 1817 1822 mData.mProtocolVersion = ( 1818 1823 /* VBox 5.0 and up. */ … … 1823 1828 : 1; /* Legacy guest control (VBox < 4.3). */ 1824 1829 /* Build revision is ignored. */ 1830 #endif 1825 1831 1826 1832 LogFlowThisFunc(("uVerAdditions=%RU32 (%RU32.%RU32), mProtocolVersion=%RU32\n", … … 1829 1835 /* Tell the user but don't bitch too often. */ 1830 1836 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. */ 1832 1839 LogRel((tr("Warning: Guest Additions are older (%ld.%ld) than host capabilities for guest control, please upgrade them. Using protocol version %ld now\n"), 1833 1840 uVBoxMajor, uVBoxMinor, mData.mProtocolVersion)); … … 1941 1948 } 1942 1949 1943 alock.release(); /* Release lock before waiting. */1944 1945 1950 int vrc; 1946 1951 … … 1961 1966 if (RT_FAILURE(vrc)) 1962 1967 return vrc; 1968 1969 alock.release(); /* Release lock before waiting. */ 1963 1970 1964 1971 GuestSessionStatus_T sessionStatus; … … 2035 2042 *pGuestRc = (int)lGuestRc; 2036 2043 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", 2038 2045 mData.mSession.mID, sessionStatus, 2039 2046 RT_SUCCESS((int)lGuestRc) ? VINF_SUCCESS : (int)lGuestRc)); … … 2530 2537 mData.mEnvironment.Clear(); 2531 2538 2532 LogFlow FuncLeaveRC(S_OK);2539 LogFlowThisFuncLeave(); 2533 2540 return S_OK; 2534 2541 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 2555 2562 strValue.cloneTo(aValue); 2556 2563 2557 LogFlow FuncLeaveRC(S_OK);2564 LogFlowThisFuncLeave(); 2558 2565 return S_OK; 2559 2566 #endif /* VBOX_WITH_GUEST_CONTROL */ … … 2597 2604 mData.mEnvironment.Unset(Utf8Str(aName)); 2598 2605 2599 LogFlow FuncLeaveRC(S_OK);2606 LogFlowThisFuncLeave(); 2600 2607 return S_OK; 2601 2608 #endif /* VBOX_WITH_GUEST_CONTROL */ -
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r47469 r47627 361 361 * order to reduce the CPU load due to busy waiting. */ 362 362 if (waitRes == ProcessWaitResult_WaitFlagNotSupported) 363 RTThread Sleep(1); /* Optional, don't check rc. */363 RTThreadYield(); /* Optional, don't check rc. */ 364 364 365 365 size_t cbRead = 0; … … 695 695 * order to reduce the CPU load due to busy waiting. */ 696 696 if (waitRes == ProcessWaitResult_WaitFlagNotSupported) 697 RTThread Sleep(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. */ 700 700 rc = pProcess->readData(OUTPUT_HANDLE_ID_STDOUT, sizeof(byBuf), 701 701 30 * 1000 /* Timeout */, byBuf, sizeof(byBuf),
Note:
See TracChangeset
for help on using the changeset viewer.