VirtualBox

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

Last change on this file since 58624 was 57926, checked in by vboxsync, 9 years ago

IPRT: Doxygen clenaups (mostly).

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