/* $Id: GuestDirectoryImpl.cpp 79133 2019-06-13 15:27:38Z vboxsync $ */ /** @file * VirtualBox Main - Guest directory handling. */ /* * Copyright (C) 2012-2019 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) as published by the Free Software * Foundation, in version 2 as it comes in the "COPYING" file of the * VirtualBox OSE distribution. VirtualBox OSE is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. */ /********************************************************************************************************************************* * Header Files * *********************************************************************************************************************************/ #define LOG_GROUP LOG_GROUP_MAIN_GUESTDIRECTORY #include "LoggingNew.h" #ifndef VBOX_WITH_GUEST_CONTROL # error "VBOX_WITH_GUEST_CONTROL must defined in this file" #endif #include "GuestDirectoryImpl.h" #include "GuestSessionImpl.h" #include "GuestCtrlImplPrivate.h" #include "Global.h" #include "AutoCaller.h" #include // constructor / destructor ///////////////////////////////////////////////////////////////////////////// DEFINE_EMPTY_CTOR_DTOR(GuestDirectory) HRESULT GuestDirectory::FinalConstruct(void) { LogFlowThisFunc(("\n")); return BaseFinalConstruct(); } void GuestDirectory::FinalRelease(void) { LogFlowThisFuncEnter(); uninit(); BaseFinalRelease(); LogFlowThisFuncLeave(); } // public initializer/uninitializer for internal purposes only ///////////////////////////////////////////////////////////////////////////// int GuestDirectory::init(Console *pConsole, GuestSession *pSession, ULONG aObjectID, const GuestDirectoryOpenInfo &openInfo) { LogFlowThisFunc(("pConsole=%p, pSession=%p, aObjectID=%RU32, strPath=%s, strFilter=%s, uFlags=%x\n", pConsole, pSession, aObjectID, openInfo.mPath.c_str(), openInfo.mFilter.c_str(), openInfo.mFlags)); AssertPtrReturn(pConsole, VERR_INVALID_POINTER); AssertPtrReturn(pSession, VERR_INVALID_POINTER); /* Enclose the state transition NotReady->InInit->Ready. */ AutoInitSpan autoInitSpan(this); AssertReturn(autoInitSpan.isOk(), VERR_OBJECT_DESTROYED); int vrc = bindToSession(pConsole, pSession, aObjectID); if (RT_SUCCESS(vrc)) { mSession = pSession; mObjectID = aObjectID; mData.mOpenInfo = openInfo; } if (RT_SUCCESS(vrc)) { /* Start the directory process on the guest. */ GuestProcessStartupInfo procInfo; procInfo.mName = Utf8StrFmt(tr("Reading directory \"%s\""), openInfo.mPath.c_str()); procInfo.mTimeoutMS = 5 * 60 * 1000; /* 5 minutes timeout. */ procInfo.mFlags = ProcessCreateFlag_WaitForStdOut; procInfo.mExecutable= Utf8Str(VBOXSERVICE_TOOL_LS); procInfo.mArguments.push_back(procInfo.mExecutable); procInfo.mArguments.push_back(Utf8Str("--machinereadable")); /* We want the long output format which contains all the object details. */ procInfo.mArguments.push_back(Utf8Str("-l")); #if 0 /* Flags are not supported yet. */ if (uFlags & DirectoryOpenFlag_NoSymlinks) procInfo.mArguments.push_back(Utf8Str("--nosymlinks")); /** @todo What does GNU here? */ #endif /** @todo Recursion support? */ procInfo.mArguments.push_back(openInfo.mPath); /* The directory we want to open. */ /* * Start the process asynchronously and keep it around so that we can use * it later in subsequent read() calls. * Note: No guest rc available because operation is asynchronous. */ vrc = mData.mProcessTool.init(mSession, procInfo, true /* Async */, NULL /* Guest rc */); /** @todo r=bird: IGuest::directoryOpen need to fail if the directory doesn't * exist like it is documented to do. It seems this async approach or * something is delaying such errors till GuestDirectory::read() is * called, which is clearly messed up. */ } /* Confirm a successful initialization when it's the case. */ if (RT_SUCCESS(vrc)) autoInitSpan.setSucceeded(); else autoInitSpan.setFailed(); return vrc; } /** * Uninitializes the instance. * Called from FinalRelease(). */ void GuestDirectory::uninit(void) { LogFlowThisFuncEnter(); /* Enclose the state transition Ready->InUninit->NotReady. */ AutoUninitSpan autoUninitSpan(this); if (autoUninitSpan.uninitDone()) return; LogFlowThisFuncLeave(); } // implementation of private wrapped getters/setters for attributes ///////////////////////////////////////////////////////////////////////////// HRESULT GuestDirectory::getDirectoryName(com::Utf8Str &aDirectoryName) { LogFlowThisFuncEnter(); AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); aDirectoryName = mData.mOpenInfo.mPath; return S_OK; } HRESULT GuestDirectory::getFilter(com::Utf8Str &aFilter) { LogFlowThisFuncEnter(); AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); aFilter = mData.mOpenInfo.mFilter; return S_OK; } // private methods ///////////////////////////////////////////////////////////////////////////// int GuestDirectory::i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) { AssertPtrReturn(pCbCtx, VERR_INVALID_POINTER); AssertPtrReturn(pSvcCb, VERR_INVALID_POINTER); LogFlowThisFunc(("strPath=%s, uContextID=%RU32, uFunction=%RU32, pSvcCb=%p\n", mData.mOpenInfo.mPath.c_str(), pCbCtx->uContextID, pCbCtx->uMessage, pSvcCb)); int vrc; switch (pCbCtx->uMessage) { case GUEST_MSG_DIR_NOTIFY: { int idx = 1; /* Current parameter index. */ CALLBACKDATA_DIR_NOTIFY dataCb; /* pSvcCb->mpaParms[0] always contains the context ID. */ HGCMSvcGetU32(&pSvcCb->mpaParms[idx++], &dataCb.uType); HGCMSvcGetU32(&pSvcCb->mpaParms[idx++], &dataCb.rc); LogFlowFunc(("uType=%RU32, vrcGguest=%Rrc\n", dataCb.uType, (int)dataCb.rc)); switch (dataCb.uType) { /* Nothing here yet, nothing to dispatch further. */ default: vrc = VERR_NOT_SUPPORTED; break; } break; } default: /* Silently ignore not implemented functions. */ vrc = VERR_NOT_SUPPORTED; break; } LogFlowFuncLeaveRC(vrc); return vrc; } /* static */ Utf8Str GuestDirectory::i_guestErrorToString(int rcGuest) { Utf8Str strError; /** @todo pData->u32Flags: int vs. uint32 -- IPRT errors are *negative* !!! */ switch (rcGuest) { case VERR_CANT_CREATE: strError += Utf8StrFmt("Access denied"); break; case VERR_DIR_NOT_EMPTY: strError += Utf8StrFmt("Not empty"); break; default: strError += Utf8StrFmt("%Rrc", rcGuest); break; } return strError; } /** * @copydoc GuestObject::i_onUnregister */ int GuestDirectory::i_onUnregister(void) { LogFlowThisFuncEnter(); int vrc = VINF_SUCCESS; LogFlowFuncLeaveRC(vrc); return vrc; } /** * @copydoc GuestObject::i_onSessionStatusChange */ int GuestDirectory::i_onSessionStatusChange(GuestSessionStatus_T enmSessionStatus) { RT_NOREF(enmSessionStatus); LogFlowThisFuncEnter(); int vrc = VINF_SUCCESS; LogFlowFuncLeaveRC(vrc); return vrc; } /** * Closes this guest directory and removes it from the * guest session's directory list. * * @return VBox status code. * @param prcGuest Where to store the guest result code in case VERR_GSTCTL_GUEST_ERROR is returned. */ int GuestDirectory::i_closeInternal(int *prcGuest) { AssertPtrReturn(prcGuest, VERR_INVALID_POINTER); int rc = mData.mProcessTool.terminate(30 * 1000 /* 30s timeout */, prcGuest); if (RT_FAILURE(rc)) return rc; AssertPtr(mSession); int rc2 = mSession->i_directoryUnregister(this); if (RT_SUCCESS(rc)) rc = rc2; LogFlowThisFunc(("Returning rc=%Rrc\n", rc)); return rc; } /** * Reads the next directory entry. * * @return VBox status code. Will return VERR_NO_MORE_FILES if no more entries are available. * @param fsObjInfo Where to store the read directory entry. * @param prcGuest Where to store the guest result code in case VERR_GSTCTL_GUEST_ERROR is returned. */ int GuestDirectory::i_readInternal(ComObjPtr &fsObjInfo, int *prcGuest) { AssertPtrReturn(prcGuest, VERR_INVALID_POINTER); /* Create the FS info object. */ HRESULT hr = fsObjInfo.createObject(); if (FAILED(hr)) return VERR_COM_UNEXPECTED; GuestProcessStreamBlock curBlock; int rc = mData.mProcessTool.waitEx(GUESTPROCESSTOOL_WAIT_FLAG_STDOUT_BLOCK, &curBlock, prcGuest); if (RT_SUCCESS(rc)) { /* * Note: The guest process can still be around to serve the next * upcoming stream block next time. */ if (!mData.mProcessTool.isRunning()) rc = mData.mProcessTool.getTerminationStatus(); /* Tool process is not running (anymore). Check termination status. */ if (RT_SUCCESS(rc)) { if (curBlock.GetCount()) /* Did we get content? */ { GuestFsObjData objData; rc = objData.FromLs(curBlock, true /* fLong */); if (RT_SUCCESS(rc)) { rc = fsObjInfo->init(objData); } else rc = VERR_PATH_NOT_FOUND; } else { /* Nothing to read anymore. Tell the caller. */ rc = VERR_NO_MORE_FILES; } } } LogFlowThisFunc(("Returning rc=%Rrc\n", rc)); return rc; } /* static */ HRESULT GuestDirectory::i_setErrorExternal(VirtualBoxBase *pInterface, int rcGuest) { AssertPtr(pInterface); AssertMsg(RT_FAILURE(rcGuest), ("Guest rc does not indicate a failure when setting error\n")); return pInterface->setError(VBOX_E_IPRT_ERROR, GuestDirectory::i_guestErrorToString(rcGuest).c_str()); } // implementation of public methods ///////////////////////////////////////////////////////////////////////////// HRESULT GuestDirectory::close() { AutoCaller autoCaller(this); if (FAILED(autoCaller.rc())) return autoCaller.rc(); LogFlowThisFuncEnter(); HRESULT hr = S_OK; int rcGuest; int vrc = i_closeInternal(&rcGuest); if (RT_FAILURE(vrc)) { switch (vrc) { case VERR_GSTCTL_GUEST_ERROR: hr = GuestDirectory::i_setErrorExternal(this, rcGuest); break; case VERR_NOT_SUPPORTED: /* Silently skip old Guest Additions which do not support killing the * the guest directory handling process. */ break; default: hr = setErrorBoth(VBOX_E_IPRT_ERROR, vrc, tr("Terminating open guest directory \"%s\" failed: %Rrc"), mData.mOpenInfo.mPath.c_str(), vrc); break; } } return hr; } HRESULT GuestDirectory::read(ComPtr &aObjInfo) { AutoCaller autoCaller(this); if (FAILED(autoCaller.rc())) return autoCaller.rc(); LogFlowThisFuncEnter(); HRESULT hr = S_OK; ComObjPtr fsObjInfo; int rcGuest; int vrc = i_readInternal(fsObjInfo, &rcGuest); if (RT_SUCCESS(vrc)) { /* Return info object to the caller. */ hr = fsObjInfo.queryInterfaceTo(aObjInfo.asOutParam()); } else { switch (vrc) { case VERR_GSTCTL_GUEST_ERROR: hr = GuestDirectory::i_setErrorExternal(this, rcGuest); break; case VERR_GSTCTL_PROCESS_EXIT_CODE: hr = setErrorBoth(VBOX_E_IPRT_ERROR, vrc, tr("Reading directory \"%s\" failed: %Rrc"), mData.mOpenInfo.mPath.c_str(), mData.mProcessTool.getRc()); break; case VERR_PATH_NOT_FOUND: hr = setErrorBoth(VBOX_E_IPRT_ERROR, vrc, tr("Reading directory \"%s\" failed: Path not found"), mData.mOpenInfo.mPath.c_str()); break; case VERR_NO_MORE_FILES: /* See SDK reference. */ hr = setErrorBoth(VBOX_E_OBJECT_NOT_FOUND, vrc, tr("Reading directory \"%s\" failed: No more entries"), mData.mOpenInfo.mPath.c_str()); break; default: hr = setErrorBoth(VBOX_E_IPRT_ERROR, vrc, tr("Reading directory \"%s\" returned error: %Rrc\n"), mData.mOpenInfo.mPath.c_str(), vrc); break; } } LogFlowThisFunc(("Returning hr=%Rhrc / vrc=%Rrc\n", hr, vrc)); return hr; }