VirtualBox

source: vbox/trunk/include/iprt/process.h@ 80569

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

Main: bugref:9341: Added VM autostart during boot support for windows host

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 17.2 KB
Line 
1/** @file
2 * IPRT - Process Management.
3 */
4
5/*
6 * Copyright (C) 2006-2019 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef IPRT_INCLUDED_process_h
27#define IPRT_INCLUDED_process_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <iprt/cdefs.h>
33#include <iprt/types.h>
34
35RT_C_DECLS_BEGIN
36
37/** @defgroup grp_rt_process RTProc - Process Management
38 * @ingroup grp_rt
39 * @{
40 */
41
42
43/**
44 * Process priority.
45 *
46 * The process priority is used to select how scheduling properties
47 * are assigned to the different thread types (see THREADTYPE).
48 *
49 * In addition to using the policy assigned to the process at startup (DEFAULT)
50 * it is possible to change the process priority at runtime. This allows for
51 * a GUI, resource manager or admin to adjust the general priority of a task
52 * without upsetting the fine-tuned priority of the threads within.
53 */
54typedef enum RTPROCPRIORITY
55{
56 /** Invalid priority. */
57 RTPROCPRIORITY_INVALID = 0,
58 /** Default priority.
59 * Derive the scheduling policy from the priority of the RTR3Init()
60 * and RTProcSetPriority() callers and the rights the process have
61 * to alter its own priority.
62 */
63 RTPROCPRIORITY_DEFAULT,
64 /** Flat priority.
65 * Assumes a scheduling policy which puts the process at the default priority
66 * and with all thread at the same priority.
67 */
68 RTPROCPRIORITY_FLAT,
69 /** Low priority.
70 * Assumes a scheduling policy which puts the process mostly below the
71 * default priority of the host OS.
72 */
73 RTPROCPRIORITY_LOW,
74 /** Normal priority.
75 * Assume a scheduling policy which shares the CPU resources fairly with
76 * other processes running with the default priority of the host OS.
77 */
78 RTPROCPRIORITY_NORMAL,
79 /** High priority.
80 * Assumes a scheduling policy which puts the task above the default
81 * priority of the host OS. This policy might easily cause other tasks
82 * in the system to starve.
83 */
84 RTPROCPRIORITY_HIGH,
85 /** Last priority, used for validation. */
86 RTPROCPRIORITY_LAST
87} RTPROCPRIORITY;
88
89
90/**
91 * Get the current process identifier.
92 *
93 * @returns Process identifier.
94 */
95RTDECL(RTPROCESS) RTProcSelf(void);
96
97
98#ifdef IN_RING0
99/**
100 * Get the current process handle.
101 *
102 * @returns Ring-0 process handle.
103 */
104RTR0DECL(RTR0PROCESS) RTR0ProcHandleSelf(void);
105#endif
106
107
108#ifdef IN_RING3
109
110/**
111 * Attempts to alter the priority of the current process.
112 *
113 * @returns iprt status code.
114 * @param enmPriority The new priority.
115 */
116RTR3DECL(int) RTProcSetPriority(RTPROCPRIORITY enmPriority);
117
118/**
119 * Gets the current priority of this process.
120 *
121 * @returns The priority (see RTPROCPRIORITY).
122 */
123RTR3DECL(RTPROCPRIORITY) RTProcGetPriority(void);
124
125/**
126 * Create a child process.
127 *
128 * @returns iprt status code.
129 * @param pszExec Executable image to use to create the child process.
130 * @param papszArgs Pointer to an array of arguments to the child. The array terminated by an entry containing NULL.
131 * @param Env Handle to the environment block for the child.
132 * @param fFlags Flags, one of the RTPROC_FLAGS_* defines.
133 * @param pProcess Where to store the process identifier on successful return.
134 * The content is not changed on failure. NULL is allowed.
135 */
136RTR3DECL(int) RTProcCreate(const char *pszExec, const char * const *papszArgs, RTENV Env, unsigned fFlags, PRTPROCESS pProcess);
137
138
139/**
140 * Create a child process.
141 *
142 * @returns IPRT status code.
143 *
144 * @param pszExec Executable image to use to create the child process.
145 * @param papszArgs Pointer to an array of arguments to the child. The
146 * array terminated by an entry containing NULL.
147 * @param hEnv Handle to the environment block for the child. Pass
148 * RTENV_DEFAULT to use the environment of the current
149 * process.
150 * @param fFlags Flags, one of the RTPROC_FLAGS_* defines.
151 * @param phStdIn The standard in handle to assign the new process. Pass
152 * NULL to use the same as the current process. If the
153 * handle is NIL, we'll close the standard input of the
154 * guest.
155 * @param phStdOut The standard out handle to assign the new process. Pass
156 * NULL to use the same as the current process. If the
157 * handle is NIL, we'll close the standard output of the
158 * guest.
159 * @param phStdErr The standard error handle to assign the new process. Pass
160 * NULL to use the same as the current process. If the
161 * handle is NIL, we'll close the standard error of the
162 * guest.
163 * @param pszAsUser User to run the process as. Pass NULL to use the same
164 * user as the current process.
165 * Windows: Use user\@domain (UPN, User Principal Name)
166 * format to specify a domain.
167 * @param pszPassword Password to use to authenticate @a pszAsUser. Must be
168 * NULL wif pszAsUser is NULL. Whether this is actually
169 * used or not depends on the platform.
170 * @param pvExtraData Points to additional data as per @a fFlags:
171 * - RTPROC_FLAGS_DESIRED_SESSION_ID: Pointing to a
172 * uint32_t variable with the desired session ID.
173 * @param phProcess Where to store the process handle on successful return.
174 * The content is not changed on failure. NULL is allowed.
175 *
176 * @remarks The handles does not have to be created as inheritable, but it
177 * doesn't hurt if they are as it may avoid race conditions on some
178 * platforms.
179 *
180 * @remarks The as-user feature isn't supported/implemented on all platforms and
181 * will cause a-yet-to-be-determined-error-status on these.
182 */
183RTR3DECL(int) RTProcCreateEx(const char *pszExec, const char * const *papszArgs, RTENV hEnv, uint32_t fFlags,
184 PCRTHANDLE phStdIn, PCRTHANDLE phStdOut, PCRTHANDLE phStdErr, const char *pszAsUser,
185 const char *pszPassword, void *pvExtraData, PRTPROCESS phProcess);
186
187/** @name RTProcCreate and RTProcCreateEx flags
188 * @{ */
189/** Detach the child process from the parents process tree and process group,
190 * session or/and console (depends on the platform what's done applicable).
191 *
192 * The new process will not be a direct decendent of the parent and it will not
193 * be possible to wait for it, i.e. @a phProcess shall be NULL. */
194#define RTPROC_FLAGS_DETACHED RT_BIT(0)
195/** Don't show the started process.
196 * This is a Windows (and maybe OS/2) concept, do not use on other platforms. */
197#define RTPROC_FLAGS_HIDDEN RT_BIT(1)
198/** Use special code path for starting child processes from a service (daemon).
199 * This is a windows concept for dealing with the so called "Session 0"
200 * isolation which was introduced with Windows Vista. Do not use on other
201 * platforms. */
202#define RTPROC_FLAGS_SERVICE RT_BIT(2)
203/** Suppress changing the process contract id for the child process
204 * on Solaris. Without this flag the contract id is always changed, as that's
205 * the more frequently used case. */
206#define RTPROC_FLAGS_SAME_CONTRACT RT_BIT(3)
207/** Load user profile data when executing a process.
208 * This redefines the meaning of RTENV_DEFAULT to the profile environment.
209 * @remarks On non-windows platforms, the resulting environment maybe very
210 * different from what you see in your shell. Among other reasons,
211 * we cannot run shell profile scripts which typically sets up the
212 * environment. */
213#define RTPROC_FLAGS_PROFILE RT_BIT(4)
214/** Create process without a console window.
215 * This is a Windows (and OS/2) concept, do not use on other platforms. */
216#define RTPROC_FLAGS_NO_WINDOW RT_BIT(5)
217/** Search the PATH for the executable. */
218#define RTPROC_FLAGS_SEARCH_PATH RT_BIT(6)
219/** Don't quote and escape arguments on Windows and similar platforms where a
220 * command line is passed to the child process instead of an argument vector,
221 * just join up argv with a space between each. Ignored on platforms
222 * passing argument the vector. */
223#define RTPROC_FLAGS_UNQUOTED_ARGS RT_BIT(7)
224/** Consider hEnv an environment change record to be applied to RTENV_DEFAULT.
225 * If hEnv is RTENV_DEFAULT, the flag has no effect. */
226#define RTPROC_FLAGS_ENV_CHANGE_RECORD RT_BIT(8)
227/** Create process using the current impersonated thread token.
228 * Caller should also specify RTPROC_FLAGS_SERVICE and RTPROC_FLAGS_PROFILE.
229 * Windows only flag, ignored everywhere else. */
230#define RTPROC_FLAGS_AS_IMPERSONATED_TOKEN RT_BIT(9)
231/** Hint that we don't expect to ever want to wait on the process. */
232#define RTPROC_FLAGS_NO_WAIT RT_BIT(10)
233/** For use with RTPROC_FLAGS_SERVICE to specify a desired session ID
234 * (Windows only, ignored elsewhere). The @a pvExtraData argument points to
235 * a uint32_t containing the session ID, UINT32_MAX means any session. */
236#define RTPROC_FLAGS_DESIRED_SESSION_ID RT_BIT(11)
237/** Valid flag mask. */
238#define RTPROC_FLAGS_VALID_MASK UINT32_C(0xfff)
239/** @} */
240
241
242/**
243 * Process exit reason.
244 */
245typedef enum RTPROCEXITREASON
246{
247 /** Normal exit. iStatus contains the exit code. */
248 RTPROCEXITREASON_NORMAL = 1,
249 /** Any abnormal exit. iStatus is undefined. */
250 RTPROCEXITREASON_ABEND,
251 /** Killed by a signal. The iStatus field contains the signal number. */
252 RTPROCEXITREASON_SIGNAL
253} RTPROCEXITREASON;
254
255/**
256 * Process exit status.
257 */
258typedef struct RTPROCSTATUS
259{
260 /** The process exit status if the exit was a normal one. */
261 int iStatus;
262 /** The reason the process terminated. */
263 RTPROCEXITREASON enmReason;
264} RTPROCSTATUS;
265/** Pointer to a process exit status structure. */
266typedef RTPROCSTATUS *PRTPROCSTATUS;
267/** Pointer to a const process exit status structure. */
268typedef const RTPROCSTATUS *PCRTPROCSTATUS;
269
270
271/** Flags for RTProcWait().
272 * @{ */
273/** Block indefinitly waiting for the process to exit. */
274#define RTPROCWAIT_FLAGS_BLOCK 0
275/** Don't block, just check if the process have exited. */
276#define RTPROCWAIT_FLAGS_NOBLOCK 1
277/** @} */
278
279/**
280 * Waits for a process, resumes on interruption.
281 *
282 * @returns VINF_SUCCESS when the status code for the process was collected and
283 * put in *pProcStatus.
284 * @returns VERR_PROCESS_NOT_FOUND if the specified process wasn't found.
285 * @returns VERR_PROCESS_RUNNING when the RTPROCWAIT_FLAGS_NOBLOCK and the
286 * process haven't exited yet.
287 *
288 * @param Process The process to wait for.
289 * @param fFlags The wait flags, any of the RTPROCWAIT_FLAGS_ \#defines.
290 * @param pProcStatus Where to store the exit status on success.
291 * Optional.
292 */
293RTR3DECL(int) RTProcWait(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus);
294
295/**
296 * Waits for a process, returns on interruption.
297 *
298 * @returns VINF_SUCCESS when the status code for the process was collected and
299 * put in *pProcStatus.
300 * @returns VERR_PROCESS_NOT_FOUND if the specified process wasn't found.
301 * @returns VERR_PROCESS_RUNNING when the RTPROCWAIT_FLAGS_NOBLOCK and the
302 * process haven't exited yet.
303 * @returns VERR_INTERRUPTED when the wait was interrupted by the arrival of a
304 * signal or other async event.
305 *
306 * @param Process The process to wait for.
307 * @param fFlags The wait flags, any of the RTPROCWAIT_FLAGS_ \#defines.
308 * @param pProcStatus Where to store the exit status on success.
309 * Optional.
310 */
311RTR3DECL(int) RTProcWaitNoResume(RTPROCESS Process, unsigned fFlags, PRTPROCSTATUS pProcStatus);
312
313/**
314 * Terminates (kills) a running process.
315 *
316 * @returns IPRT status code.
317 * @param Process The process to terminate.
318 */
319RTR3DECL(int) RTProcTerminate(RTPROCESS Process);
320
321/**
322 * Gets the processor affinity mask of the current process.
323 *
324 * @returns The affinity mask.
325 */
326RTR3DECL(uint64_t) RTProcGetAffinityMask(void);
327
328/**
329 * Gets the short process name.
330 *
331 * @returns Pointer to read-only name string.
332 */
333RTR3DECL(const char *) RTProcShortName(void);
334
335/**
336 * Gets the path to the executable image of the current process.
337 *
338 * @returns pszExecPath on success. NULL on buffer overflow or other errors.
339 *
340 * @param pszExecPath Where to store the path.
341 * @param cbExecPath The size of the buffer.
342 */
343RTR3DECL(char *) RTProcGetExecutablePath(char *pszExecPath, size_t cbExecPath);
344
345/**
346 * Daemonize the current process, making it a background process.
347 *
348 * The way this work is that it will spawn a detached / backgrounded /
349 * daemonized / call-it-what-you-want process that isn't a direct child of the
350 * current process. The spawned will have the same arguments a the caller,
351 * except that the @a pszDaemonizedOpt is appended to prevent that the new
352 * process calls this API again.
353 *
354 * The new process will have the standard handles directed to/from the
355 * bitbucket.
356 *
357 * @returns IPRT status code. On success it is normal for the caller to exit
358 * the process by returning from main().
359 *
360 * @param papszArgs The argument vector of the calling process.
361 * @param pszDaemonizedOpt The daemonized option. This is appended to the
362 * end of the parameter list of the daemonized process.
363 */
364RTR3DECL(int) RTProcDaemonize(const char * const *papszArgs, const char *pszDaemonizedOpt);
365
366/**
367 * Daemonize the current process, making it a background process. The current
368 * process will exit if daemonizing is successful.
369 *
370 * @returns IPRT status code. On success it will only return in the child
371 * process, the parent will exit. On failure, it will return in the
372 * parent process and no child has been spawned.
373 *
374 * @param fNoChDir Pass false to change working directory to "/".
375 * @param fNoClose Pass false to redirect standard file streams to the null device.
376 * @param pszPidfile Path to a file to write the process id of the daemon
377 * process to. Daemonizing will fail if this file already
378 * exists or cannot be written. May be NULL.
379 */
380RTR3DECL(int) RTProcDaemonizeUsingFork(bool fNoChDir, bool fNoClose, const char *pszPidfile);
381
382/**
383 * Check if the given process is running on the system.
384 *
385 * This check is case sensitive on most systems, except for Windows, OS/2 and
386 * Darwin.
387 *
388 * @returns true if the process is running & false otherwise.
389 * @param pszName Process name to search for. If no path is given only the
390 * filename part of the running process set will be
391 * matched. If a path is specified, the full path will be
392 * matched.
393 */
394RTR3DECL(bool) RTProcIsRunningByName(const char *pszName);
395
396/**
397 * Queries the parent process ID.
398 *
399 * @returns IPRT status code
400 * @param hProcess The process to query the parent of.
401 * @param phParent Where to return the parent process ID.
402 */
403RTR3DECL(int) RTProcQueryParent(RTPROCESS hProcess, PRTPROCESS phParent);
404
405/**
406 * Query the username of the given process.
407 *
408 * @returns IPRT status code.
409 * @retval VERR_BUFFER_OVERFLOW if the given buffer size is to small for the username.
410 * @param hProcess The process handle to query the username for.
411 * NIL_PROCESS is an alias for the current process.
412 * @param pszUser Where to store the user name on success.
413 * @param cbUser The size of the user name buffer.
414 * @param pcbUser Where to store the username length on success
415 * or the required buffer size if VERR_BUFFER_OVERFLOW
416 * is returned.
417 */
418RTR3DECL(int) RTProcQueryUsername(RTPROCESS hProcess, char *pszUser, size_t cbUser, size_t *pcbUser);
419
420/**
421 * Query the username of the given process allocating the string for the username.
422 *
423 * @returns IPRT status code.
424 * @param hProcess The process handle to query the username for.
425 * @param ppszUser Where to store the pointer to the string containing
426 * the username on success. Free with RTStrFree().
427 */
428RTR3DECL(int) RTProcQueryUsernameA(RTPROCESS hProcess, char **ppszUser);
429
430#endif /* IN_RING3 */
431
432/** @} */
433
434RT_C_DECLS_END
435
436#endif /* !IPRT_INCLUDED_process_h */
437
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