[go: nahoru, domu]

blob: c7b7618eed930d9ad6e93c224ed3612707573bfc [file] [log] [blame]
tbarzic@chromium.org927054d2012-01-21 01:48:251// Copyright (c) 2012 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commitd7cae122008-07-26 21:49:384
5// This file/namespace contains utility functions for enumerating, ending and
6// computing statistics of processes.
7
deanm@google.comdb717282008-08-27 13:48:038#ifndef BASE_PROCESS_UTIL_H_
9#define BASE_PROCESS_UTIL_H_
thakis@chromium.org32b76ef2010-07-26 23:08:2410#pragma once
initial.commitd7cae122008-07-26 21:49:3811
paulg@google.com61659062008-08-06 01:04:1812#include "base/basictypes.h"
tedvessenes@gmail.com7e1117c2012-03-31 20:42:4113#include "base/time.h"
paulg@google.com61659062008-08-06 01:04:1814
dkegel@google.comab0e2222008-10-31 20:19:4315#if defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:3816#include <windows.h>
17#include <tlhelp32.h>
robert.nagy@gmail.comaf824362011-12-04 14:19:4118#elif defined(OS_MACOSX) || defined(OS_BSD)
wtc@chromium.org4a34ce02009-08-31 22:25:0019// kinfo_proc is defined in <sys/sysctl.h>, but this forward declaration
20// is sufficient for the vector<kinfo_proc> below.
21struct kinfo_proc;
avi@chromium.org6cfa3392010-07-01 20:11:4322// malloc_zone_t is defined in <malloc/malloc.h>, but this forward declaration
23// is sufficient for GetPurgeableZone() below.
24typedef struct _malloc_zone_t malloc_zone_t;
robert.nagy@gmail.comaf824362011-12-04 14:19:4125#if !defined(OS_BSD)
thakis@chromium.orgc0028792010-01-12 00:39:1526#include <mach/mach.h>
mark@chromium.org817f0f142011-10-13 04:23:2227#endif
wtc@chromium.org4a34ce02009-08-31 22:25:0028#elif defined(OS_POSIX)
dkegel@google.comab0e2222008-10-31 20:19:4329#include <dirent.h>
30#include <limits.h>
31#include <sys/types.h>
paulg@google.com61659062008-08-06 01:04:1832#endif
initial.commitd7cae122008-07-26 21:49:3833
maruel@chromium.orgb6128aa2010-04-29 17:44:4234#include <list>
mcgrathr@chromium.org77540fdf2011-11-15 18:49:1035#include <set>
paulg@google.com61659062008-08-06 01:04:1836#include <string>
thestig@chromium.org9ec8db02009-07-21 07:00:1337#include <utility>
mark@chromium.org962dd312009-02-05 21:44:1338#include <vector>
paulg@google.com61659062008-08-06 01:04:1839
darin@chromium.org0bea7252011-08-05 15:34:0040#include "base/base_export.h"
maruel@chromium.orga5a00b1d2010-04-08 15:52:4541#include "base/file_descriptor_shuffle.h"
avi@chromium.org4f260d02010-12-23 18:35:4242#include "base/file_path.h"
initial.commitd7cae122008-07-26 21:49:3843#include "base/process.h"
44
erg@google.com5d91c9e2010-07-28 17:25:2845class CommandLine;
erg@google.com5d91c9e2010-07-28 17:25:2846
maruel@chromium.orga5a00b1d2010-04-08 15:52:4547namespace base {
48
paulg@google.com61659062008-08-06 01:04:1849#if defined(OS_WIN)
maruel@chromium.orga5a00b1d2010-04-08 15:52:4550struct ProcessEntry : public PROCESSENTRY32 {
maruel@chromium.orgb6128aa2010-04-29 17:44:4251 ProcessId pid() const { return th32ProcessID; }
52 ProcessId parent_pid() const { return th32ParentProcessID; }
53 const wchar_t* exe_file() const { return szExeFile; }
maruel@chromium.orga5a00b1d2010-04-08 15:52:4554};
maruel@chromium.orgb6128aa2010-04-29 17:44:4255
maruel@chromium.orga5a00b1d2010-04-08 15:52:4556struct IoCounters : public IO_COUNTERS {
57};
58
sanjeevr@chromium.org7d11f6d52010-10-12 21:44:2359// Process access masks. These constants provide platform-independent
60// definitions for the standard Windows access masks.
61// See http://msdn.microsoft.com/en-us/library/ms684880(VS.85).aspx for
62// the specific semantics of each mask value.
63const uint32 kProcessAccessTerminate = PROCESS_TERMINATE;
64const uint32 kProcessAccessCreateThread = PROCESS_CREATE_THREAD;
65const uint32 kProcessAccessSetSessionId = PROCESS_SET_SESSIONID;
66const uint32 kProcessAccessVMOperation = PROCESS_VM_OPERATION;
67const uint32 kProcessAccessVMRead = PROCESS_VM_READ;
68const uint32 kProcessAccessVMWrite = PROCESS_VM_WRITE;
69const uint32 kProcessAccessDuplicateHandle = PROCESS_DUP_HANDLE;
70const uint32 kProcessAccessCreateProcess = PROCESS_CREATE_PROCESS;
71const uint32 kProcessAccessSetQuota = PROCESS_SET_QUOTA;
72const uint32 kProcessAccessSetInformation = PROCESS_SET_INFORMATION;
73const uint32 kProcessAccessQueryInformation = PROCESS_QUERY_INFORMATION;
74const uint32 kProcessAccessSuspendResume = PROCESS_SUSPEND_RESUME;
75const uint32 kProcessAccessQueryLimitedInfomation =
76 PROCESS_QUERY_LIMITED_INFORMATION;
77const uint32 kProcessAccessWaitForTermination = SYNCHRONIZE;
paulg@google.com61659062008-08-06 01:04:1878#elif defined(OS_POSIX)
maruel@chromium.orga5a00b1d2010-04-08 15:52:4579
dkegel@google.comab0e2222008-10-31 20:19:4380struct ProcessEntry {
erg@google.combbf94a32010-10-13 17:44:1581 ProcessEntry();
82 ~ProcessEntry();
83
maruel@chromium.orgb6128aa2010-04-29 17:44:4284 ProcessId pid() const { return pid_; }
85 ProcessId parent_pid() const { return ppid_; }
rsimha@chromium.orgc47d81d2010-10-05 23:41:0486 ProcessId gid() const { return gid_; }
maruel@chromium.orgb6128aa2010-04-29 17:44:4287 const char* exe_file() const { return exe_file_.c_str(); }
rsimha@chromium.orgc47d81d2010-10-05 23:41:0488 const std::vector<std::string>& cmd_line_args() const {
89 return cmd_line_args_;
90 }
erg@google.coma502bbe72011-01-07 18:06:4591
92 ProcessId pid_;
93 ProcessId ppid_;
94 ProcessId gid_;
95 std::string exe_file_;
96 std::vector<std::string> cmd_line_args_;
dkegel@google.comab0e2222008-10-31 20:19:4397};
98
evanm@google.com0b100bc82008-10-14 20:49:1699struct IoCounters {
evan@chromium.org34b2b002009-11-20 06:53:28100 uint64_t ReadOperationCount;
101 uint64_t WriteOperationCount;
102 uint64_t OtherOperationCount;
103 uint64_t ReadTransferCount;
104 uint64_t WriteTransferCount;
105 uint64_t OtherTransferCount;
evanm@google.com0b100bc82008-10-14 20:49:16106};
agl@chromium.org3f04f2b2009-04-30 19:40:03107
sanjeevr@chromium.org7d11f6d52010-10-12 21:44:23108// Process access masks. They are not used on Posix because access checking
109// does not happen during handle creation.
110const uint32 kProcessAccessTerminate = 0;
111const uint32 kProcessAccessCreateThread = 0;
112const uint32 kProcessAccessSetSessionId = 0;
113const uint32 kProcessAccessVMOperation = 0;
114const uint32 kProcessAccessVMRead = 0;
115const uint32 kProcessAccessVMWrite = 0;
116const uint32 kProcessAccessDuplicateHandle = 0;
117const uint32 kProcessAccessCreateProcess = 0;
118const uint32 kProcessAccessSetQuota = 0;
119const uint32 kProcessAccessSetInformation = 0;
120const uint32 kProcessAccessQueryInformation = 0;
121const uint32 kProcessAccessSuspendResume = 0;
122const uint32 kProcessAccessQueryLimitedInfomation = 0;
123const uint32 kProcessAccessWaitForTermination = 0;
maruel@chromium.orga5a00b1d2010-04-08 15:52:45124#endif // defined(OS_POSIX)
initial.commitd7cae122008-07-26 21:49:38125
gspencer@chromium.org443b80e2010-12-14 00:42:23126// Return status values from GetTerminationStatus. Don't use these as
127// exit code arguments to KillProcess*(), use platform/application
128// specific values instead.
129enum TerminationStatus {
130 TERMINATION_STATUS_NORMAL_TERMINATION, // zero exit status
131 TERMINATION_STATUS_ABNORMAL_TERMINATION, // non-zero exit status
132 TERMINATION_STATUS_PROCESS_WAS_KILLED, // e.g. SIGKILL or task manager kill
133 TERMINATION_STATUS_PROCESS_CRASHED, // e.g. Segmentation fault
scheib@chromium.orgbcb2c772011-04-01 20:20:53134 TERMINATION_STATUS_STILL_RUNNING, // child hasn't exited yet
135 TERMINATION_STATUS_MAX_ENUM
cpu@google.comeef576f2008-11-03 23:28:06136};
137
thestig@chromium.org6a033592012-03-23 00:08:54138#if defined(USE_LINUX_BREAKPAD)
yusukes@google.com7dc738a2012-03-23 05:56:35139BASE_EXPORT extern size_t g_oom_size;
thestig@chromium.org6a033592012-03-23 00:08:54140#endif
141
initial.commitd7cae122008-07-26 21:49:38142// Returns the id of the current process.
darin@chromium.org0bea7252011-08-05 15:34:00143BASE_EXPORT ProcessId GetCurrentProcId();
initial.commitd7cae122008-07-26 21:49:38144
erikkay@google.com113ab132008-09-18 20:42:55145// Returns the ProcessHandle of the current process.
darin@chromium.org0bea7252011-08-05 15:34:00146BASE_EXPORT ProcessHandle GetCurrentProcessHandle();
maruel@chromium.org52a261f2009-03-03 15:01:12147
joi@chromium.org9a182832012-02-10 18:45:58148#if defined(OS_WIN)
149// Returns the module handle to which an address belongs.
150BASE_EXPORT HMODULE GetModuleFromAddress(void* address);
151#endif
152
brettw@google.com5986ed22009-02-06 00:19:17153// Converts a PID to a process handle. This handle must be closed by
phajdan.jr@chromium.org6c6cc802009-04-03 17:01:36154// CloseProcessHandle when you are done with it. Returns true on success.
darin@chromium.org0bea7252011-08-05 15:34:00155BASE_EXPORT bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle);
maruel@chromium.org52a261f2009-03-03 15:01:12156
phajdan.jr@chromium.org5d438dbad2009-04-30 08:59:39157// Converts a PID to a process handle. On Windows the handle is opened
158// with more access rights and must only be used by trusted code.
159// You have to close returned handle using CloseProcessHandle. Returns true
160// on success.
sanjeevr@chromium.org7d11f6d52010-10-12 21:44:23161// TODO(sanjeevr): Replace all calls to OpenPrivilegedProcessHandle with the
162// more specific OpenProcessHandleWithAccess method and delete this.
darin@chromium.org0bea7252011-08-05 15:34:00163BASE_EXPORT bool OpenPrivilegedProcessHandle(ProcessId pid,
164 ProcessHandle* handle);
phajdan.jr@chromium.org5d438dbad2009-04-30 08:59:39165
sanjeevr@chromium.org7d11f6d52010-10-12 21:44:23166// Converts a PID to a process handle using the desired access flags. Use a
167// combination of the kProcessAccess* flags defined above for |access_flags|.
darin@chromium.org0bea7252011-08-05 15:34:00168BASE_EXPORT bool OpenProcessHandleWithAccess(ProcessId pid,
169 uint32 access_flags,
170 ProcessHandle* handle);
sanjeevr@chromium.org7d11f6d52010-10-12 21:44:23171
brettw@google.com5986ed22009-02-06 00:19:17172// Closes the process handle opened by OpenProcessHandle.
darin@chromium.org0bea7252011-08-05 15:34:00173BASE_EXPORT void CloseProcessHandle(ProcessHandle process);
erikkay@google.com113ab132008-09-18 20:42:55174
cpu@google.comeef576f2008-11-03 23:28:06175// Returns the unique ID for the specified process. This is functionally the
initial.commitd7cae122008-07-26 21:49:38176// same as Windows' GetProcessId(), but works on versions of Windows before
177// Win XP SP1 as well.
darin@chromium.org0bea7252011-08-05 15:34:00178BASE_EXPORT ProcessId GetProcId(ProcessHandle process);
initial.commitd7cae122008-07-26 21:49:38179
robert.nagy@gmail.comaf824362011-12-04 14:19:41180#if defined(OS_LINUX) || defined(OS_ANDROID) || defined(OS_BSD)
dkegel@google.com78c6dd62009-06-08 23:29:11181// Returns the path to the executable of the given process.
darin@chromium.org0bea7252011-08-05 15:34:00182BASE_EXPORT FilePath GetProcessExecutablePath(ProcessHandle process);
robert.nagy@gmail.comea725b32011-10-25 17:43:05183#endif
evan@chromium.orgd2ed23832009-09-19 01:57:39184
robert.nagy@gmail.comea725b32011-10-25 17:43:05185#if defined(OS_LINUX) || defined(OS_ANDROID)
evan@chromium.orgd2ed23832009-09-19 01:57:39186// Parse the data found in /proc/<pid>/stat and return the sum of the
187// CPU-related ticks. Returns -1 on parse error.
188// Exposed for testing.
darin@chromium.org0bea7252011-08-05 15:34:00189BASE_EXPORT int ParseProcStatCPU(const std::string& input);
thestig@chromium.orge5856a7a2009-12-10 02:08:10190
gspencer@google.com03eb9d22011-08-23 17:58:21191// The maximum allowed value for the OOM score.
192const int kMaxOomScore = 1000;
thestig@chromium.orge5856a7a2009-12-10 02:08:10193
gspencer@google.com03eb9d22011-08-23 17:58:21194// This adjusts /proc/<pid>/oom_score_adj so the Linux OOM killer will
195// prefer to kill certain process types over others. The range for the
196// adjustment is [-1000, 1000], with [0, 1000] being user accessible.
197// If the Linux system doesn't support the newer oom_score_adj range
198// of [0, 1000], then we revert to using the older oom_adj, and
199// translate the given value into [0, 15]. Some aliasing of values
200// may occur in that case, of course.
darin@chromium.org0bea7252011-08-05 15:34:00201BASE_EXPORT bool AdjustOOMScore(ProcessId process, int score);
jingzhao@chromium.org4d0f93c2011-09-29 04:43:54202#endif // defined(OS_LINUX) || defined(OS_ANDROID)
dkegel@google.com78c6dd62009-06-08 23:29:11203
jeremy@chromium.orgfa3097a6a52008-12-17 22:41:50204#if defined(OS_POSIX)
dmaclach@chromium.org56f0f262011-02-24 17:14:36205// Returns the ID for the parent of the given process.
darin@chromium.org0bea7252011-08-05 15:34:00206BASE_EXPORT ProcessId GetParentProcessId(ProcessHandle process);
dmaclach@chromium.org56f0f262011-02-24 17:14:36207
gspencer@chromium.org443b80e2010-12-14 00:42:23208// Close all file descriptors, except those which are a destination in the
agl@chromium.org3f04f2b2009-04-30 19:40:03209// given multimap. Only call this function in a child process where you know
210// that there aren't any other threads.
darin@chromium.org0bea7252011-08-05 15:34:00211BASE_EXPORT void CloseSuperfluousFds(const InjectiveMultimap& saved_map);
gspencer@google.com03eb9d22011-08-23 17:58:21212#endif // defined(OS_POSIX)
jeremy@chromium.orgfa3097a6a52008-12-17 22:41:50213
thestig@chromium.orga82af392012-02-24 04:40:20214typedef std::vector<std::pair<std::string, std::string> > EnvironmentVector;
215typedef std::vector<std::pair<int, int> > FileHandleMappingVector;
evan@chromium.org898a81a2011-06-30 22:56:15216
mark@chromium.org84b2d1d2011-09-01 21:44:24217#if defined(OS_MACOSX)
218// Used with LaunchOptions::synchronize and LaunchSynchronize, a
219// LaunchSynchronizationHandle is an opaque value that LaunchProcess will
220// create and set, and that LaunchSynchronize will consume and destroy.
221typedef int* LaunchSynchronizationHandle;
222#endif // defined(OS_MACOSX)
223
evan@chromium.org075fb932011-07-19 16:31:28224// Options for launching a subprocess that are passed to LaunchProcess().
evan@chromium.orge5992182011-07-15 16:47:02225// The default constructor constructs the object with default options.
evan@chromium.org898a81a2011-06-30 22:56:15226struct LaunchOptions {
evan@chromium.orge5992182011-07-15 16:47:02227 LaunchOptions() : wait(false),
evan@chromium.org898a81a2011-06-30 22:56:15228#if defined(OS_WIN)
229 start_hidden(false), inherit_handles(false), as_user(NULL),
phajdan.jr@chromium.org86f723ec22011-09-07 21:54:42230 empty_desktop_name(false), job_handle(NULL)
evan@chromium.org898a81a2011-06-30 22:56:15231#else
mcgrathr@chromium.org77540fdf2011-11-15 18:49:10232 environ(NULL), fds_to_remap(NULL), maximize_rlimits(NULL),
233 new_process_group(false)
mark@chromium.org84b2d1d2011-09-01 21:44:24234#if defined(OS_LINUX)
235 , clone_flags(0)
236#endif // OS_LINUX
tbarzic@chromium.org927054d2012-01-21 01:48:25237#if defined(OS_CHROMEOS)
238 , ctrl_terminal_fd(-1)
239#endif // OS_CHROMEOS
mark@chromium.org84b2d1d2011-09-01 21:44:24240#if defined(OS_MACOSX)
241 , synchronize(NULL)
242#endif // defined(OS_MACOSX)
gspencer@google.com03eb9d22011-08-23 17:58:21243#endif // !defined(OS_WIN)
evan@chromium.org898a81a2011-06-30 22:56:15244 {}
245
246 // If true, wait for the process to complete.
247 bool wait;
evan@chromium.org898a81a2011-06-30 22:56:15248
249#if defined(OS_WIN)
250 bool start_hidden;
251
252 // If true, the new process inherits handles from the parent.
253 bool inherit_handles;
254
255 // If non-NULL, runs as if the user represented by the token had launched it.
256 // Whether the application is visible on the interactive desktop depends on
257 // the token belonging to an interactive logon session.
258 //
259 // To avoid hard to diagnose problems, when specified this loads the
260 // environment variables associated with the user and if this operation fails
261 // the entire call fails as well.
262 UserTokenHandle as_user;
263
264 // If true, use an empty string for the desktop name.
265 bool empty_desktop_name;
phajdan.jr@chromium.org86f723ec22011-09-07 21:54:42266
erikwright@chromium.org0148e6e2012-03-15 12:40:04267 // If non-NULL, launches the application in that job object. The process will
268 // be terminated immediately and LaunchProcess() will fail if assignment to
269 // the job object fails.
phajdan.jr@chromium.org86f723ec22011-09-07 21:54:42270 HANDLE job_handle;
evan@chromium.org898a81a2011-06-30 22:56:15271#else
272 // If non-NULL, set/unset environment variables.
273 // See documentation of AlterEnvironment().
274 // This pointer is owned by the caller and must live through the
275 // call to LaunchProcess().
thestig@chromium.orga82af392012-02-24 04:40:20276 const EnvironmentVector* environ;
evan@chromium.org898a81a2011-06-30 22:56:15277
278 // If non-NULL, remap file descriptors according to the mapping of
279 // src fd->dest fd to propagate FDs into the child process.
280 // This pointer is owned by the caller and must live through the
281 // call to LaunchProcess().
thestig@chromium.orga82af392012-02-24 04:40:20282 const FileHandleMappingVector* fds_to_remap;
evan@chromium.org898a81a2011-06-30 22:56:15283
mcgrathr@chromium.org77540fdf2011-11-15 18:49:10284 // Each element is an RLIMIT_* constant that should be raised to its
285 // rlim_max. This pointer is owned by the caller and must live through
286 // the call to LaunchProcess().
287 const std::set<int>* maximize_rlimits;
288
evan@chromium.org898a81a2011-06-30 22:56:15289 // If true, start the process in a new process group, instead of
290 // inheriting the parent's process group. The pgid of the child process
291 // will be the same as its pid.
292 bool new_process_group;
bradchen@google.comca7c4562011-07-15 23:55:21293
mark@chromium.org84b2d1d2011-09-01 21:44:24294#if defined(OS_LINUX)
bradchen@google.comca7c4562011-07-15 23:55:21295 // If non-zero, start the process using clone(), using flags as provided.
296 int clone_flags;
mark@chromium.org84b2d1d2011-09-01 21:44:24297#endif // defined(OS_LINUX)
298
tbarzic@chromium.org927054d2012-01-21 01:48:25299#if defined(OS_CHROMEOS)
300 // If non-negative, the specified file descriptor will be set as the launched
301 // process' controlling terminal.
302 int ctrl_terminal_fd;
303#endif // defined(OS_CHROMEOS)
304
mark@chromium.org84b2d1d2011-09-01 21:44:24305#if defined(OS_MACOSX)
306 // When non-NULL, a new LaunchSynchronizationHandle will be created and
307 // stored in *synchronize whenever LaunchProcess returns true in the parent
308 // process. The child process will have been created (with fork) but will
309 // be waiting (before exec) for the parent to call LaunchSynchronize with
310 // this handle. Only when LaunchSynchronize is called will the child be
311 // permitted to continue execution and call exec. LaunchSynchronize
312 // destroys the handle created by LaunchProcess.
313 //
314 // When synchronize is non-NULL, the parent must call LaunchSynchronize
315 // whenever LaunchProcess returns true. No exceptions.
316 //
317 // Synchronization is useful when the parent process needs to guarantee that
318 // it can take some action (such as recording the newly-forked child's
319 // process ID) before the child does something (such as using its process ID
320 // to communicate with its parent).
321 //
322 // |synchronize| and |wait| must not both be set simultaneously.
323 LaunchSynchronizationHandle* synchronize;
324#endif // defined(OS_MACOSX)
325
326#endif // !defined(OS_WIN)
evan@chromium.org898a81a2011-06-30 22:56:15327};
328
329// Launch a process via the command line |cmdline|.
evan@chromium.orge5992182011-07-15 16:47:02330// See the documentation of LaunchOptions for details on |options|.
331//
erikwright@chromium.org0148e6e2012-03-15 12:40:04332// Returns true upon success.
333//
334// Upon success, if |process_handle| is non-NULL, it will be filled in with the
evan@chromium.orge5992182011-07-15 16:47:02335// handle of the launched process. NOTE: In this case, the caller is
336// responsible for closing the handle so that it doesn't leak!
337// Otherwise, the process handle will be implicitly closed.
evan@chromium.org898a81a2011-06-30 22:56:15338//
339// Unix-specific notes:
mark@chromium.org84b2d1d2011-09-01 21:44:24340// - All file descriptors open in the parent process will be closed in the
341// child process except for any preserved by options::fds_to_remap, and
342// stdin, stdout, and stderr. If not remapped by options::fds_to_remap,
343// stdin is reopened as /dev/null, and the child is allowed to inherit its
344// parent's stdout and stderr.
evan@chromium.org898a81a2011-06-30 22:56:15345// - If the first argument on the command line does not contain a slash,
346// PATH will be searched. (See man execvp.)
darin@chromium.org0bea7252011-08-05 15:34:00347BASE_EXPORT bool LaunchProcess(const CommandLine& cmdline,
348 const LaunchOptions& options,
349 ProcessHandle* process_handle);
evan@chromium.org898a81a2011-06-30 22:56:15350
estade@chromium.orgfb7f9be2008-10-22 01:15:47351#if defined(OS_WIN)
tommi@chromium.org48dc9e12010-08-26 19:49:57352
353enum IntegrityLevel {
354 INTEGRITY_UNKNOWN,
355 LOW_INTEGRITY,
356 MEDIUM_INTEGRITY,
357 HIGH_INTEGRITY,
358};
359// Determine the integrity level of the specified process. Returns false
360// if the system does not support integrity levels (pre-Vista) or in the case
361// of an underlying system failure.
darin@chromium.org0bea7252011-08-05 15:34:00362BASE_EXPORT bool GetProcessIntegrityLevel(ProcessHandle process,
thestig@chromium.orga82af392012-02-24 04:40:20363 IntegrityLevel* level);
tommi@chromium.org48dc9e12010-08-26 19:49:57364
evan@chromium.org898a81a2011-06-30 22:56:15365// Windows-specific LaunchProcess that takes the command line as a
366// string. Useful for situations where you need to control the
367// command line arguments directly, but prefer the CommandLine version
368// if launching Chrome itself.
initial.commitd7cae122008-07-26 21:49:38369//
evan@chromium.org898a81a2011-06-30 22:56:15370// The first command line argument should be the path to the process,
371// and don't forget to quote it.
initial.commitd7cae122008-07-26 21:49:38372//
373// Example (including literal quotes)
374// cmdline = "c:\windows\explorer.exe" -foo "c:\bar\"
darin@chromium.org0bea7252011-08-05 15:34:00375BASE_EXPORT bool LaunchProcess(const string16& cmdline,
376 const LaunchOptions& options,
377 ProcessHandle* process_handle);
cpu@chromium.orge50130b2010-02-01 03:28:47378
estade@chromium.orgfb7f9be2008-10-22 01:15:47379#elif defined(OS_POSIX)
evan@chromium.org898a81a2011-06-30 22:56:15380// A POSIX-specific version of LaunchProcess that takes an argv array
381// instead of a CommandLine. Useful for situations where you need to
382// control the command line arguments directly, but prefer the
383// CommandLine version if launching Chrome itself.
darin@chromium.org0bea7252011-08-05 15:34:00384BASE_EXPORT bool LaunchProcess(const std::vector<std::string>& argv,
385 const LaunchOptions& options,
386 ProcessHandle* process_handle);
stuartmorgan@google.com2aea9e092009-08-06 20:03:01387
agl@chromium.orgef73044e2010-03-11 15:25:54388// AlterEnvironment returns a modified environment vector, constructed from the
389// given environment and the list of changes given in |changes|. Each key in
390// the environment is matched against the first element of the pairs. In the
391// event of a match, the value is replaced by the second of the pair, unless
392// the second is empty, in which case the key-value is removed.
393//
394// The returned array is allocated using new[] and must be freed by the caller.
thestig@chromium.orga82af392012-02-24 04:40:20395BASE_EXPORT char** AlterEnvironment(const EnvironmentVector& changes,
darin@chromium.org0bea7252011-08-05 15:34:00396 const char* const* const env);
mark@chromium.org84b2d1d2011-09-01 21:44:24397
398#if defined(OS_MACOSX)
399
400// After a successful call to LaunchProcess with LaunchOptions::synchronize
401// set, the parent process must call LaunchSynchronize to allow the child
402// process to proceed, and to destroy the LaunchSynchronizationHandle.
403BASE_EXPORT void LaunchSynchronize(LaunchSynchronizationHandle handle);
404
405#endif // defined(OS_MACOSX)
thestig@chromium.org9ec8db02009-07-21 07:00:13406#endif // defined(OS_POSIX)
initial.commitd7cae122008-07-26 21:49:38407
toyoshim@chromium.orgb330cab2011-11-23 23:37:19408#if defined(OS_WIN)
409// Set JOBOBJECT_EXTENDED_LIMIT_INFORMATION to JobObject |job_object|.
410// As its limit_info.BasicLimitInformation.LimitFlags has
411// JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE.
412// When the provide JobObject |job_object| is closed, the binded process will
413// be terminated.
414BASE_EXPORT bool SetJobObjectAsKillOnJobClose(HANDLE job_object);
415#endif // defined(OS_WIN)
416
jcampan@chromium.org1e312112009-04-21 21:44:12417// Executes the application specified by |cl| and wait for it to exit. Stores
phajdan.jr@chromium.org1912cfe2009-04-21 08:09:30418// the output (stdout) in |output|. Redirects stderr to /dev/null. Returns true
419// on success (application launched and exited cleanly, with exit code
maruel@chromium.org96878a212010-06-10 18:26:33420// indicating success).
darin@chromium.org0bea7252011-08-05 15:34:00421BASE_EXPORT bool GetAppOutput(const CommandLine& cl, std::string* output);
phajdan.jr@chromium.orgc0b210ee2009-04-17 09:57:52422
viettrungluu@chromium.orgf164cea2009-11-05 23:37:40423#if defined(OS_POSIX)
424// A restricted version of |GetAppOutput()| which (a) clears the environment,
425// and (b) stores at most |max_output| bytes; also, it doesn't search the path
426// for the command.
darin@chromium.org0bea7252011-08-05 15:34:00427BASE_EXPORT bool GetAppOutputRestricted(const CommandLine& cl,
428 std::string* output, size_t max_output);
benwells@chromium.orgd03b05c2011-07-06 06:14:48429
430// A version of |GetAppOutput()| which also returns the exit code of the
431// executed command. Returns true if the application runs and exits cleanly. If
432// this is the case the exit code of the application is available in
433// |*exit_code|.
darin@chromium.org0bea7252011-08-05 15:34:00434BASE_EXPORT bool GetAppOutputWithExitCode(const CommandLine& cl,
435 std::string* output, int* exit_code);
gspencer@google.com03eb9d22011-08-23 17:58:21436#endif // defined(OS_POSIX)
viettrungluu@chromium.orgf164cea2009-11-05 23:37:40437
initial.commitd7cae122008-07-26 21:49:38438// Used to filter processes by process ID.
439class ProcessFilter {
440 public:
441 // Returns true to indicate set-inclusion and false otherwise. This method
442 // should not have side-effects and should be idempotent.
maruel@chromium.orgb6128aa2010-04-29 17:44:42443 virtual bool Includes(const ProcessEntry& entry) const = 0;
ziadh@chromium.org695092f2010-08-02 16:34:16444
445 protected:
446 virtual ~ProcessFilter() {}
initial.commitd7cae122008-07-26 21:49:38447};
448
449// Returns the number of processes on the machine that are running from the
450// given executable name. If filter is non-null, then only processes selected
451// by the filter will be counted.
darin@chromium.org0bea7252011-08-05 15:34:00452BASE_EXPORT int GetProcessCount(const FilePath::StringType& executable_name,
453 const ProcessFilter* filter);
initial.commitd7cae122008-07-26 21:49:38454
455// Attempts to kill all the processes on the current machine that were launched
456// from the given executable name, ending them with the given exit code. If
457// filter is non-null, then only processes selected by the filter are killed.
rsimha@chromium.org61b93f88f2010-09-22 17:28:30458// Returns true if all processes were able to be killed off, false if at least
initial.commitd7cae122008-07-26 21:49:38459// one couldn't be killed.
darin@chromium.org0bea7252011-08-05 15:34:00460BASE_EXPORT bool KillProcesses(const FilePath::StringType& executable_name,
461 int exit_code, const ProcessFilter* filter);
initial.commitd7cae122008-07-26 21:49:38462
463// Attempts to kill the process identified by the given process
464// entry structure, giving it the specified exit code. If |wait| is true, wait
465// for the process to be actually terminated before returning.
466// Returns true if this is successful, false otherwise.
darin@chromium.org0bea7252011-08-05 15:34:00467BASE_EXPORT bool KillProcess(ProcessHandle process, int exit_code, bool wait);
rsimha@chromium.org61b93f88f2010-09-22 17:28:30468
469#if defined(OS_POSIX)
470// Attempts to kill the process group identified by |process_group_id|. Returns
471// true on success.
darin@chromium.org0bea7252011-08-05 15:34:00472BASE_EXPORT bool KillProcessGroup(ProcessHandle process_group_id);
gspencer@google.com03eb9d22011-08-23 17:58:21473#endif // defined(OS_POSIX)
rsimha@chromium.org61b93f88f2010-09-22 17:28:30474
agl@chromium.orgdfe14862009-01-22 01:23:11475#if defined(OS_WIN)
darin@chromium.org0bea7252011-08-05 15:34:00476BASE_EXPORT bool KillProcessById(ProcessId process_id, int exit_code,
477 bool wait);
gspencer@google.com03eb9d22011-08-23 17:58:21478#endif // defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:38479
gspencer@chromium.org443b80e2010-12-14 00:42:23480// Get the termination status of the process by interpreting the
481// circumstances of the child process' death. |exit_code| is set to
482// the status returned by waitpid() on POSIX, and from
483// GetExitCodeProcess() on Windows. |exit_code| may be NULL if the
484// caller is not interested in it. Note that on Linux, this function
485// will only return a useful result the first time it is called after
486// the child exits (because it will reap the child and the information
487// will no longer be available).
darin@chromium.org0bea7252011-08-05 15:34:00488BASE_EXPORT TerminationStatus GetTerminationStatus(ProcessHandle handle,
489 int* exit_code);
initial.commitd7cae122008-07-26 21:49:38490
dmaclach@chromium.org56f0f262011-02-24 17:14:36491// Waits for process to exit. On POSIX systems, if the process hasn't been
phajdan.jr@chromium.orgc7856632009-01-13 17:38:49492// signaled then puts the exit code in |exit_code|; otherwise it's considered
493// a failure. On Windows |exit_code| is always filled. Returns true on success,
494// and closes |handle| in any case.
darin@chromium.org0bea7252011-08-05 15:34:00495BASE_EXPORT bool WaitForExitCode(ProcessHandle handle, int* exit_code);
phajdan.jr@chromium.orgc7856632009-01-13 17:38:49496
phajdan.jr@chromium.org8004e682010-03-16 07:41:22497// Waits for process to exit. If it did exit within |timeout_milliseconds|,
phajdan.jr@chromium.org40bbe592011-04-06 12:18:20498// then puts the exit code in |exit_code|, and returns true.
phajdan.jr@chromium.org8004e682010-03-16 07:41:22499// In POSIX systems, if the process has been signaled then |exit_code| is set
500// to -1. Returns false on failure (the caller is then responsible for closing
501// |handle|).
phajdan.jr@chromium.org40bbe592011-04-06 12:18:20502// The caller is always responsible for closing the |handle|.
darin@chromium.org0bea7252011-08-05 15:34:00503BASE_EXPORT bool WaitForExitCodeWithTimeout(ProcessHandle handle,
504 int* exit_code,
505 int64 timeout_milliseconds);
phajdan.jr@chromium.org8004e682010-03-16 07:41:22506
initial.commitd7cae122008-07-26 21:49:38507// Wait for all the processes based on the named executable to exit. If filter
508// is non-null, then only processes selected by the filter are waited on.
509// Returns after all processes have exited or wait_milliseconds have expired.
510// Returns true if all the processes exited, false otherwise.
darin@chromium.org0bea7252011-08-05 15:34:00511BASE_EXPORT bool WaitForProcessesToExit(
rvargas@google.com26fbf802011-03-25 18:48:03512 const FilePath::StringType& executable_name,
513 int64 wait_milliseconds,
514 const ProcessFilter* filter);
initial.commitd7cae122008-07-26 21:49:38515
estade@chromium.orgfb7f9be2008-10-22 01:15:47516// Wait for a single process to exit. Return true if it exited cleanly within
dmaclach@chromium.org56f0f262011-02-24 17:14:36517// the given time limit. On Linux |handle| must be a child process, however
518// on Mac and Windows it can be any process.
darin@chromium.org0bea7252011-08-05 15:34:00519BASE_EXPORT bool WaitForSingleProcess(ProcessHandle handle,
520 int64 wait_milliseconds);
tedvessenes@gmail.com7e1117c2012-03-31 20:42:41521BASE_EXPORT bool WaitForSingleProcess(ProcessHandle handle,
522 base::TimeDelta wait);
phajdan.jr@chromium.orgc7c980972011-04-05 18:05:34523
initial.commitd7cae122008-07-26 21:49:38524// Waits a certain amount of time (can be 0) for all the processes with a given
525// executable name to exit, then kills off any of them that are still around.
526// If filter is non-null, then only processes selected by the filter are waited
527// on. Killed processes are ended with the given exit code. Returns false if
528// any processes needed to be killed, true if they all exited cleanly within
529// the wait_milliseconds delay.
darin@chromium.org0bea7252011-08-05 15:34:00530BASE_EXPORT bool CleanupProcesses(const FilePath::StringType& executable_name,
531 int64 wait_milliseconds,
532 int exit_code,
533 const ProcessFilter* filter);
initial.commitd7cae122008-07-26 21:49:38534
jam@chromium.orgeaac71592011-11-23 18:32:00535// This method ensures that the specified process eventually terminates, and
536// then it closes the given process handle.
537//
538// It assumes that the process has already been signalled to exit, and it
539// begins by waiting a small amount of time for it to exit. If the process
540// does not appear to have exited, then this function starts to become
541// aggressive about ensuring that the process terminates.
542//
543// On Linux this method does not block the calling thread.
544// On OS X this method may block for up to 2 seconds.
545//
546// NOTE: The process handle must have been opened with the PROCESS_TERMINATE
547// and SYNCHRONIZE permissions.
548//
549BASE_EXPORT void EnsureProcessTerminated(ProcessHandle process_handle);
550
551#if defined(OS_POSIX) && !defined(OS_MACOSX)
552// The nicer version of EnsureProcessTerminated() that is patient and will
553// wait for |process_handle| to finish and then reap it.
554BASE_EXPORT void EnsureProcessGetsReaped(ProcessHandle process_handle);
555#endif
556
maruel@chromium.orgb6128aa2010-04-29 17:44:42557// This class provides a way to iterate through a list of processes on the
558// current machine with a specified filter.
559// To use, create an instance and then call NextProcessEntry() until it returns
560// false.
darin@chromium.org0bea7252011-08-05 15:34:00561class BASE_EXPORT ProcessIterator {
initial.commitd7cae122008-07-26 21:49:38562 public:
maruel@chromium.orgbaead4f2010-06-11 19:10:30563 typedef std::list<ProcessEntry> ProcessEntries;
564
maruel@chromium.orgb6128aa2010-04-29 17:44:42565 explicit ProcessIterator(const ProcessFilter* filter);
566 virtual ~ProcessIterator();
initial.commitd7cae122008-07-26 21:49:38567
568 // If there's another process that matches the given executable name,
569 // returns a const pointer to the corresponding PROCESSENTRY32.
570 // If there are no more matching processes, returns NULL.
571 // The returned pointer will remain valid until NextProcessEntry()
572 // is called again or this NamedProcessIterator goes out of scope.
573 const ProcessEntry* NextProcessEntry();
574
maruel@chromium.orgb6128aa2010-04-29 17:44:42575 // Takes a snapshot of all the ProcessEntry found.
maruel@chromium.orgbaead4f2010-06-11 19:10:30576 ProcessEntries Snapshot();
maruel@chromium.orgb6128aa2010-04-29 17:44:42577
578 protected:
579 virtual bool IncludeEntry();
580 const ProcessEntry& entry() { return entry_; }
581
initial.commitd7cae122008-07-26 21:49:38582 private:
583 // Determines whether there's another process (regardless of executable)
584 // left in the list of all processes. Returns true and sets entry_ to
585 // that process's info if there is one, false otherwise.
586 bool CheckForNextProcess();
587
initial.commitd7cae122008-07-26 21:49:38588 // Initializes a PROCESSENTRY32 data structure so that it's ready for
589 // use with Process32First/Process32Next.
590 void InitProcessEntry(ProcessEntry* entry);
dkegel@google.comab0e2222008-10-31 20:19:43591
592#if defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:38593 HANDLE snapshot_;
initial.commitd7cae122008-07-26 21:49:38594 bool started_iteration_;
robert.nagy@gmail.comaf824362011-12-04 14:19:41595#elif defined(OS_MACOSX) || defined(OS_BSD)
mark@chromium.org962dd312009-02-05 21:44:13596 std::vector<kinfo_proc> kinfo_procs_;
597 size_t index_of_kinfo_proc_;
wtc@chromium.org4a34ce02009-08-31 22:25:00598#elif defined(OS_POSIX)
thestig@chromium.orga82af392012-02-24 04:40:20599 DIR* procfs_dir_;
dkegel@google.comab0e2222008-10-31 20:19:43600#endif
initial.commitd7cae122008-07-26 21:49:38601 ProcessEntry entry_;
602 const ProcessFilter* filter_;
603
maruel@chromium.orgb6128aa2010-04-29 17:44:42604 DISALLOW_COPY_AND_ASSIGN(ProcessIterator);
605};
606
607// This class provides a way to iterate through the list of processes
608// on the current machine that were started from the given executable
609// name. To use, create an instance and then call NextProcessEntry()
610// until it returns false.
darin@chromium.org0bea7252011-08-05 15:34:00611class BASE_EXPORT NamedProcessIterator : public ProcessIterator {
maruel@chromium.orgb6128aa2010-04-29 17:44:42612 public:
avi@chromium.org4f260d02010-12-23 18:35:42613 NamedProcessIterator(const FilePath::StringType& executable_name,
maruel@chromium.orgb6128aa2010-04-29 17:44:42614 const ProcessFilter* filter);
615 virtual ~NamedProcessIterator();
616
617 protected:
avi@chromium.orgb1719462011-11-16 00:08:08618 virtual bool IncludeEntry() OVERRIDE;
maruel@chromium.orgb6128aa2010-04-29 17:44:42619
620 private:
avi@chromium.org4f260d02010-12-23 18:35:42621 FilePath::StringType executable_name_;
maruel@chromium.orgb6128aa2010-04-29 17:44:42622
623 DISALLOW_COPY_AND_ASSIGN(NamedProcessIterator);
initial.commitd7cae122008-07-26 21:49:38624};
625
626// Working Set (resident) memory usage broken down by
agl@chromium.org54fd1d32009-09-01 00:12:58627//
628// On Windows:
initial.commitd7cae122008-07-26 21:49:38629// priv (private): These pages (kbytes) cannot be shared with any other process.
630// shareable: These pages (kbytes) can be shared with other processes under
631// the right circumstances.
632// shared : These pages (kbytes) are currently shared with at least one
633// other process.
agl@chromium.org54fd1d32009-09-01 00:12:58634//
635// On Linux:
636// priv: Pages mapped only by this process
637// shared: PSS or 0 if the kernel doesn't support this
638// shareable: 0
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04639//
640// On OS X: TODO(thakis): Revise.
641// priv: Memory.
642// shared: 0
643// shareable: 0
initial.commitd7cae122008-07-26 21:49:38644struct WorkingSetKBytes {
agl@chromium.org54fd1d32009-09-01 00:12:58645 WorkingSetKBytes() : priv(0), shareable(0), shared(0) {}
initial.commitd7cae122008-07-26 21:49:38646 size_t priv;
647 size_t shareable;
648 size_t shared;
649};
650
651// Committed (resident + paged) memory usage broken down by
652// private: These pages cannot be shared with any other process.
653// mapped: These pages are mapped into the view of a section (backed by
654// pagefile.sys)
655// image: These pages are mapped into the view of an image section (backed by
656// file system)
657struct CommittedKBytes {
agl@chromium.org54fd1d32009-09-01 00:12:58658 CommittedKBytes() : priv(0), mapped(0), image(0) {}
initial.commitd7cae122008-07-26 21:49:38659 size_t priv;
660 size_t mapped;
661 size_t image;
662};
663
664// Free memory (Megabytes marked as free) in the 2G process address space.
665// total : total amount in megabytes marked as free. Maximum value is 2048.
666// largest : size of the largest contiguous amount of memory found. It is
667// always smaller or equal to FreeMBytes::total.
668// largest_ptr: starting address of the largest memory block.
669struct FreeMBytes {
670 size_t total;
671 size_t largest;
672 void* largest_ptr;
673};
674
evan@chromium.orgd2ed23832009-09-19 01:57:39675// Convert a POSIX timeval to microseconds.
darin@chromium.org0bea7252011-08-05 15:34:00676BASE_EXPORT int64 TimeValToMicroseconds(const struct timeval& tv);
evan@chromium.orgd2ed23832009-09-19 01:57:39677
initial.commitd7cae122008-07-26 21:49:38678// Provides performance metrics for a specified process (CPU usage, memory and
679// IO counters). To use it, invoke CreateProcessMetrics() to get an instance
680// for a specific process, then access the information with the different get
681// methods.
darin@chromium.org0bea7252011-08-05 15:34:00682class BASE_EXPORT ProcessMetrics {
initial.commitd7cae122008-07-26 21:49:38683 public:
erg@google.coma502bbe72011-01-07 18:06:45684 ~ProcessMetrics();
685
initial.commitd7cae122008-07-26 21:49:38686 // Creates a ProcessMetrics for the specified process.
687 // The caller owns the returned object.
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04688#if !defined(OS_MACOSX)
initial.commitd7cae122008-07-26 21:49:38689 static ProcessMetrics* CreateProcessMetrics(ProcessHandle process);
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04690#else
691 class PortProvider {
692 public:
thakis@chromium.orgb2e8e082009-12-21 17:44:20693 // Should return the mach task for |process| if possible, or else
694 // |MACH_PORT_NULL|. Only processes that this returns tasks for will have
695 // metrics on OS X (except for the current process, which always gets
696 // metrics).
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04697 virtual mach_port_t TaskForPid(ProcessHandle process) const = 0;
698 };
699
700 // The port provider needs to outlive the ProcessMetrics object returned by
701 // this function. If NULL is passed as provider, the returned object
702 // only returns valid metrics if |process| is the current process.
703 static ProcessMetrics* CreateProcessMetrics(ProcessHandle process,
704 PortProvider* port_provider);
maruel@chromium.orgb6128aa2010-04-29 17:44:42705#endif // !defined(OS_MACOSX)
initial.commitd7cae122008-07-26 21:49:38706
707 // Returns the current space allocated for the pagefile, in bytes (these pages
thomasvl@chromium.org796da7c2009-06-11 12:45:45708 // may or may not be in memory). On Linux, this returns the total virtual
709 // memory size.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45710 size_t GetPagefileUsage() const;
initial.commitd7cae122008-07-26 21:49:38711 // Returns the peak space allocated for the pagefile, in bytes.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45712 size_t GetPeakPagefileUsage() const;
thomasvl@chromium.org796da7c2009-06-11 12:45:45713 // Returns the current working set size, in bytes. On Linux, this returns
714 // the resident set size.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45715 size_t GetWorkingSetSize() const;
tc@google.com0c557f12009-05-11 23:35:52716 // Returns the peak working set size, in bytes.
717 size_t GetPeakWorkingSetSize() const;
erg@chromium.org98947a02010-05-11 17:46:08718 // Returns private and sharedusage, in bytes. Private bytes is the amount of
719 // memory currently allocated to a process that cannot be shared. Returns
720 // false on platform specific error conditions. Note: |private_bytes|
721 // returns 0 on unsupported OSes: prior to XP SP2.
722 bool GetMemoryBytes(size_t* private_bytes,
723 size_t* shared_bytes);
initial.commitd7cae122008-07-26 21:49:38724 // Fills a CommittedKBytes with both resident and paged
725 // memory usage as per definition of CommittedBytes.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45726 void GetCommittedKBytes(CommittedKBytes* usage) const;
initial.commitd7cae122008-07-26 21:49:38727 // Fills a WorkingSetKBytes containing resident private and shared memory
728 // usage in bytes, as per definition of WorkingSetBytes.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45729 bool GetWorkingSetKBytes(WorkingSetKBytes* ws_usage) const;
initial.commitd7cae122008-07-26 21:49:38730
731 // Computes the current process available memory for allocation.
732 // It does a linear scan of the address space querying each memory region
733 // for its free (unallocated) status. It is useful for estimating the memory
734 // load and fragmentation.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45735 bool CalculateFreeMemory(FreeMBytes* free) const;
initial.commitd7cae122008-07-26 21:49:38736
737 // Returns the CPU usage in percent since the last time this method was
738 // called. The first time this method is called it returns 0 and will return
739 // the actual CPU info on subsequent calls.
thakis@chromium.org022eab62010-01-13 04:55:06740 // On Windows, the CPU usage value is for all CPUs. So if you have 2 CPUs and
741 // your process is using all the cycles of 1 CPU and not the other CPU, this
742 // method returns 50.
743 double GetCPUUsage();
initial.commitd7cae122008-07-26 21:49:38744
745 // Retrieves accounting information for all I/O operations performed by the
746 // process.
747 // If IO information is retrieved successfully, the function returns true
748 // and fills in the IO_COUNTERS passed in. The function returns false
749 // otherwise.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45750 bool GetIOCounters(IoCounters* io_counters) const;
initial.commitd7cae122008-07-26 21:49:38751
752 private:
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04753#if !defined(OS_MACOSX)
initial.commitd7cae122008-07-26 21:49:38754 explicit ProcessMetrics(ProcessHandle process);
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04755#else
756 ProcessMetrics(ProcessHandle process, PortProvider* port_provider);
gspencer@google.com03eb9d22011-08-23 17:58:21757#endif // defined(OS_MACOSX)
initial.commitd7cae122008-07-26 21:49:38758
759 ProcessHandle process_;
760
761 int processor_count_;
762
evan@chromium.orgd2ed23832009-09-19 01:57:39763 // Used to store the previous times and CPU usage counts so we can
764 // compute the CPU usage between calls.
initial.commitd7cae122008-07-26 21:49:38765 int64 last_time_;
766 int64 last_system_time_;
767
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04768#if defined(OS_MACOSX)
769 // Queries the port provider if it's set.
770 mach_port_t TaskForPid(ProcessHandle process) const;
771
772 PortProvider* port_provider_;
pvalchev@google.com66700d42010-03-10 07:46:43773#elif defined(OS_POSIX)
774 // Jiffie count at the last_time_ we updated.
775 int last_cpu_;
gspencer@google.com03eb9d22011-08-23 17:58:21776#endif // defined(OS_POSIX)
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04777
maruel@chromium.orgb6128aa2010-04-29 17:44:42778 DISALLOW_COPY_AND_ASSIGN(ProcessMetrics);
initial.commitd7cae122008-07-26 21:49:38779};
780
jingzhao@chromium.org4d0f93c2011-09-29 04:43:54781#if defined(OS_LINUX) || defined(OS_ANDROID)
jamescook@chromium.orgf37661dd2011-08-11 18:10:04782// Data from /proc/meminfo about system-wide memory consumption.
783// Values are in KB.
784struct SystemMemoryInfoKB {
785 SystemMemoryInfoKB() : total(0), free(0), buffers(0), cached(0),
786 active_anon(0), inactive_anon(0), shmem(0) {}
787 int total;
788 int free;
789 int buffers;
790 int cached;
791 int active_anon;
792 int inactive_anon;
793 int shmem;
794};
jamescook@chromium.org14cb2b2d2011-08-02 16:33:24795// Retrieves data from /proc/meminfo about system-wide memory consumption.
jamescook@chromium.orgf37661dd2011-08-11 18:10:04796// Fills in the provided |meminfo| structure. Returns true on success.
797// Exposed for memory debugging widget.
798BASE_EXPORT bool GetSystemMemoryInfo(SystemMemoryInfoKB* meminfo);
jingzhao@chromium.org4d0f93c2011-09-29 04:43:54799#endif // defined(OS_LINUX) || defined(OS_ANDROID)
jamescook@chromium.org14cb2b2d2011-08-02 16:33:24800
801// Returns the memory committed by the system in KBytes.
sgk@chromium.orged26d942009-11-09 06:57:28802// Returns 0 if it can't compute the commit charge.
darin@chromium.org0bea7252011-08-05 15:34:00803BASE_EXPORT size_t GetSystemCommitCharge();
sgk@chromium.orged26d942009-11-09 06:57:28804
initial.commitd7cae122008-07-26 21:49:38805// Enables low fragmentation heap (LFH) for every heaps of this process. This
806// won't have any effect on heaps created after this function call. It will not
807// modify data allocated in the heaps before calling this function. So it is
808// better to call this function early in initialization and again before
809// entering the main loop.
810// Note: Returns true on Windows 2000 without doing anything.
darin@chromium.org0bea7252011-08-05 15:34:00811BASE_EXPORT bool EnableLowFragmentationHeap();
initial.commitd7cae122008-07-26 21:49:38812
maruel@chromium.orgd6fc9fd2009-10-27 18:03:47813// Enables 'terminate on heap corruption' flag. Helps protect against heap
maruel@google.comc9d40872008-09-24 12:58:37814// overflow. Has no effect if the OS doesn't provide the necessary facility.
darin@chromium.org0bea7252011-08-05 15:34:00815BASE_EXPORT void EnableTerminationOnHeapCorruption();
maruel@google.comc9d40872008-09-24 12:58:37816
jam@chromium.orgfecbc6c2011-08-31 20:37:59817// Turns on process termination if memory runs out.
darin@chromium.org0bea7252011-08-05 15:34:00818BASE_EXPORT void EnableTerminationOnOutOfMemory();
jam@chromium.orgfecbc6c2011-08-31 20:37:59819
avi@chromium.org6cfa3392010-07-01 20:11:43820#if defined(OS_MACOSX)
821// Exposed for testing.
darin@chromium.org0bea7252011-08-05 15:34:00822BASE_EXPORT malloc_zone_t* GetPurgeableZone();
gspencer@google.com03eb9d22011-08-23 17:58:21823#endif // defined(OS_MACOSX)
avi@chromium.orgcccb21212009-11-12 20:39:56824
maruel@chromium.orgd6fc9fd2009-10-27 18:03:47825// Enables stack dump to console output on exception and signals.
826// When enabled, the process will quit immediately. This is meant to be used in
827// unit_tests only!
darin@chromium.org0bea7252011-08-05 15:34:00828BASE_EXPORT bool EnableInProcessStackDumping();
maruel@chromium.orgd6fc9fd2009-10-27 18:03:47829
deanm@google.comdb717282008-08-27 13:48:03830// If supported on the platform, and the user has sufficent rights, increase
831// the current process's scheduling priority to a high priority.
darin@chromium.org0bea7252011-08-05 15:34:00832BASE_EXPORT void RaiseProcessToHighPriority();
deanm@google.comdb717282008-08-27 13:48:03833
mark@chromium.orge9a8c19f2009-09-03 21:27:36834#if defined(OS_MACOSX)
835// Restore the default exception handler, setting it to Apple Crash Reporter
836// (ReportCrash). When forking and execing a new process, the child will
837// inherit the parent's exception ports, which may be set to the Breakpad
838// instance running inside the parent. The parent's Breakpad instance should
839// not handle the child's exceptions. Calling RestoreDefaultExceptionHandler
840// in the child after forking will restore the standard exception handler.
841// See http://crbug.com/20371/ for more details.
842void RestoreDefaultExceptionHandler();
maruel@chromium.orgb6128aa2010-04-29 17:44:42843#endif // defined(OS_MACOSX)
mark@chromium.orge9a8c19f2009-09-03 21:27:36844
brettw@google.com176aa482008-11-14 03:25:15845} // namespace base
initial.commitd7cae122008-07-26 21:49:38846
deanm@google.comdb717282008-08-27 13:48:03847#endif // BASE_PROCESS_UTIL_H_