VirtualBox

source: vbox/trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp@ 84243

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

Guest Control: Implemented support for long(er) command lines. bugref:9320

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 22.1 KB
Line 
1/* $Id: VBoxServiceControl.cpp 84243 2020-05-11 09:59:59Z vboxsync $ */
2/** @file
3 * VBoxServiceControl - Host-driven Guest Control.
4 */
5
6/*
7 * Copyright (C) 2012-2020 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/** @page pg_vgsvc_gstctrl VBoxService - Guest Control
19 *
20 * The Guest Control subservice helps implementing the IGuest APIs.
21 *
22 * The communication between this service (and its children) and IGuest goes
23 * over the HGCM GuestControl service.
24 *
25 * The IGuest APIs provides means to manipulate (control) files, directories,
26 * symbolic links and processes within the guest. Most of these means requires
27 * credentials of a guest OS user to operate, though some restricted ones
28 * operates directly as the VBoxService user (root / system service account).
29 *
30 * The current design is that a subprocess is spawned for handling operations as
31 * a given user. This process is represented as IGuestSession in the API. The
32 * subprocess will be spawned as the given use, giving up the privileges the
33 * parent subservice had.
34 *
35 * It will try handle as many of the operations directly from within the
36 * subprocess, but for more complicated things (or things that haven't yet been
37 * converted), it will spawn a helper process that does the actual work.
38 *
39 * These helpers are the typically modeled on similar unix core utilities, like
40 * mkdir, rm, rmdir, cat and so on. The helper tools can also be launched
41 * directly from VBoxManage by the user by prepending the 'vbox_' prefix to the
42 * unix command.
43 *
44 */
45
46
47/*********************************************************************************************************************************
48* Header Files *
49*********************************************************************************************************************************/
50#include <iprt/asm.h>
51#include <iprt/assert.h>
52#include <iprt/env.h>
53#include <iprt/file.h>
54#include <iprt/getopt.h>
55#include <iprt/mem.h>
56#include <iprt/path.h>
57#include <iprt/process.h>
58#include <iprt/semaphore.h>
59#include <iprt/thread.h>
60#include <VBox/err.h>
61#include <VBox/VBoxGuestLib.h>
62#include <VBox/HostServices/GuestControlSvc.h>
63#include "VBoxServiceInternal.h"
64#include "VBoxServiceControl.h"
65#include "VBoxServiceUtils.h"
66
67using namespace guestControl;
68
69
70/*********************************************************************************************************************************
71* Global Variables *
72*********************************************************************************************************************************/
73/** The control interval (milliseconds). */
74static uint32_t g_msControlInterval = 0;
75/** The semaphore we're blocking our main control thread on. */
76static RTSEMEVENTMULTI g_hControlEvent = NIL_RTSEMEVENTMULTI;
77/** The VM session ID. Changes whenever the VM is restored or reset. */
78static uint64_t g_idControlSession;
79/** The guest control service client ID. */
80uint32_t g_idControlSvcClient = 0;
81/** VBOX_GUESTCTRL_HF_XXX */
82uint64_t g_fControlHostFeatures0 = 0;
83#if 0 /** @todo process limit */
84/** How many started guest processes are kept into memory for supplying
85 * information to the host. Default is 256 processes. If 0 is specified,
86 * the maximum number of processes is unlimited. */
87static uint32_t g_uControlProcsMaxKept = 256;
88#endif
89/** List of guest control session threads (VBOXSERVICECTRLSESSIONTHREAD).
90 * A guest session thread represents a forked guest session process
91 * of VBoxService. */
92RTLISTANCHOR g_lstControlSessionThreads;
93/** The local session object used for handling all session-related stuff.
94 * When using the legacy guest control protocol (< 2), this session runs
95 * under behalf of the VBoxService main process. On newer protocol versions
96 * each session is a forked version of VBoxService using the appropriate
97 * user credentials for opening a guest session. These forked sessions then
98 * are kept in VBOXSERVICECTRLSESSIONTHREAD structures. */
99VBOXSERVICECTRLSESSION g_Session;
100/** Copy of VbglR3GuestCtrlSupportsOptimizations().*/
101bool g_fControlSupportsOptimizations = true;
102
103
104/*********************************************************************************************************************************
105* Internal Functions *
106*********************************************************************************************************************************/
107static int vgsvcGstCtrlHandleSessionOpen(PVBGLR3GUESTCTRLCMDCTX pHostCtx);
108static int vgsvcGstCtrlHandleSessionClose(PVBGLR3GUESTCTRLCMDCTX pHostCtx);
109static int vgsvcGstCtrlInvalidate(void);
110static void vgsvcGstCtrlShutdown(void);
111
112
113/**
114 * @interface_method_impl{VBOXSERVICE,pfnPreInit}
115 */
116static DECLCALLBACK(int) vgsvcGstCtrlPreInit(void)
117{
118 int rc;
119#ifdef VBOX_WITH_GUEST_PROPS
120 /*
121 * Read the service options from the VM's guest properties.
122 * Note that these options can be overridden by the command line options later.
123 */
124 uint32_t uGuestPropSvcClientID;
125 rc = VbglR3GuestPropConnect(&uGuestPropSvcClientID);
126 if (RT_FAILURE(rc))
127 {
128 if (rc == VERR_HGCM_SERVICE_NOT_FOUND) /* Host service is not available. */
129 {
130 VGSvcVerbose(0, "Guest property service is not available, skipping\n");
131 rc = VINF_SUCCESS;
132 }
133 else
134 VGSvcError("Failed to connect to the guest property service, rc=%Rrc\n", rc);
135 }
136 else
137 VbglR3GuestPropDisconnect(uGuestPropSvcClientID);
138
139 if (rc == VERR_NOT_FOUND) /* If a value is not found, don't be sad! */
140 rc = VINF_SUCCESS;
141#else
142 /* Nothing to do here yet. */
143 rc = VINF_SUCCESS;
144#endif
145
146 if (RT_SUCCESS(rc))
147 {
148 /* Init session object. */
149 rc = VGSvcGstCtrlSessionInit(&g_Session, 0 /* Flags */);
150 }
151
152 return rc;
153}
154
155
156/**
157 * @interface_method_impl{VBOXSERVICE,pfnOption}
158 */
159static DECLCALLBACK(int) vgsvcGstCtrlOption(const char **ppszShort, int argc, char **argv, int *pi)
160{
161 int rc = -1;
162 if (ppszShort)
163 /* no short options */;
164 else if (!strcmp(argv[*pi], "--control-interval"))
165 rc = VGSvcArgUInt32(argc, argv, "", pi,
166 &g_msControlInterval, 1, UINT32_MAX - 1);
167#ifdef DEBUG
168 else if (!strcmp(argv[*pi], "--control-dump-stdout"))
169 {
170 g_Session.fFlags |= VBOXSERVICECTRLSESSION_FLAG_DUMPSTDOUT;
171 rc = 0; /* Flag this command as parsed. */
172 }
173 else if (!strcmp(argv[*pi], "--control-dump-stderr"))
174 {
175 g_Session.fFlags |= VBOXSERVICECTRLSESSION_FLAG_DUMPSTDERR;
176 rc = 0; /* Flag this command as parsed. */
177 }
178#endif
179 return rc;
180}
181
182
183/**
184 * @interface_method_impl{VBOXSERVICE,pfnInit}
185 */
186static DECLCALLBACK(int) vgsvcGstCtrlInit(void)
187{
188 /*
189 * If not specified, find the right interval default.
190 * Then create the event sem to block on.
191 */
192 if (!g_msControlInterval)
193 g_msControlInterval = 1000;
194
195 int rc = RTSemEventMultiCreate(&g_hControlEvent);
196 AssertRCReturn(rc, rc);
197
198 VbglR3GetSessionId(&g_idControlSession); /* The status code is ignored as this information is not available with VBox < 3.2.10. */
199
200 RTListInit(&g_lstControlSessionThreads);
201
202 /*
203 * Try connect to the host service and tell it we want to be master (if supported).
204 */
205 rc = VbglR3GuestCtrlConnect(&g_idControlSvcClient);
206 if (RT_SUCCESS(rc))
207 {
208 rc = vgsvcGstCtrlInvalidate();
209 if (RT_SUCCESS(rc))
210 return rc;
211 }
212 else
213 {
214 /* If the service was not found, we disable this service without
215 causing VBoxService to fail. */
216 if (rc == VERR_HGCM_SERVICE_NOT_FOUND) /* Host service is not available. */
217 {
218 VGSvcVerbose(0, "Guest control service is not available\n");
219 rc = VERR_SERVICE_DISABLED;
220 }
221 else
222 VGSvcError("Failed to connect to the guest control service! Error: %Rrc\n", rc);
223 }
224 RTSemEventMultiDestroy(g_hControlEvent);
225 g_hControlEvent = NIL_RTSEMEVENTMULTI;
226 g_idControlSvcClient = 0;
227 return rc;
228}
229
230static int vgsvcGstCtrlInvalidate(void)
231{
232 VGSvcVerbose(1, "Invalidating configuration ...\n");
233
234 int rc = VINF_SUCCESS;
235
236 g_fControlSupportsOptimizations = VbglR3GuestCtrlSupportsOptimizations(g_idControlSvcClient);
237 if (g_fControlSupportsOptimizations)
238 rc = VbglR3GuestCtrlMakeMeMaster(g_idControlSvcClient);
239 if (RT_SUCCESS(rc))
240 {
241 VGSvcVerbose(3, "Guest control service client ID=%RU32%s\n",
242 g_idControlSvcClient, g_fControlSupportsOptimizations ? " w/ optimizations" : "");
243
244 /*
245 * Report features to the host.
246 */
247 const uint64_t fGuestFeatures = VBOX_GUESTCTRL_GF_0_SET_SIZE
248 | VBOX_GUESTCTRL_GF_0_PROCESS_ARGV0
249 | VBOX_GUESTCTRL_GF_0_PROCESS_DYNAMIC_SIZES;
250
251 rc = VbglR3GuestCtrlReportFeatures(g_idControlSvcClient, fGuestFeatures, &g_fControlHostFeatures0);
252 if (RT_SUCCESS(rc))
253 VGSvcVerbose(3, "Host features: %#RX64\n", g_fControlHostFeatures0);
254 else
255 VGSvcVerbose(1, "Warning! Feature reporing failed: %Rrc\n", rc);
256
257 return VINF_SUCCESS;
258 }
259 VGSvcError("Failed to become guest control master: %Rrc\n", rc);
260 VbglR3GuestCtrlDisconnect(g_idControlSvcClient);
261
262 return rc;
263}
264
265/**
266 * @interface_method_impl{VBOXSERVICE,pfnWorker}
267 */
268static DECLCALLBACK(int) vgsvcGstCtrlWorker(bool volatile *pfShutdown)
269{
270 /*
271 * Tell the control thread that it can continue spawning services.
272 */
273 RTThreadUserSignal(RTThreadSelf());
274 Assert(g_idControlSvcClient > 0);
275
276 /* Allocate a scratch buffer for messages which also send
277 * payload data with them. */
278 uint32_t cbScratchBuf = _64K; /** @todo Make buffer size configurable via guest properties/argv! */
279 AssertReturn(RT_IS_POWER_OF_TWO(cbScratchBuf), VERR_INVALID_PARAMETER);
280 uint8_t *pvScratchBuf = (uint8_t*)RTMemAlloc(cbScratchBuf);
281 AssertReturn(pvScratchBuf, VERR_NO_MEMORY);
282
283 int rc = VINF_SUCCESS; /* (shut up compiler warnings) */
284 int cRetrievalFailed = 0; /* Number of failed message retrievals in a row. */
285 while (!*pfShutdown)
286 {
287 VGSvcVerbose(3, "GstCtrl: Waiting for host msg ...\n");
288 VBGLR3GUESTCTRLCMDCTX ctxHost = { g_idControlSvcClient, 0 /*idContext*/, 2 /*uProtocol*/, 0 /*cParms*/ };
289 uint32_t idMsg = 0;
290 rc = VbglR3GuestCtrlMsgPeekWait(g_idControlSvcClient, &idMsg, &ctxHost.uNumParms, &g_idControlSession);
291 if (RT_SUCCESS(rc))
292 {
293 cRetrievalFailed = 0; /* Reset failed retrieval count. */
294 VGSvcVerbose(4, "idMsg=%RU32 (%s) (%RU32 parms) retrieved\n",
295 idMsg, GstCtrlHostMsgtoStr((eHostMsg)idMsg), ctxHost.uNumParms);
296
297 /*
298 * Handle the host message.
299 */
300 switch (idMsg)
301 {
302 case HOST_MSG_CANCEL_PENDING_WAITS:
303 VGSvcVerbose(1, "We were asked to quit ...\n");
304 break;
305
306 case HOST_MSG_SESSION_CREATE:
307 rc = vgsvcGstCtrlHandleSessionOpen(&ctxHost);
308 break;
309
310 /* This message is also sent to the child session process (by the host). */
311 case HOST_MSG_SESSION_CLOSE:
312 rc = vgsvcGstCtrlHandleSessionClose(&ctxHost);
313 break;
314
315 default:
316 if (VbglR3GuestCtrlSupportsOptimizations(g_idControlSvcClient))
317 {
318 rc = VbglR3GuestCtrlMsgSkip(g_idControlSvcClient, VERR_NOT_SUPPORTED, idMsg);
319 VGSvcVerbose(1, "Skipped unexpected message idMsg=%RU32 (%s), cParms=%RU32 (rc=%Rrc)\n",
320 idMsg, GstCtrlHostMsgtoStr((eHostMsg)idMsg), ctxHost.uNumParms, rc);
321 }
322 else
323 {
324 rc = VbglR3GuestCtrlMsgSkipOld(g_idControlSvcClient);
325 VGSvcVerbose(3, "Skipped idMsg=%RU32, cParms=%RU32, rc=%Rrc\n", idMsg, ctxHost.uNumParms, rc);
326 }
327 break;
328 }
329
330 /* Do we need to shutdown? */
331 if (idMsg == HOST_MSG_CANCEL_PENDING_WAITS)
332 break;
333
334 /* Let's sleep for a bit and let others run ... */
335 RTThreadYield();
336 }
337 /*
338 * Handle restore notification from host. All the context IDs (sessions,
339 * files, proceses, etc) are invalidated by a VM restore and must be closed.
340 */
341 else if (rc == VERR_VM_RESTORED)
342 {
343 VGSvcVerbose(1, "The VM session ID changed (i.e. restored)\n");
344 int rc2 = VGSvcGstCtrlSessionClose(&g_Session);
345 AssertRC(rc2);
346
347 rc2 = VbglR3GuestCtrlSessionHasChanged(g_idControlSvcClient, g_idControlSession);
348 AssertRC(rc2);
349
350 /* Invalidate the internal state to match the current host we got restored from. */
351 rc2 = vgsvcGstCtrlInvalidate();
352 AssertRC(rc2);
353 }
354 else
355 {
356 /* Note: VERR_GEN_IO_FAILURE seems to be normal if ran into timeout. */
357 /** @todo r=bird: Above comment makes no sense. How can you get a timeout in a blocking HGCM call? */
358 VGSvcError("GstCtrl: Getting host message failed with %Rrc\n", rc);
359
360 /* Check for VM session change. */
361 /** @todo We don't need to check the host here. */
362 uint64_t idNewSession = g_idControlSession;
363 int rc2 = VbglR3GetSessionId(&idNewSession);
364 if ( RT_SUCCESS(rc2)
365 && (idNewSession != g_idControlSession))
366 {
367 VGSvcVerbose(1, "GstCtrl: The VM session ID changed\n");
368 g_idControlSession = idNewSession;
369
370 /* Close all opened guest sessions -- all context IDs, sessions etc.
371 * are now invalid. */
372 rc2 = VGSvcGstCtrlSessionClose(&g_Session);
373 AssertRC(rc2);
374
375 /* Do a reconnect. */
376 VGSvcVerbose(1, "Reconnecting to HGCM service ...\n");
377 rc2 = VbglR3GuestCtrlConnect(&g_idControlSvcClient);
378 if (RT_SUCCESS(rc2))
379 {
380 VGSvcVerbose(3, "Guest control service client ID=%RU32\n", g_idControlSvcClient);
381 cRetrievalFailed = 0;
382 continue; /* Skip waiting. */
383 }
384 VGSvcError("Unable to re-connect to HGCM service, rc=%Rrc, bailing out\n", rc);
385 break;
386 }
387
388 if (rc == VERR_INTERRUPTED)
389 RTThreadYield(); /* To be on the safe side... */
390 else if (++cRetrievalFailed <= 16) /** @todo Make this configurable? */
391 RTThreadSleep(1000); /* Wait a bit before retrying. */
392 else
393 {
394 VGSvcError("Too many failed attempts in a row to get next message, bailing out\n");
395 break;
396 }
397 }
398 }
399
400 VGSvcVerbose(0, "Guest control service stopped\n");
401
402 /* Delete scratch buffer. */
403 if (pvScratchBuf)
404 RTMemFree(pvScratchBuf);
405
406 VGSvcVerbose(0, "Guest control worker returned with rc=%Rrc\n", rc);
407 return rc;
408}
409
410
411static int vgsvcGstCtrlHandleSessionOpen(PVBGLR3GUESTCTRLCMDCTX pHostCtx)
412{
413 AssertPtrReturn(pHostCtx, VERR_INVALID_POINTER);
414
415 /*
416 * Retrieve the message parameters.
417 */
418 PVBGLR3GUESTCTRLSESSIONSTARTUPINFO pStartupInfo;
419 int rc = VbglR3GuestCtrlSessionGetOpen(pHostCtx, &pStartupInfo);
420 if (RT_SUCCESS(rc))
421 {
422 /*
423 * Flat out refuse to work with protocol v1 hosts.
424 */
425 if (pStartupInfo->uProtocol == 2)
426 {
427 pHostCtx->uProtocol = pStartupInfo->uProtocol;
428 VGSvcVerbose(3, "Client ID=%RU32 now is using protocol %RU32\n", pHostCtx->uClientID, pHostCtx->uProtocol);
429
430/** @todo Someone explain why this code isn't in this file too? v1 support? */
431 rc = VGSvcGstCtrlSessionThreadCreate(&g_lstControlSessionThreads, pStartupInfo, NULL /* ppSessionThread */);
432 /* Report failures to the host (successes are taken care of by the session thread). */
433 }
434 else
435 {
436 VGSvcError("The host wants to use protocol v%u, we only support v2!\n", pStartupInfo->uProtocol);
437 rc = VERR_VERSION_MISMATCH;
438 }
439 if (RT_FAILURE(rc))
440 {
441 int rc2 = VbglR3GuestCtrlSessionNotify(pHostCtx, GUEST_SESSION_NOTIFYTYPE_ERROR, rc);
442 if (RT_FAILURE(rc2))
443 VGSvcError("Reporting session error status on open failed with rc=%Rrc\n", rc2);
444 }
445 }
446 else
447 {
448 VGSvcError("Error fetching parameters for opening guest session: %Rrc\n", rc);
449 VbglR3GuestCtrlMsgSkip(pHostCtx->uClientID, rc, UINT32_MAX);
450 }
451
452 VbglR3GuestCtrlSessionStartupInfoFree(pStartupInfo);
453 pStartupInfo = NULL;
454
455 VGSvcVerbose(3, "Opening a new guest session returned rc=%Rrc\n", rc);
456 return rc;
457}
458
459
460static int vgsvcGstCtrlHandleSessionClose(PVBGLR3GUESTCTRLCMDCTX pHostCtx)
461{
462 AssertPtrReturn(pHostCtx, VERR_INVALID_POINTER);
463
464 uint32_t idSession;
465 uint32_t fFlags;
466 int rc = VbglR3GuestCtrlSessionGetClose(pHostCtx, &fFlags, &idSession);
467 if (RT_SUCCESS(rc))
468 {
469 rc = VERR_NOT_FOUND;
470
471 PVBOXSERVICECTRLSESSIONTHREAD pThread;
472 RTListForEach(&g_lstControlSessionThreads, pThread, VBOXSERVICECTRLSESSIONTHREAD, Node)
473 {
474 if ( pThread->pStartupInfo
475 && pThread->pStartupInfo->uSessionID == idSession)
476 {
477 rc = VGSvcGstCtrlSessionThreadDestroy(pThread, fFlags);
478 break;
479 }
480 }
481
482#if 0 /** @todo A bit of a mess here as this message goes to both to this process (master) and the session process. */
483 if (RT_FAILURE(rc))
484 {
485 /* Report back on failure. On success this will be done
486 * by the forked session thread. */
487 int rc2 = VbglR3GuestCtrlSessionNotify(pHostCtx,
488 GUEST_SESSION_NOTIFYTYPE_ERROR, rc);
489 if (RT_FAILURE(rc2))
490 {
491 VGSvcError("Reporting session error status on close failed with rc=%Rrc\n", rc2);
492 if (RT_SUCCESS(rc))
493 rc = rc2;
494 }
495 }
496#endif
497 VGSvcVerbose(2, "Closing guest session %RU32 returned rc=%Rrc\n", idSession, rc);
498 }
499 else
500 {
501 VGSvcError("Error fetching parameters for closing guest session: %Rrc\n", rc);
502 VbglR3GuestCtrlMsgSkip(pHostCtx->uClientID, rc, UINT32_MAX);
503 }
504 return rc;
505}
506
507
508/**
509 * @interface_method_impl{VBOXSERVICE,pfnStop}
510 */
511static DECLCALLBACK(void) vgsvcGstCtrlStop(void)
512{
513 VGSvcVerbose(3, "Stopping ...\n");
514
515 /** @todo Later, figure what to do if we're in RTProcWait(). It's a very
516 * annoying call since doesn't support timeouts in the posix world. */
517 if (g_hControlEvent != NIL_RTSEMEVENTMULTI)
518 RTSemEventMultiSignal(g_hControlEvent);
519
520 /*
521 * Ask the host service to cancel all pending requests for the main
522 * control thread so that we can shutdown properly here.
523 */
524 if (g_idControlSvcClient)
525 {
526 VGSvcVerbose(3, "Cancelling pending waits (client ID=%u) ...\n",
527 g_idControlSvcClient);
528
529 int rc = VbglR3GuestCtrlCancelPendingWaits(g_idControlSvcClient);
530 if (RT_FAILURE(rc))
531 VGSvcError("Cancelling pending waits failed; rc=%Rrc\n", rc);
532 }
533}
534
535
536/**
537 * Destroys all guest process threads which are still active.
538 */
539static void vgsvcGstCtrlShutdown(void)
540{
541 VGSvcVerbose(2, "Shutting down ...\n");
542
543 int rc2 = VGSvcGstCtrlSessionThreadDestroyAll(&g_lstControlSessionThreads, 0 /* Flags */);
544 if (RT_FAILURE(rc2))
545 VGSvcError("Closing session threads failed with rc=%Rrc\n", rc2);
546
547 rc2 = VGSvcGstCtrlSessionClose(&g_Session);
548 if (RT_FAILURE(rc2))
549 VGSvcError("Closing session failed with rc=%Rrc\n", rc2);
550
551 VGSvcVerbose(2, "Shutting down complete\n");
552}
553
554
555/**
556 * @interface_method_impl{VBOXSERVICE,pfnTerm}
557 */
558static DECLCALLBACK(void) vgsvcGstCtrlTerm(void)
559{
560 VGSvcVerbose(3, "Terminating ...\n");
561
562 vgsvcGstCtrlShutdown();
563
564 VGSvcVerbose(3, "Disconnecting client ID=%u ...\n", g_idControlSvcClient);
565 VbglR3GuestCtrlDisconnect(g_idControlSvcClient);
566 g_idControlSvcClient = 0;
567
568 if (g_hControlEvent != NIL_RTSEMEVENTMULTI)
569 {
570 RTSemEventMultiDestroy(g_hControlEvent);
571 g_hControlEvent = NIL_RTSEMEVENTMULTI;
572 }
573}
574
575
576/**
577 * The 'vminfo' service description.
578 */
579VBOXSERVICE g_Control =
580{
581 /* pszName. */
582 "control",
583 /* pszDescription. */
584 "Host-driven Guest Control",
585 /* pszUsage. */
586#ifdef DEBUG
587 " [--control-dump-stderr] [--control-dump-stdout]\n"
588#endif
589 " [--control-interval <ms>]"
590 ,
591 /* pszOptions. */
592#ifdef DEBUG
593 " --control-dump-stderr Dumps all guest proccesses stderr data to the\n"
594 " temporary directory.\n"
595 " --control-dump-stdout Dumps all guest proccesses stdout data to the\n"
596 " temporary directory.\n"
597#endif
598 " --control-interval Specifies the interval at which to check for\n"
599 " new control messages. The default is 1000 ms.\n"
600 ,
601 /* methods */
602 vgsvcGstCtrlPreInit,
603 vgsvcGstCtrlOption,
604 vgsvcGstCtrlInit,
605 vgsvcGstCtrlWorker,
606 vgsvcGstCtrlStop,
607 vgsvcGstCtrlTerm
608};
609
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