VirtualBox

source: vbox/trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h@ 81305

Last change on this file since 81305 was 80873, checked in by vboxsync, 5 years ago

Main/GuestSessionImpl.cpp: Keep returning E_INVALIDARG for VERR_ENV_INVALID_VAR_NAME. No need for autocaller in API methods as the wrapper already worked them. More error details.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 35.8 KB
Line 
1/* $Id: GuestCtrlImplPrivate.h 80873 2019-09-17 23:55:26Z vboxsync $ */
2/** @file
3 * Internal helpers/structures for guest control functionality.
4 */
5
6/*
7 * Copyright (C) 2011-2019 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef MAIN_INCLUDED_GuestCtrlImplPrivate_h
19#define MAIN_INCLUDED_GuestCtrlImplPrivate_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include "ConsoleImpl.h"
25#include "Global.h"
26
27#include <iprt/asm.h>
28#include <iprt/env.h>
29#include <iprt/semaphore.h>
30#include <iprt/cpp/utils.h>
31
32#include <VBox/com/com.h>
33#include <VBox/com/ErrorInfo.h>
34#include <VBox/com/string.h>
35#include <VBox/com/VirtualBox.h>
36#include <VBox/err.h> /* VERR_GSTCTL_GUEST_ERROR */
37
38#include <map>
39#include <vector>
40
41using namespace com;
42
43#ifdef VBOX_WITH_GUEST_CONTROL
44# include <VBox/GuestHost/GuestControl.h>
45# include <VBox/HostServices/GuestControlSvc.h>
46using namespace guestControl;
47#endif
48
49/** Vector holding a process' CPU affinity. */
50typedef std::vector <LONG> ProcessAffinity;
51/** Vector holding process startup arguments. */
52typedef std::vector <Utf8Str> ProcessArguments;
53
54class GuestProcessStreamBlock;
55class GuestSession;
56
57
58/**
59 * Simple structure mantaining guest credentials.
60 */
61struct GuestCredentials
62{
63 Utf8Str mUser;
64 Utf8Str mPassword;
65 Utf8Str mDomain;
66};
67
68
69/**
70 * Wrapper around the RTEnv API, unusable base class.
71 *
72 * @remarks Feel free to elevate this class to iprt/cpp/env.h as RTCEnv.
73 */
74class GuestEnvironmentBase
75{
76public:
77 /**
78 * Default constructor.
79 *
80 * The user must invoke one of the init methods before using the object.
81 */
82 GuestEnvironmentBase(void)
83 : m_hEnv(NIL_RTENV)
84 , m_cRefs(1)
85 , m_fFlags(0)
86 { }
87
88 /**
89 * Destructor.
90 */
91 virtual ~GuestEnvironmentBase(void)
92 {
93 Assert(m_cRefs <= 1);
94 int rc = RTEnvDestroy(m_hEnv); AssertRC(rc);
95 m_hEnv = NIL_RTENV;
96 }
97
98 /**
99 * Retains a reference to this object.
100 * @returns New reference count.
101 * @remarks Sharing an object is currently only safe if no changes are made to
102 * it because RTENV does not yet implement any locking. For the only
103 * purpose we need this, implementing IGuestProcess::environment by
104 * using IGuestSession::environmentBase, that's fine as the session
105 * base environment is immutable.
106 */
107 uint32_t retain(void)
108 {
109 uint32_t cRefs = ASMAtomicIncU32(&m_cRefs);
110 Assert(cRefs > 1); Assert(cRefs < _1M);
111 return cRefs;
112
113 }
114 /** Useful shortcut. */
115 uint32_t retainConst(void) const { return unconst(this)->retain(); }
116
117 /**
118 * Releases a reference to this object, deleting the object when reaching zero.
119 * @returns New reference count.
120 */
121 uint32_t release(void)
122 {
123 uint32_t cRefs = ASMAtomicDecU32(&m_cRefs);
124 Assert(cRefs < _1M);
125 if (cRefs == 0)
126 delete this;
127 return cRefs;
128 }
129
130 /** Useful shortcut. */
131 uint32_t releaseConst(void) const { return unconst(this)->retain(); }
132
133 /**
134 * Checks if the environment has been successfully initialized or not.
135 *
136 * @returns @c true if initialized, @c false if not.
137 */
138 bool isInitialized(void) const
139 {
140 return m_hEnv != NIL_RTENV;
141 }
142
143 /**
144 * Returns the variable count.
145 * @return Number of variables.
146 * @sa RTEnvCountEx
147 */
148 uint32_t count(void) const
149 {
150 return RTEnvCountEx(m_hEnv);
151 }
152
153 /**
154 * Deletes the environment change record entirely.
155 *
156 * The count() method will return zero after this call.
157 *
158 * @sa RTEnvReset
159 */
160 void reset(void)
161 {
162 int rc = RTEnvReset(m_hEnv);
163 AssertRC(rc);
164 }
165
166 /**
167 * Exports the environment change block as an array of putenv style strings.
168 *
169 *
170 * @returns VINF_SUCCESS or VERR_NO_MEMORY.
171 * @param pArray The output array.
172 */
173 int queryPutEnvArray(std::vector<com::Utf8Str> *pArray) const
174 {
175 uint32_t cVars = RTEnvCountEx(m_hEnv);
176 try
177 {
178 pArray->resize(cVars);
179 for (uint32_t iVar = 0; iVar < cVars; iVar++)
180 {
181 const char *psz = RTEnvGetByIndexRawEx(m_hEnv, iVar);
182 AssertReturn(psz, VERR_INTERNAL_ERROR_3); /* someone is racing us! */
183 (*pArray)[iVar] = psz;
184 }
185 return VINF_SUCCESS;
186 }
187 catch (std::bad_alloc &)
188 {
189 return VERR_NO_MEMORY;
190 }
191 }
192
193 /**
194 * Applies an array of putenv style strings.
195 *
196 * @returns IPRT status code.
197 * @param rArray The array with the putenv style strings.
198 * @param pidxError Where to return the index causing trouble on
199 * failure. Optional.
200 * @sa RTEnvPutEx
201 */
202 int applyPutEnvArray(const std::vector<com::Utf8Str> &rArray, size_t *pidxError = NULL)
203 {
204 size_t const cArray = rArray.size();
205 for (size_t i = 0; i < cArray; i++)
206 {
207 int rc = RTEnvPutEx(m_hEnv, rArray[i].c_str());
208 if (RT_FAILURE(rc))
209 {
210 if (pidxError)
211 *pidxError = i;
212 return rc;
213 }
214 }
215 return VINF_SUCCESS;
216 }
217
218 /**
219 * Applies the changes from another environment to this.
220 *
221 * @returns IPRT status code.
222 * @param rChanges Reference to an environment which variables will be
223 * imported and, if it's a change record, schedule
224 * variable unsets will be applied.
225 * @sa RTEnvApplyChanges
226 */
227 int applyChanges(const GuestEnvironmentBase &rChanges)
228 {
229 return RTEnvApplyChanges(m_hEnv, rChanges.m_hEnv);
230 }
231
232 /**
233 * See RTEnvQueryUtf8Block for details.
234 * @returns IPRT status code.
235 * @param ppszzBlock Where to return the block pointer.
236 * @param pcbBlock Where to optionally return the block size.
237 * @sa RTEnvQueryUtf8Block
238 */
239 int queryUtf8Block(char **ppszzBlock, size_t *pcbBlock)
240 {
241 return RTEnvQueryUtf8Block(m_hEnv, true /*fSorted*/, ppszzBlock, pcbBlock);
242 }
243
244 /**
245 * Frees what queryUtf8Block returned, NULL ignored.
246 * @sa RTEnvFreeUtf8Block
247 */
248 static void freeUtf8Block(char *pszzBlock)
249 {
250 return RTEnvFreeUtf8Block(pszzBlock);
251 }
252
253 /**
254 * Applies a block on the format returned by queryUtf8Block.
255 *
256 * @returns IPRT status code.
257 * @param pszzBlock Pointer to the block.
258 * @param cbBlock The size of the block.
259 * @param fNoEqualMeansUnset Whether the lack of a '=' (equal) sign in a
260 * string means it should be unset (@c true), or if
261 * it means the variable should be defined with an
262 * empty value (@c false, the default).
263 * @todo move this to RTEnv!
264 */
265 int copyUtf8Block(const char *pszzBlock, size_t cbBlock, bool fNoEqualMeansUnset = false)
266 {
267 int rc = VINF_SUCCESS;
268 while (cbBlock > 0 && *pszzBlock != '\0')
269 {
270 const char *pszEnd = (const char *)memchr(pszzBlock, '\0', cbBlock);
271 if (!pszEnd)
272 return VERR_BUFFER_UNDERFLOW;
273 int rc2;
274 if (fNoEqualMeansUnset || strchr(pszzBlock, '='))
275 rc2 = RTEnvPutEx(m_hEnv, pszzBlock);
276 else
277 rc2 = RTEnvSetEx(m_hEnv, pszzBlock, "");
278 if (RT_FAILURE(rc2) && RT_SUCCESS(rc))
279 rc = rc2;
280
281 /* Advance. */
282 cbBlock -= pszEnd - pszzBlock;
283 if (cbBlock < 2)
284 return VERR_BUFFER_UNDERFLOW;
285 cbBlock--;
286 pszzBlock = pszEnd + 1;
287 }
288
289 /* The remainder must be zero padded. */
290 if (RT_SUCCESS(rc))
291 {
292 if (ASMMemIsZero(pszzBlock, cbBlock))
293 return VINF_SUCCESS;
294 return VERR_TOO_MUCH_DATA;
295 }
296 return rc;
297 }
298
299 /**
300 * Get an environment variable.
301 *
302 * @returns IPRT status code.
303 * @param rName The variable name.
304 * @param pValue Where to return the value.
305 * @sa RTEnvGetEx
306 */
307 int getVariable(const com::Utf8Str &rName, com::Utf8Str *pValue) const
308 {
309 size_t cchNeeded;
310 int rc = RTEnvGetEx(m_hEnv, rName.c_str(), NULL, 0, &cchNeeded);
311 if ( RT_SUCCESS(rc)
312 || rc == VERR_BUFFER_OVERFLOW)
313 {
314 try
315 {
316 pValue->reserve(cchNeeded + 1);
317 rc = RTEnvGetEx(m_hEnv, rName.c_str(), pValue->mutableRaw(), pValue->capacity(), NULL);
318 pValue->jolt();
319 }
320 catch (std::bad_alloc &)
321 {
322 rc = VERR_NO_STR_MEMORY;
323 }
324 }
325 return rc;
326 }
327
328 /**
329 * Checks if the given variable exists.
330 *
331 * @returns @c true if it exists, @c false if not or if it's an scheduled unset
332 * in a environment change record.
333 * @param rName The variable name.
334 * @sa RTEnvExistEx
335 */
336 bool doesVariableExist(const com::Utf8Str &rName) const
337 {
338 return RTEnvExistEx(m_hEnv, rName.c_str());
339 }
340
341 /**
342 * Set an environment variable.
343 *
344 * @returns IPRT status code.
345 * @param rName The variable name.
346 * @param rValue The value of the variable.
347 * @sa RTEnvSetEx
348 */
349 int setVariable(const com::Utf8Str &rName, const com::Utf8Str &rValue)
350 {
351 return RTEnvSetEx(m_hEnv, rName.c_str(), rValue.c_str());
352 }
353
354 /**
355 * Unset an environment variable.
356 *
357 * @returns IPRT status code.
358 * @param rName The variable name.
359 * @sa RTEnvUnsetEx
360 */
361 int unsetVariable(const com::Utf8Str &rName)
362 {
363 return RTEnvUnsetEx(m_hEnv, rName.c_str());
364 }
365
366protected:
367 /**
368 * Copy constructor.
369 * @throws HRESULT
370 */
371 GuestEnvironmentBase(const GuestEnvironmentBase &rThat, bool fChangeRecord, uint32_t fFlags = 0)
372 : m_hEnv(NIL_RTENV)
373 , m_cRefs(1)
374 , m_fFlags(fFlags)
375 {
376 int rc = cloneCommon(rThat, fChangeRecord);
377 if (RT_FAILURE(rc))
378 throw (Global::vboxStatusCodeToCOM(rc));
379 }
380
381 /**
382 * Common clone/copy method with type conversion abilities.
383 *
384 * @returns IPRT status code.
385 * @param rThat The object to clone.
386 * @param fChangeRecord Whether the this instance is a change record (true)
387 * or normal (false) environment.
388 */
389 int cloneCommon(const GuestEnvironmentBase &rThat, bool fChangeRecord)
390 {
391 int rc = VINF_SUCCESS;
392 RTENV hNewEnv = NIL_RTENV;
393 if (rThat.m_hEnv != NIL_RTENV)
394 {
395 /*
396 * Clone it.
397 */
398 if (RTEnvIsChangeRecord(rThat.m_hEnv) == fChangeRecord)
399 rc = RTEnvClone(&hNewEnv, rThat.m_hEnv);
400 else
401 {
402 /* Need to type convert it. */
403 if (fChangeRecord)
404 rc = RTEnvCreateChangeRecordEx(&hNewEnv, rThat.m_fFlags);
405 else
406 rc = RTEnvCreateEx(&hNewEnv, rThat.m_fFlags);
407 if (RT_SUCCESS(rc))
408 {
409 rc = RTEnvApplyChanges(hNewEnv, rThat.m_hEnv);
410 if (RT_FAILURE(rc))
411 RTEnvDestroy(hNewEnv);
412 }
413 }
414 }
415 else
416 {
417 /*
418 * Create an empty one so the object works smoothly.
419 * (Relevant for GuestProcessStartupInfo and internal commands.)
420 */
421 if (fChangeRecord)
422 rc = RTEnvCreateChangeRecordEx(&hNewEnv, rThat.m_fFlags);
423 else
424 rc = RTEnvCreateEx(&hNewEnv, rThat.m_fFlags);
425 }
426 if (RT_SUCCESS(rc))
427 {
428 RTEnvDestroy(m_hEnv);
429 m_hEnv = hNewEnv;
430 m_fFlags = rThat.m_fFlags;
431 }
432 return rc;
433 }
434
435
436 /** The environment change record. */
437 RTENV m_hEnv;
438 /** Reference counter. */
439 uint32_t volatile m_cRefs;
440 /** RTENV_CREATE_F_XXX. */
441 uint32_t m_fFlags;
442};
443
444class GuestEnvironmentChanges;
445
446
447/**
448 * Wrapper around the RTEnv API for a normal environment.
449 */
450class GuestEnvironment : public GuestEnvironmentBase
451{
452public:
453 /**
454 * Default constructor.
455 *
456 * The user must invoke one of the init methods before using the object.
457 */
458 GuestEnvironment(void)
459 : GuestEnvironmentBase()
460 { }
461
462 /**
463 * Copy operator.
464 * @param rThat The object to copy.
465 * @throws HRESULT
466 */
467 GuestEnvironment(const GuestEnvironment &rThat)
468 : GuestEnvironmentBase(rThat, false /*fChangeRecord*/)
469 { }
470
471 /**
472 * Copy operator.
473 * @param rThat The object to copy.
474 * @throws HRESULT
475 */
476 GuestEnvironment(const GuestEnvironmentBase &rThat)
477 : GuestEnvironmentBase(rThat, false /*fChangeRecord*/)
478 { }
479
480 /**
481 * Initialize this as a normal environment block.
482 * @returns IPRT status code.
483 * @param fFlags RTENV_CREATE_F_XXX
484 */
485 int initNormal(uint32_t fFlags)
486 {
487 AssertReturn(m_hEnv == NIL_RTENV, VERR_WRONG_ORDER);
488 m_fFlags = fFlags;
489 return RTEnvCreateEx(&m_hEnv, fFlags);
490 }
491
492 /**
493 * Replaces this environemnt with that in @a rThat.
494 *
495 * @returns IPRT status code
496 * @param rThat The environment to copy. If it's a different type
497 * we'll convert the data to a normal environment block.
498 */
499 int copy(const GuestEnvironmentBase &rThat)
500 {
501 return cloneCommon(rThat, false /*fChangeRecord*/);
502 }
503
504 /**
505 * @copydoc copy()
506 */
507 GuestEnvironment &operator=(const GuestEnvironmentBase &rThat)
508 {
509 int rc = copy(rThat);
510 if (RT_FAILURE(rc))
511 throw (Global::vboxStatusCodeToCOM(rc));
512 return *this;
513 }
514
515 /** @copydoc copy() */
516 GuestEnvironment &operator=(const GuestEnvironment &rThat)
517 { return operator=((const GuestEnvironmentBase &)rThat); }
518
519 /** @copydoc copy() */
520 GuestEnvironment &operator=(const GuestEnvironmentChanges &rThat)
521 { return operator=((const GuestEnvironmentBase &)rThat); }
522
523};
524
525
526/**
527 * Wrapper around the RTEnv API for a environment change record.
528 *
529 * This class is used as a record of changes to be applied to a different
530 * environment block (in VBoxService before launching a new process).
531 */
532class GuestEnvironmentChanges : public GuestEnvironmentBase
533{
534public:
535 /**
536 * Default constructor.
537 *
538 * The user must invoke one of the init methods before using the object.
539 */
540 GuestEnvironmentChanges(void)
541 : GuestEnvironmentBase()
542 { }
543
544 /**
545 * Copy operator.
546 * @param rThat The object to copy.
547 * @throws HRESULT
548 */
549 GuestEnvironmentChanges(const GuestEnvironmentChanges &rThat)
550 : GuestEnvironmentBase(rThat, true /*fChangeRecord*/)
551 { }
552
553 /**
554 * Copy operator.
555 * @param rThat The object to copy.
556 * @throws HRESULT
557 */
558 GuestEnvironmentChanges(const GuestEnvironmentBase &rThat)
559 : GuestEnvironmentBase(rThat, true /*fChangeRecord*/)
560 { }
561
562 /**
563 * Initialize this as a environment change record.
564 * @returns IPRT status code.
565 * @param fFlags RTENV_CREATE_F_XXX
566 */
567 int initChangeRecord(uint32_t fFlags)
568 {
569 AssertReturn(m_hEnv == NIL_RTENV, VERR_WRONG_ORDER);
570 m_fFlags = fFlags;
571 return RTEnvCreateChangeRecordEx(&m_hEnv, fFlags);
572 }
573
574 /**
575 * Replaces this environemnt with that in @a rThat.
576 *
577 * @returns IPRT status code
578 * @param rThat The environment to copy. If it's a different type
579 * we'll convert the data to a set of changes.
580 */
581 int copy(const GuestEnvironmentBase &rThat)
582 {
583 return cloneCommon(rThat, true /*fChangeRecord*/);
584 }
585
586 /**
587 * @copydoc copy()
588 */
589 GuestEnvironmentChanges &operator=(const GuestEnvironmentBase &rThat)
590 {
591 int rc = copy(rThat);
592 if (RT_FAILURE(rc))
593 throw (Global::vboxStatusCodeToCOM(rc));
594 return *this;
595 }
596
597 /** @copydoc copy() */
598 GuestEnvironmentChanges &operator=(const GuestEnvironmentChanges &rThat)
599 { return operator=((const GuestEnvironmentBase &)rThat); }
600
601 /** @copydoc copy() */
602 GuestEnvironmentChanges &operator=(const GuestEnvironment &rThat)
603 { return operator=((const GuestEnvironmentBase &)rThat); }
604};
605
606
607/**
608 * Structure for keeping all the relevant guest directory
609 * information around.
610 */
611struct GuestDirectoryOpenInfo
612{
613 /** The directory path. */
614 Utf8Str mPath;
615 /** Then open filter. */
616 Utf8Str mFilter;
617 /** Opening flags. */
618 uint32_t mFlags;
619};
620
621
622/**
623 * Structure for keeping all the relevant guest file
624 * information around.
625 */
626struct GuestFileOpenInfo
627{
628 /** The filename. */
629 Utf8Str mFilename;
630 /** The file access mode. */
631 FileAccessMode_T mAccessMode;
632 /** The file open action. */
633 FileOpenAction_T mOpenAction;
634 /** The file sharing mode. */
635 FileSharingMode_T mSharingMode;
636 /** Octal creation mode. */
637 uint32_t mCreationMode;
638 /** Extended open flags (currently none defined). */
639 uint32_t mfOpenEx;
640};
641
642
643/**
644 * Structure representing information of a
645 * file system object.
646 */
647struct GuestFsObjData
648{
649 /** @name Helper functions to extract the data from a certin VBoxService tool's guest stream block.
650 * @{ */
651 int FromLs(const GuestProcessStreamBlock &strmBlk, bool fLong);
652 int FromStat(const GuestProcessStreamBlock &strmBlk);
653 int FromMkTemp(const GuestProcessStreamBlock &strmBlk);
654 /** @} */
655
656 /** @name Static helper functions to work with time from stream block keys.
657 * @{ */
658 static PRTTIMESPEC TimeSpecFromKey(const GuestProcessStreamBlock &strmBlk, const Utf8Str &strKey, PRTTIMESPEC pTimeSpec);
659 static int64_t UnixEpochNsFromKey(const GuestProcessStreamBlock &strmBlk, const Utf8Str &strKey);
660 /** @} */
661
662 /** @name helper functions to work with IPRT stuff.
663 * @{ */
664 RTFMODE GetFileMode(void) const;
665 /** @} */
666
667 Utf8Str mName;
668 FsObjType_T mType;
669 Utf8Str mFileAttrs;
670 int64_t mObjectSize;
671 int64_t mAllocatedSize;
672 int64_t mAccessTime;
673 int64_t mBirthTime;
674 int64_t mChangeTime;
675 int64_t mModificationTime;
676 Utf8Str mUserName;
677 int32_t mUID;
678 int32_t mGID;
679 Utf8Str mGroupName;
680 Utf8Str mACL;
681 int64_t mNodeID;
682 uint32_t mNodeIDDevice;
683 uint32_t mNumHardLinks;
684 uint32_t mDeviceNumber;
685 uint32_t mGenerationID;
686 uint32_t mUserFlags;
687};
688
689
690/**
691 * Structure for keeping all the relevant guest session
692 * startup parameters around.
693 */
694class GuestSessionStartupInfo
695{
696public:
697
698 GuestSessionStartupInfo(void)
699 : mIsInternal(false /* Non-internal session */),
700 mOpenTimeoutMS(30 * 1000 /* 30s opening timeout */),
701 mOpenFlags(0 /* No opening flags set */) { }
702
703 /** The session's friendly name. Optional. */
704 Utf8Str mName;
705 /** The session's unique ID. Used to encode a context ID. */
706 uint32_t mID;
707 /** Flag indicating if this is an internal session
708 * or not. Internal session are not accessible by
709 * public API clients. */
710 bool mIsInternal;
711 /** Timeout (in ms) used for opening the session. */
712 uint32_t mOpenTimeoutMS;
713 /** Session opening flags. */
714 uint32_t mOpenFlags;
715};
716
717
718/**
719 * Structure for keeping all the relevant guest process
720 * startup parameters around.
721 */
722class GuestProcessStartupInfo
723{
724public:
725
726 GuestProcessStartupInfo(void)
727 : mFlags(ProcessCreateFlag_None),
728 mTimeoutMS(UINT32_MAX /* No timeout by default */),
729 mPriority(ProcessPriority_Default) { }
730
731 /** The process' friendly name. */
732 Utf8Str mName;
733 /** The executable. */
734 Utf8Str mExecutable;
735 /** Arguments vector (starting with argument \#0). */
736 ProcessArguments mArguments;
737 /** The process environment change record. */
738 GuestEnvironmentChanges mEnvironmentChanges;
739 /** Process creation flags. */
740 uint32_t mFlags;
741 /** Timeout (in ms) the process is allowed to run.
742 * Specify UINT32_MAX if no timeout (unlimited run time) is given. */
743 ULONG mTimeoutMS;
744 /** Process priority. */
745 ProcessPriority_T mPriority;
746 /** Process affinity. At the moment we
747 * only support 64 VCPUs. API and
748 * guest can do more already! */
749 uint64_t mAffinity;
750};
751
752
753/**
754 * Class representing the "value" side of a "key=value" pair.
755 */
756class GuestProcessStreamValue
757{
758public:
759
760 GuestProcessStreamValue(void) { }
761 GuestProcessStreamValue(const char *pszValue)
762 : mValue(pszValue) {}
763
764 GuestProcessStreamValue(const GuestProcessStreamValue& aThat)
765 : mValue(aThat.mValue) { }
766
767 Utf8Str mValue;
768};
769
770/** Map containing "key=value" pairs of a guest process stream. */
771typedef std::pair< Utf8Str, GuestProcessStreamValue > GuestCtrlStreamPair;
772typedef std::map < Utf8Str, GuestProcessStreamValue > GuestCtrlStreamPairMap;
773typedef std::map < Utf8Str, GuestProcessStreamValue >::iterator GuestCtrlStreamPairMapIter;
774typedef std::map < Utf8Str, GuestProcessStreamValue >::const_iterator GuestCtrlStreamPairMapIterConst;
775
776/**
777 * Class representing a block of stream pairs (key=value). Each block in a raw guest
778 * output stream is separated by "\0\0", each pair is separated by "\0". The overall
779 * end of a guest stream is marked by "\0\0\0\0".
780 */
781class GuestProcessStreamBlock
782{
783public:
784
785 GuestProcessStreamBlock(void);
786
787 virtual ~GuestProcessStreamBlock(void);
788
789public:
790
791 void Clear(void);
792
793#ifdef DEBUG
794 void DumpToLog(void) const;
795#endif
796
797 const char *GetString(const char *pszKey) const;
798 size_t GetCount(void) const;
799 int GetRc(void) const;
800 int GetInt64Ex(const char *pszKey, int64_t *piVal) const;
801 int64_t GetInt64(const char *pszKey) const;
802 int GetUInt32Ex(const char *pszKey, uint32_t *puVal) const;
803 uint32_t GetUInt32(const char *pszKey, uint32_t uDefault = 0) const;
804 int32_t GetInt32(const char *pszKey, int32_t iDefault = 0) const;
805
806 bool IsEmpty(void) { return mPairs.empty(); }
807
808 int SetValue(const char *pszKey, const char *pszValue);
809
810protected:
811
812 GuestCtrlStreamPairMap mPairs;
813};
814
815/** Vector containing multiple allocated stream pair objects. */
816typedef std::vector< GuestProcessStreamBlock > GuestCtrlStreamObjects;
817typedef std::vector< GuestProcessStreamBlock >::iterator GuestCtrlStreamObjectsIter;
818typedef std::vector< GuestProcessStreamBlock >::const_iterator GuestCtrlStreamObjectsIterConst;
819
820/**
821 * Class for parsing machine-readable guest process output by VBoxService'
822 * toolbox commands ("vbox_ls", "vbox_stat" etc), aka "guest stream".
823 */
824class GuestProcessStream
825{
826
827public:
828
829 GuestProcessStream();
830
831 virtual ~GuestProcessStream();
832
833public:
834
835 int AddData(const BYTE *pbData, size_t cbData);
836
837 void Destroy();
838
839#ifdef DEBUG
840 void Dump(const char *pszFile);
841#endif
842
843 size_t GetOffset() { return m_offBuffer; }
844
845 size_t GetSize() { return m_cbUsed; }
846
847 int ParseBlock(GuestProcessStreamBlock &streamBlock);
848
849protected:
850
851 /** Currently allocated size of internal stream buffer. */
852 size_t m_cbAllocated;
853 /** Currently used size at m_offBuffer. */
854 size_t m_cbUsed;
855 /** Current byte offset within the internal stream buffer. */
856 size_t m_offBuffer;
857 /** Internal stream buffer. */
858 BYTE *m_pbBuffer;
859};
860
861class Guest;
862class Progress;
863
864class GuestTask
865{
866
867public:
868
869 enum TaskType
870 {
871 /** Copies a file from host to the guest. */
872 TaskType_CopyFileToGuest = 50,
873 /** Copies a file from guest to the host. */
874 TaskType_CopyFileFromGuest = 55,
875 /** Update Guest Additions by directly copying the required installer
876 * off the .ISO file, transfer it to the guest and execute the installer
877 * with system privileges. */
878 TaskType_UpdateGuestAdditions = 100
879 };
880
881 GuestTask(TaskType aTaskType, Guest *aThat, Progress *aProgress);
882
883 virtual ~GuestTask();
884
885 int startThread();
886
887 static int taskThread(RTTHREAD aThread, void *pvUser);
888 static int uploadProgress(unsigned uPercent, void *pvUser);
889 static HRESULT setProgressSuccess(ComObjPtr<Progress> pProgress);
890 static HRESULT setProgressErrorMsg(HRESULT hr,
891 ComObjPtr<Progress> pProgress, const char * pszText, ...);
892 static HRESULT setProgressErrorParent(HRESULT hr,
893 ComObjPtr<Progress> pProgress, ComObjPtr<Guest> pGuest);
894
895 TaskType taskType;
896 ComObjPtr<Guest> pGuest;
897 ComObjPtr<Progress> pProgress;
898 HRESULT rc;
899
900 /* Task data. */
901 Utf8Str strSource;
902 Utf8Str strDest;
903 Utf8Str strUserName;
904 Utf8Str strPassword;
905 ULONG uFlags;
906};
907
908class GuestWaitEventPayload
909{
910
911public:
912
913 GuestWaitEventPayload(void)
914 : uType(0),
915 cbData(0),
916 pvData(NULL) { }
917
918 GuestWaitEventPayload(uint32_t uTypePayload,
919 const void *pvPayload, uint32_t cbPayload)
920 : uType(0),
921 cbData(0),
922 pvData(NULL)
923 {
924 int rc = copyFrom(uTypePayload, pvPayload, cbPayload);
925 if (RT_FAILURE(rc))
926 throw rc;
927 }
928
929 virtual ~GuestWaitEventPayload(void)
930 {
931 Clear();
932 }
933
934 GuestWaitEventPayload& operator=(const GuestWaitEventPayload &that)
935 {
936 CopyFromDeep(that);
937 return *this;
938 }
939
940public:
941
942 void Clear(void)
943 {
944 if (pvData)
945 {
946 Assert(cbData);
947 RTMemFree(pvData);
948 cbData = 0;
949 pvData = NULL;
950 }
951 uType = 0;
952 }
953
954 int CopyFromDeep(const GuestWaitEventPayload &payload)
955 {
956 return copyFrom(payload.uType, payload.pvData, payload.cbData);
957 }
958
959 const void* Raw(void) const { return pvData; }
960
961 size_t Size(void) const { return cbData; }
962
963 uint32_t Type(void) const { return uType; }
964
965 void* MutableRaw(void) { return pvData; }
966
967 Utf8Str ToString(void)
968 {
969 const char *pszStr = (const char *)pvData;
970 size_t cbStr = cbData;
971
972 if (RT_FAILURE(RTStrValidateEncodingEx(pszStr, cbStr,
973 RTSTR_VALIDATE_ENCODING_ZERO_TERMINATED | RTSTR_VALIDATE_ENCODING_EXACT_LENGTH)))
974 {
975 AssertFailed();
976 return "";
977 }
978
979 return Utf8Str(pszStr, cbStr);
980 }
981
982protected:
983
984 int copyFrom(uint32_t uTypePayload, const void *pvPayload, uint32_t cbPayload)
985 {
986 if (cbPayload > _64K) /* Paranoia. */
987 return VERR_TOO_MUCH_DATA;
988
989 Clear();
990
991 int rc = VINF_SUCCESS;
992
993 if (cbPayload)
994 {
995 pvData = RTMemAlloc(cbPayload);
996 if (pvData)
997 {
998 uType = uTypePayload;
999
1000 memcpy(pvData, pvPayload, cbPayload);
1001 cbData = cbPayload;
1002 }
1003 else
1004 rc = VERR_NO_MEMORY;
1005 }
1006 else
1007 {
1008 uType = uTypePayload;
1009
1010 pvData = NULL;
1011 cbData = 0;
1012 }
1013
1014 return rc;
1015 }
1016
1017protected:
1018
1019 /** Type of payload. */
1020 uint32_t uType;
1021 /** Size (in bytes) of payload. */
1022 uint32_t cbData;
1023 /** Pointer to actual payload data. */
1024 void *pvData;
1025};
1026
1027class GuestWaitEventBase
1028{
1029
1030protected:
1031
1032 GuestWaitEventBase(void);
1033 virtual ~GuestWaitEventBase(void);
1034
1035public:
1036
1037 uint32_t ContextID(void) { return mCID; };
1038 int GuestResult(void) { return mGuestRc; }
1039 int Result(void) { return mRc; }
1040 GuestWaitEventPayload & Payload(void) { return mPayload; }
1041 int SignalInternal(int rc, int guestRc, const GuestWaitEventPayload *pPayload);
1042 int Wait(RTMSINTERVAL uTimeoutMS);
1043
1044protected:
1045
1046 int Init(uint32_t uCID);
1047
1048protected:
1049
1050 /* Shutdown indicator. */
1051 bool mfAborted;
1052 /* Associated context ID (CID). */
1053 uint32_t mCID;
1054 /** The event semaphore for triggering
1055 * the actual event. */
1056 RTSEMEVENT mEventSem;
1057 /** The event's overall result. If
1058 * set to VERR_GSTCTL_GUEST_ERROR,
1059 * mGuestRc will contain the actual
1060 * error code from the guest side. */
1061 int mRc;
1062 /** The event'S overall result from the
1063 * guest side. If used, mRc must be
1064 * set to VERR_GSTCTL_GUEST_ERROR. */
1065 int mGuestRc;
1066 /** The event's payload data. Optional. */
1067 GuestWaitEventPayload mPayload;
1068};
1069
1070/** List of public guest event types. */
1071typedef std::list < VBoxEventType_T > GuestEventTypes;
1072
1073class GuestWaitEvent : public GuestWaitEventBase
1074{
1075
1076public:
1077
1078 GuestWaitEvent(void);
1079 virtual ~GuestWaitEvent(void);
1080
1081public:
1082
1083 int Init(uint32_t uCID);
1084 int Init(uint32_t uCID, const GuestEventTypes &lstEvents);
1085 int Cancel(void);
1086 const ComPtr<IEvent> Event(void) { return mEvent; }
1087 bool HasGuestError(void) const { return mRc == VERR_GSTCTL_GUEST_ERROR; }
1088 int GetGuestError(void) const { return mGuestRc; }
1089 int SignalExternal(IEvent *pEvent);
1090 const GuestEventTypes &Types(void) { return mEventTypes; }
1091 size_t TypeCount(void) { return mEventTypes.size(); }
1092
1093protected:
1094
1095 /** List of public event types this event should
1096 * be signalled on. Optional. */
1097 GuestEventTypes mEventTypes;
1098 /** Pointer to the actual public event, if any. */
1099 ComPtr<IEvent> mEvent;
1100};
1101/** Map of pointers to guest events. The primary key
1102 * contains the context ID. */
1103typedef std::map < uint32_t, GuestWaitEvent* > GuestWaitEvents;
1104/** Map of wait events per public guest event. Nice for
1105 * faster lookups when signalling a whole event group. */
1106typedef std::map < VBoxEventType_T, GuestWaitEvents > GuestEventGroup;
1107
1108class GuestBase
1109{
1110
1111public:
1112
1113 GuestBase(void);
1114 virtual ~GuestBase(void);
1115
1116public:
1117
1118 /** Signals a wait event using a public guest event; also used for
1119 * for external event listeners. */
1120 int signalWaitEvent(VBoxEventType_T aType, IEvent *aEvent);
1121 /** Signals a wait event using a guest rc. */
1122 int signalWaitEventInternal(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, int guestRc, const GuestWaitEventPayload *pPayload);
1123 /** Signals a wait event without letting public guest events know,
1124 * extended director's cut version. */
1125 int signalWaitEventInternalEx(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, int rc, int guestRc, const GuestWaitEventPayload *pPayload);
1126
1127public:
1128
1129 int baseInit(void);
1130 void baseUninit(void);
1131 int cancelWaitEvents(void);
1132 int dispatchGeneric(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb);
1133 int generateContextID(uint32_t uSessionID, uint32_t uObjectID, uint32_t *puContextID);
1134 int registerWaitEvent(uint32_t uSessionID, uint32_t uObjectID, GuestWaitEvent **ppEvent);
1135 int registerWaitEventEx(uint32_t uSessionID, uint32_t uObjectID, const GuestEventTypes &lstEvents, GuestWaitEvent **ppEvent);
1136 int unregisterWaitEvent(GuestWaitEvent *pEvent);
1137 int waitForEvent(GuestWaitEvent *pEvent, uint32_t uTimeoutMS, VBoxEventType_T *pType, IEvent **ppEvent);
1138
1139public:
1140
1141 static FsObjType_T fileModeToFsObjType(RTFMODE fMode);
1142
1143protected:
1144
1145 /** Pointer to the console object. Needed
1146 * for HGCM (VMMDev) communication. */
1147 Console *mConsole;
1148 /** The next context ID counter component for this object. */
1149 uint32_t mNextContextID;
1150 /** Local listener for handling the waiting events
1151 * internally. */
1152 ComPtr<IEventListener> mLocalListener;
1153 /** Critical section for wait events access. */
1154 RTCRITSECT mWaitEventCritSect;
1155 /** Map of registered wait events per event group. */
1156 GuestEventGroup mWaitEventGroups;
1157 /** Map of registered wait events. */
1158 GuestWaitEvents mWaitEvents;
1159};
1160
1161/**
1162 * Virtual class (interface) for guest objects (processes, files, ...) --
1163 * contains all per-object callback management.
1164 */
1165class GuestObject : public GuestBase
1166{
1167 friend class GuestSession;
1168
1169public:
1170
1171 GuestObject(void);
1172 virtual ~GuestObject(void);
1173
1174public:
1175
1176 ULONG getObjectID(void) { return mObjectID; }
1177
1178protected:
1179
1180 /**
1181 * Called by IGuestSession when the session status has been changed.
1182 *
1183 * @returns VBox status code.
1184 * @param enmSessionStatus New session status.
1185 */
1186 virtual int i_onSessionStatusChange(GuestSessionStatus_T enmSessionStatus) = 0;
1187
1188 /**
1189 * Called by IGuestSession right before this object gets
1190 * unregistered (removed) from the public object list.
1191 */
1192 virtual int i_onUnregister(void) = 0;
1193
1194 /** Callback dispatcher -- must be implemented by the actual object. */
1195 virtual int i_callbackDispatcher(PVBOXGUESTCTRLHOSTCBCTX pCbCtx, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb) = 0;
1196
1197protected:
1198
1199 int bindToSession(Console *pConsole, GuestSession *pSession, uint32_t uObjectID);
1200 int registerWaitEvent(const GuestEventTypes &lstEvents, GuestWaitEvent **ppEvent);
1201 int sendMessage(uint32_t uFunction, uint32_t cParms, PVBOXHGCMSVCPARM paParms);
1202
1203protected:
1204
1205 /** @name Common parameters for all derived objects. They have their own
1206 * mData structure to keep their specific data around.
1207 * @{ */
1208 /** Pointer to parent session. Per definition
1209 * this objects *always* lives shorter than the
1210 * parent.
1211 * @todo r=bird: When wanting to use mSession in the
1212 * IGuestProcess::getEnvironment() implementation I wanted to access
1213 * GuestSession::mData::mpBaseEnvironment. Seeing the comment in
1214 * GuestProcess::terminate() saying:
1215 * "Now only API clients still can hold references to it."
1216 * and recalling seeing similar things in VirtualBox.xidl or some such place,
1217 * I'm wondering how this "per definition" behavior is enforced. Is there any
1218 * GuestProcess:uninit() call or similar magic that invalidates objects that
1219 * GuestSession loses track of in place like GuestProcess::terminate() that I've
1220 * failed to spot?
1221 *
1222 * Please enlighten me.
1223 */
1224 GuestSession *mSession;
1225 /** The object ID -- must be unique for each guest
1226 * object and is encoded into the context ID. Must
1227 * be set manually when initializing the object.
1228 *
1229 * For guest processes this is the internal PID,
1230 * for guest files this is the internal file ID. */
1231 uint32_t mObjectID;
1232 /** @} */
1233};
1234#endif /* !MAIN_INCLUDED_GuestCtrlImplPrivate_h */
1235
Note: See TracBrowser for help on using the repository browser.

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