VirtualBox

source: vbox/trunk/include/VBox/GuestHost/GuestControl.h@ 67815

Last change on this file since 67815 was 61893, checked in by vboxsync, 8 years ago

Main: Renamed ProcessCreateFlag::NoProfile to ProcessCreateFlag::Profile.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.6 KB
Line 
1/* $Id: GuestControl.h 61893 2016-06-27 11:31:20Z vboxsync $ */
2/** @file
3 * Guest Control - Common Guest and Host Code.
4 */
5
6/*
7 * Copyright (C) 2016 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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef ___VBox_GuestHost_GuestControl_h
28#define ___VBox_GuestHost_GuestControl_h
29
30/* Everything defined in this file lives in this namespace. */
31namespace guestControl {
32
33/**
34 * Process status when executed in the guest.
35 */
36enum eProcessStatus
37{
38 /** Process is in an undefined state. */
39 PROC_STS_UNDEFINED = 0,
40 /** Process has been started. */
41 PROC_STS_STARTED = 1,
42 /** Process terminated normally. */
43 PROC_STS_TEN = 2,
44 /** Process terminated via signal. */
45 PROC_STS_TES = 3,
46 /** Process terminated abnormally. */
47 PROC_STS_TEA = 4,
48 /** Process timed out and was killed. */
49 PROC_STS_TOK = 5,
50 /** Process timed out and was not killed successfully. */
51 PROC_STS_TOA = 6,
52 /** Service/OS is stopping, process was killed. */
53 PROC_STS_DWN = 7,
54 /** Something went wrong (error code in flags). */
55 PROC_STS_ERROR = 8
56};
57
58/** @todo r=bird: Most defines in this file needs to be scoped a little
59 * better! For instance INPUT_FLAG_NONE is very generic. */
60
61/**
62 * Input flags, set by the host. This is needed for
63 * handling flags on the guest side.
64 * Note: Has to match Main's ProcessInputFlag_* flags!
65 */
66#define INPUT_FLAG_NONE 0x0
67#define INPUT_FLAG_EOF RT_BIT(0)
68
69/**
70 * Guest session creation flags.
71 * Only handled internally at the moment.
72 */
73#define SESSIONCREATIONFLAG_NONE 0x0
74
75/** @name DIRREMOVE_FLAG_XXX - Guest directory removement flags.
76 * Essentially using what IPRT's RTDIRRMREC_F_
77 * defines have to offer.
78 * @{
79 */
80#define DIRREMOVE_FLAG_RECURSIVE RT_BIT(0)
81/** Delete the content of the directory and the directory itself. */
82#define DIRREMOVE_FLAG_CONTENT_AND_DIR RT_BIT(1)
83/** Only delete the content of the directory, omit the directory it self. */
84#define DIRREMOVE_FLAG_CONTENT_ONLY RT_BIT(2)
85/** Mask of valid flags. */
86#define DIRREMOVE_FLAG_VALID_MASK UINT32_C(0x00000003)
87/** @} */
88
89/** @name EXECUTEPROCESSFLAG_XXX - Guest process creation flags.
90 * @note Has to match Main's ProcessCreateFlag_* flags!
91 * @{
92 */
93#define EXECUTEPROCESSFLAG_NONE UINT32_C(0x0)
94#define EXECUTEPROCESSFLAG_WAIT_START RT_BIT(0)
95#define EXECUTEPROCESSFLAG_IGNORE_ORPHANED RT_BIT(1)
96#define EXECUTEPROCESSFLAG_HIDDEN RT_BIT(2)
97#define EXECUTEPROCESSFLAG_PROFILE RT_BIT(3)
98#define EXECUTEPROCESSFLAG_WAIT_STDOUT RT_BIT(4)
99#define EXECUTEPROCESSFLAG_WAIT_STDERR RT_BIT(5)
100#define EXECUTEPROCESSFLAG_EXPAND_ARGUMENTS RT_BIT(6)
101#define EXECUTEPROCESSFLAG_UNQUOTED_ARGS RT_BIT(7)
102/** @} */
103
104/** @name OUTPUT_HANDLE_ID_XXX - Pipe handle IDs used internally for referencing
105 * to a certain pipe buffer.
106 * @{
107 */
108#define OUTPUT_HANDLE_ID_STDOUT_DEPRECATED 0 /**< Needed for VBox hosts < 4.1.0. */
109#define OUTPUT_HANDLE_ID_STDOUT 1
110#define OUTPUT_HANDLE_ID_STDERR 2
111/** @} */
112
113/** @name PATHRENAME_FLAG_XXX - Guest path rename flags.
114 * Essentially using what IPRT's RTPATHRENAME_FLAGS_XXX have to offer.
115 * @{
116 */
117/** Do not replace anything. */
118#define PATHRENAME_FLAG_NO_REPLACE UINT32_C(0)
119/** This will replace attempt any target which isn't a directory. */
120#define PATHRENAME_FLAG_REPLACE RT_BIT(0)
121/** Don't allow symbolic links as part of the path. */
122#define PATHRENAME_FLAG_NO_SYMLINKS RT_BIT(1)
123/** Mask of valid flags. */
124#define PATHRENAME_FLAG_VALID_MASK UINT32_C(0x00000002)
125/** @} */
126
127/** @name Defines for guest process array lengths.
128 * @{
129 */
130#define GUESTPROCESS_MAX_CMD_LEN _1K
131#define GUESTPROCESS_MAX_ARGS_LEN _1K
132#define GUESTPROCESS_MAX_ENV_LEN _64K
133#define GUESTPROCESS_MAX_USER_LEN 128
134#define GUESTPROCESS_MAX_PASSWORD_LEN 128
135#define GUESTPROCESS_MAX_DOMAIN_LEN 256
136/** @} */
137
138/** @name Internal tools built into VBoxService which are used in order
139 * to accomplish tasks host<->guest.
140 * @{
141 */
142#define VBOXSERVICE_TOOL_CAT "vbox_cat"
143#define VBOXSERVICE_TOOL_LS "vbox_ls"
144#define VBOXSERVICE_TOOL_RM "vbox_rm"
145#define VBOXSERVICE_TOOL_MKDIR "vbox_mkdir"
146#define VBOXSERVICE_TOOL_MKTEMP "vbox_mktemp"
147#define VBOXSERVICE_TOOL_STAT "vbox_stat"
148/** @} */
149
150/** Special process exit codes for "vbox_cat". */
151typedef enum VBOXSERVICETOOLBOX_CAT_EXITCODE
152{
153 VBOXSERVICETOOLBOX_CAT_EXITCODE_ACCESS_DENIED = RTEXITCODE_END,
154 VBOXSERVICETOOLBOX_CAT_EXITCODE_FILE_NOT_FOUND,
155 VBOXSERVICETOOLBOX_CAT_EXITCODE_PATH_NOT_FOUND,
156 VBOXSERVICETOOLBOX_CAT_EXITCODE_SHARING_VIOLATION,
157 /** The usual 32-bit type hack. */
158 VBOXSERVICETOOLBOX_CAT_32BIT_HACK = 0x7fffffff
159} VBOXSERVICETOOLBOX_CAT_EXITCODE;
160
161/** Special process exit codes for "vbox_stat". */
162typedef enum VBOXSERVICETOOLBOX_STAT_EXITCODE
163{
164 VBOXSERVICETOOLBOX_STAT_EXITCODE_ACCESS_DENIED = RTEXITCODE_END,
165 VBOXSERVICETOOLBOX_STAT_EXITCODE_FILE_NOT_FOUND,
166 VBOXSERVICETOOLBOX_STAT_EXITCODE_PATH_NOT_FOUND,
167 /** The usual 32-bit type hack. */
168 VBOXSERVICETOOLBOX_STAT_32BIT_HACK = 0x7fffffff
169} VBOXSERVICETOOLBOX_STAT_EXITCODE;
170
171/**
172 * Input status, reported by the client.
173 */
174enum eInputStatus
175{
176 /** Input is in an undefined state. */
177 INPUT_STS_UNDEFINED = 0,
178 /** Input was written (partially, see cbProcessed). */
179 INPUT_STS_WRITTEN = 1,
180 /** Input failed with an error (see flags for rc). */
181 INPUT_STS_ERROR = 20,
182 /** Process has abandoned / terminated input handling. */
183 INPUT_STS_TERMINATED = 21,
184 /** Too much input data. */
185 INPUT_STS_OVERFLOW = 30
186};
187
188
189
190} /* namespace guestControl */
191
192#endif /* !___VBox_GuestHost_GuestControl_h */
193
Note: See TracBrowser for help on using the repository browser.

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