[go: nahoru, domu]

blob: 8004d9cc546201f0faffec31d50d46f18c09b3f9 [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)
alexeypa@chromium.orgf56d1582012-05-16 22:46:17149// Returns the module handle to which an address belongs. The reference count
150// of the module is not incremented.
joi@chromium.org9a182832012-02-10 18:45:58151BASE_EXPORT HMODULE GetModuleFromAddress(void* address);
152#endif
153
brettw@google.com5986ed22009-02-06 00:19:17154// Converts a PID to a process handle. This handle must be closed by
phajdan.jr@chromium.org6c6cc802009-04-03 17:01:36155// CloseProcessHandle when you are done with it. Returns true on success.
darin@chromium.org0bea7252011-08-05 15:34:00156BASE_EXPORT bool OpenProcessHandle(ProcessId pid, ProcessHandle* handle);
maruel@chromium.org52a261f2009-03-03 15:01:12157
phajdan.jr@chromium.org5d438dbad2009-04-30 08:59:39158// Converts a PID to a process handle. On Windows the handle is opened
159// with more access rights and must only be used by trusted code.
160// You have to close returned handle using CloseProcessHandle. Returns true
161// on success.
sanjeevr@chromium.org7d11f6d52010-10-12 21:44:23162// TODO(sanjeevr): Replace all calls to OpenPrivilegedProcessHandle with the
163// more specific OpenProcessHandleWithAccess method and delete this.
darin@chromium.org0bea7252011-08-05 15:34:00164BASE_EXPORT bool OpenPrivilegedProcessHandle(ProcessId pid,
165 ProcessHandle* handle);
phajdan.jr@chromium.org5d438dbad2009-04-30 08:59:39166
sanjeevr@chromium.org7d11f6d52010-10-12 21:44:23167// Converts a PID to a process handle using the desired access flags. Use a
168// combination of the kProcessAccess* flags defined above for |access_flags|.
darin@chromium.org0bea7252011-08-05 15:34:00169BASE_EXPORT bool OpenProcessHandleWithAccess(ProcessId pid,
170 uint32 access_flags,
171 ProcessHandle* handle);
sanjeevr@chromium.org7d11f6d52010-10-12 21:44:23172
brettw@google.com5986ed22009-02-06 00:19:17173// Closes the process handle opened by OpenProcessHandle.
darin@chromium.org0bea7252011-08-05 15:34:00174BASE_EXPORT void CloseProcessHandle(ProcessHandle process);
erikkay@google.com113ab132008-09-18 20:42:55175
cpu@google.comeef576f2008-11-03 23:28:06176// Returns the unique ID for the specified process. This is functionally the
initial.commitd7cae122008-07-26 21:49:38177// same as Windows' GetProcessId(), but works on versions of Windows before
178// Win XP SP1 as well.
darin@chromium.org0bea7252011-08-05 15:34:00179BASE_EXPORT ProcessId GetProcId(ProcessHandle process);
initial.commitd7cae122008-07-26 21:49:38180
robert.nagy@gmail.comaf824362011-12-04 14:19:41181#if defined(OS_LINUX) || defined(OS_ANDROID) || defined(OS_BSD)
dkegel@google.com78c6dd62009-06-08 23:29:11182// Returns the path to the executable of the given process.
darin@chromium.org0bea7252011-08-05 15:34:00183BASE_EXPORT FilePath GetProcessExecutablePath(ProcessHandle process);
robert.nagy@gmail.comea725b32011-10-25 17:43:05184#endif
evan@chromium.orgd2ed23832009-09-19 01:57:39185
robert.nagy@gmail.comea725b32011-10-25 17:43:05186#if defined(OS_LINUX) || defined(OS_ANDROID)
evan@chromium.orgd2ed23832009-09-19 01:57:39187// Parse the data found in /proc/<pid>/stat and return the sum of the
188// CPU-related ticks. Returns -1 on parse error.
189// Exposed for testing.
darin@chromium.org0bea7252011-08-05 15:34:00190BASE_EXPORT int ParseProcStatCPU(const std::string& input);
thestig@chromium.orge5856a7a2009-12-10 02:08:10191
gspencer@google.com03eb9d22011-08-23 17:58:21192// The maximum allowed value for the OOM score.
193const int kMaxOomScore = 1000;
thestig@chromium.orge5856a7a2009-12-10 02:08:10194
gspencer@google.com03eb9d22011-08-23 17:58:21195// This adjusts /proc/<pid>/oom_score_adj so the Linux OOM killer will
196// prefer to kill certain process types over others. The range for the
197// adjustment is [-1000, 1000], with [0, 1000] being user accessible.
198// If the Linux system doesn't support the newer oom_score_adj range
199// of [0, 1000], then we revert to using the older oom_adj, and
200// translate the given value into [0, 15]. Some aliasing of values
201// may occur in that case, of course.
darin@chromium.org0bea7252011-08-05 15:34:00202BASE_EXPORT bool AdjustOOMScore(ProcessId process, int score);
jingzhao@chromium.org4d0f93c2011-09-29 04:43:54203#endif // defined(OS_LINUX) || defined(OS_ANDROID)
dkegel@google.com78c6dd62009-06-08 23:29:11204
jeremy@chromium.orgfa3097a6a52008-12-17 22:41:50205#if defined(OS_POSIX)
dmaclach@chromium.org56f0f262011-02-24 17:14:36206// Returns the ID for the parent of the given process.
darin@chromium.org0bea7252011-08-05 15:34:00207BASE_EXPORT ProcessId GetParentProcessId(ProcessHandle process);
dmaclach@chromium.org56f0f262011-02-24 17:14:36208
gspencer@chromium.org443b80e2010-12-14 00:42:23209// Close all file descriptors, except those which are a destination in the
agl@chromium.org3f04f2b2009-04-30 19:40:03210// given multimap. Only call this function in a child process where you know
211// that there aren't any other threads.
darin@chromium.org0bea7252011-08-05 15:34:00212BASE_EXPORT void CloseSuperfluousFds(const InjectiveMultimap& saved_map);
gspencer@google.com03eb9d22011-08-23 17:58:21213#endif // defined(OS_POSIX)
jeremy@chromium.orgfa3097a6a52008-12-17 22:41:50214
thestig@chromium.orga82af392012-02-24 04:40:20215typedef std::vector<std::pair<std::string, std::string> > EnvironmentVector;
216typedef std::vector<std::pair<int, int> > FileHandleMappingVector;
evan@chromium.org898a81a2011-06-30 22:56:15217
mark@chromium.org84b2d1d2011-09-01 21:44:24218#if defined(OS_MACOSX)
219// Used with LaunchOptions::synchronize and LaunchSynchronize, a
220// LaunchSynchronizationHandle is an opaque value that LaunchProcess will
221// create and set, and that LaunchSynchronize will consume and destroy.
222typedef int* LaunchSynchronizationHandle;
223#endif // defined(OS_MACOSX)
224
evan@chromium.org075fb932011-07-19 16:31:28225// Options for launching a subprocess that are passed to LaunchProcess().
evan@chromium.orge5992182011-07-15 16:47:02226// The default constructor constructs the object with default options.
evan@chromium.org898a81a2011-06-30 22:56:15227struct LaunchOptions {
evan@chromium.orge5992182011-07-15 16:47:02228 LaunchOptions() : wait(false),
evan@chromium.org898a81a2011-06-30 22:56:15229#if defined(OS_WIN)
230 start_hidden(false), inherit_handles(false), as_user(NULL),
phajdan.jr@chromium.org86f723ec22011-09-07 21:54:42231 empty_desktop_name(false), job_handle(NULL)
evan@chromium.org898a81a2011-06-30 22:56:15232#else
mcgrathr@chromium.org77540fdf2011-11-15 18:49:10233 environ(NULL), fds_to_remap(NULL), maximize_rlimits(NULL),
234 new_process_group(false)
mark@chromium.org84b2d1d2011-09-01 21:44:24235#if defined(OS_LINUX)
236 , clone_flags(0)
237#endif // OS_LINUX
tbarzic@chromium.org927054d2012-01-21 01:48:25238#if defined(OS_CHROMEOS)
239 , ctrl_terminal_fd(-1)
240#endif // OS_CHROMEOS
mark@chromium.org84b2d1d2011-09-01 21:44:24241#if defined(OS_MACOSX)
242 , synchronize(NULL)
243#endif // defined(OS_MACOSX)
gspencer@google.com03eb9d22011-08-23 17:58:21244#endif // !defined(OS_WIN)
evan@chromium.org898a81a2011-06-30 22:56:15245 {}
246
247 // If true, wait for the process to complete.
248 bool wait;
249
evan@chromium.org898a81a2011-06-30 22:56:15250#if defined(OS_WIN)
251 bool start_hidden;
252
253 // If true, the new process inherits handles from the parent.
254 bool inherit_handles;
255
256 // If non-NULL, runs as if the user represented by the token had launched it.
257 // Whether the application is visible on the interactive desktop depends on
258 // the token belonging to an interactive logon session.
259 //
260 // To avoid hard to diagnose problems, when specified this loads the
261 // environment variables associated with the user and if this operation fails
262 // the entire call fails as well.
263 UserTokenHandle as_user;
264
265 // If true, use an empty string for the desktop name.
266 bool empty_desktop_name;
phajdan.jr@chromium.org86f723ec22011-09-07 21:54:42267
erikwright@chromium.org0148e6e2012-03-15 12:40:04268 // If non-NULL, launches the application in that job object. The process will
269 // be terminated immediately and LaunchProcess() will fail if assignment to
270 // the job object fails.
phajdan.jr@chromium.org86f723ec22011-09-07 21:54:42271 HANDLE job_handle;
evan@chromium.org898a81a2011-06-30 22:56:15272#else
273 // If non-NULL, set/unset environment variables.
274 // See documentation of AlterEnvironment().
275 // This pointer is owned by the caller and must live through the
276 // call to LaunchProcess().
thestig@chromium.orga82af392012-02-24 04:40:20277 const EnvironmentVector* environ;
evan@chromium.org898a81a2011-06-30 22:56:15278
279 // If non-NULL, remap file descriptors according to the mapping of
280 // src fd->dest fd to propagate FDs into the child process.
281 // This pointer is owned by the caller and must live through the
282 // call to LaunchProcess().
thestig@chromium.orga82af392012-02-24 04:40:20283 const FileHandleMappingVector* fds_to_remap;
evan@chromium.org898a81a2011-06-30 22:56:15284
mcgrathr@chromium.org77540fdf2011-11-15 18:49:10285 // Each element is an RLIMIT_* constant that should be raised to its
286 // rlim_max. This pointer is owned by the caller and must live through
287 // the call to LaunchProcess().
288 const std::set<int>* maximize_rlimits;
289
evan@chromium.org898a81a2011-06-30 22:56:15290 // If true, start the process in a new process group, instead of
291 // inheriting the parent's process group. The pgid of the child process
292 // will be the same as its pid.
293 bool new_process_group;
bradchen@google.comca7c4562011-07-15 23:55:21294
mark@chromium.org84b2d1d2011-09-01 21:44:24295#if defined(OS_LINUX)
bradchen@google.comca7c4562011-07-15 23:55:21296 // If non-zero, start the process using clone(), using flags as provided.
297 int clone_flags;
mark@chromium.org84b2d1d2011-09-01 21:44:24298#endif // defined(OS_LINUX)
299
tbarzic@chromium.org927054d2012-01-21 01:48:25300#if defined(OS_CHROMEOS)
301 // If non-negative, the specified file descriptor will be set as the launched
302 // process' controlling terminal.
303 int ctrl_terminal_fd;
304#endif // defined(OS_CHROMEOS)
305
mark@chromium.org84b2d1d2011-09-01 21:44:24306#if defined(OS_MACOSX)
307 // When non-NULL, a new LaunchSynchronizationHandle will be created and
308 // stored in *synchronize whenever LaunchProcess returns true in the parent
309 // process. The child process will have been created (with fork) but will
310 // be waiting (before exec) for the parent to call LaunchSynchronize with
311 // this handle. Only when LaunchSynchronize is called will the child be
312 // permitted to continue execution and call exec. LaunchSynchronize
313 // destroys the handle created by LaunchProcess.
314 //
315 // When synchronize is non-NULL, the parent must call LaunchSynchronize
316 // whenever LaunchProcess returns true. No exceptions.
317 //
318 // Synchronization is useful when the parent process needs to guarantee that
319 // it can take some action (such as recording the newly-forked child's
320 // process ID) before the child does something (such as using its process ID
321 // to communicate with its parent).
322 //
323 // |synchronize| and |wait| must not both be set simultaneously.
324 LaunchSynchronizationHandle* synchronize;
325#endif // defined(OS_MACOSX)
326
327#endif // !defined(OS_WIN)
evan@chromium.org898a81a2011-06-30 22:56:15328};
329
330// Launch a process via the command line |cmdline|.
evan@chromium.orge5992182011-07-15 16:47:02331// See the documentation of LaunchOptions for details on |options|.
332//
erikwright@chromium.org0148e6e2012-03-15 12:40:04333// Returns true upon success.
334//
335// Upon success, if |process_handle| is non-NULL, it will be filled in with the
evan@chromium.orge5992182011-07-15 16:47:02336// handle of the launched process. NOTE: In this case, the caller is
337// responsible for closing the handle so that it doesn't leak!
338// Otherwise, the process handle will be implicitly closed.
evan@chromium.org898a81a2011-06-30 22:56:15339//
340// Unix-specific notes:
mark@chromium.org84b2d1d2011-09-01 21:44:24341// - All file descriptors open in the parent process will be closed in the
342// child process except for any preserved by options::fds_to_remap, and
343// stdin, stdout, and stderr. If not remapped by options::fds_to_remap,
344// stdin is reopened as /dev/null, and the child is allowed to inherit its
345// parent's stdout and stderr.
evan@chromium.org898a81a2011-06-30 22:56:15346// - If the first argument on the command line does not contain a slash,
347// PATH will be searched. (See man execvp.)
darin@chromium.org0bea7252011-08-05 15:34:00348BASE_EXPORT bool LaunchProcess(const CommandLine& cmdline,
349 const LaunchOptions& options,
350 ProcessHandle* process_handle);
evan@chromium.org898a81a2011-06-30 22:56:15351
estade@chromium.orgfb7f9be2008-10-22 01:15:47352#if defined(OS_WIN)
tommi@chromium.org48dc9e12010-08-26 19:49:57353
354enum IntegrityLevel {
355 INTEGRITY_UNKNOWN,
356 LOW_INTEGRITY,
357 MEDIUM_INTEGRITY,
358 HIGH_INTEGRITY,
359};
360// Determine the integrity level of the specified process. Returns false
361// if the system does not support integrity levels (pre-Vista) or in the case
362// of an underlying system failure.
darin@chromium.org0bea7252011-08-05 15:34:00363BASE_EXPORT bool GetProcessIntegrityLevel(ProcessHandle process,
thestig@chromium.orga82af392012-02-24 04:40:20364 IntegrityLevel* level);
tommi@chromium.org48dc9e12010-08-26 19:49:57365
evan@chromium.org898a81a2011-06-30 22:56:15366// Windows-specific LaunchProcess that takes the command line as a
367// string. Useful for situations where you need to control the
368// command line arguments directly, but prefer the CommandLine version
369// if launching Chrome itself.
initial.commitd7cae122008-07-26 21:49:38370//
evan@chromium.org898a81a2011-06-30 22:56:15371// The first command line argument should be the path to the process,
372// and don't forget to quote it.
initial.commitd7cae122008-07-26 21:49:38373//
374// Example (including literal quotes)
375// cmdline = "c:\windows\explorer.exe" -foo "c:\bar\"
darin@chromium.org0bea7252011-08-05 15:34:00376BASE_EXPORT bool LaunchProcess(const string16& cmdline,
377 const LaunchOptions& options,
378 ProcessHandle* process_handle);
cpu@chromium.orge50130b2010-02-01 03:28:47379
estade@chromium.orgfb7f9be2008-10-22 01:15:47380#elif defined(OS_POSIX)
evan@chromium.org898a81a2011-06-30 22:56:15381// A POSIX-specific version of LaunchProcess that takes an argv array
382// instead of a CommandLine. Useful for situations where you need to
383// control the command line arguments directly, but prefer the
384// CommandLine version if launching Chrome itself.
darin@chromium.org0bea7252011-08-05 15:34:00385BASE_EXPORT bool LaunchProcess(const std::vector<std::string>& argv,
386 const LaunchOptions& options,
387 ProcessHandle* process_handle);
stuartmorgan@google.com2aea9e092009-08-06 20:03:01388
agl@chromium.orgef73044e2010-03-11 15:25:54389// AlterEnvironment returns a modified environment vector, constructed from the
390// given environment and the list of changes given in |changes|. Each key in
391// the environment is matched against the first element of the pairs. In the
392// event of a match, the value is replaced by the second of the pair, unless
393// the second is empty, in which case the key-value is removed.
394//
395// The returned array is allocated using new[] and must be freed by the caller.
thestig@chromium.orga82af392012-02-24 04:40:20396BASE_EXPORT char** AlterEnvironment(const EnvironmentVector& changes,
darin@chromium.org0bea7252011-08-05 15:34:00397 const char* const* const env);
mark@chromium.org84b2d1d2011-09-01 21:44:24398
399#if defined(OS_MACOSX)
400
401// After a successful call to LaunchProcess with LaunchOptions::synchronize
402// set, the parent process must call LaunchSynchronize to allow the child
403// process to proceed, and to destroy the LaunchSynchronizationHandle.
404BASE_EXPORT void LaunchSynchronize(LaunchSynchronizationHandle handle);
405
406#endif // defined(OS_MACOSX)
thestig@chromium.org9ec8db02009-07-21 07:00:13407#endif // defined(OS_POSIX)
estade@chromium.orgfb7f9be2008-10-22 01:15:47408
toyoshim@chromium.orgb330cab2011-11-23 23:37:19409#if defined(OS_WIN)
410// Set JOBOBJECT_EXTENDED_LIMIT_INFORMATION to JobObject |job_object|.
411// As its limit_info.BasicLimitInformation.LimitFlags has
412// JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE.
413// When the provide JobObject |job_object| is closed, the binded process will
414// be terminated.
415BASE_EXPORT bool SetJobObjectAsKillOnJobClose(HANDLE job_object);
416#endif // defined(OS_WIN)
417
jcampan@chromium.org1e312112009-04-21 21:44:12418// Executes the application specified by |cl| and wait for it to exit. Stores
phajdan.jr@chromium.org1912cfe2009-04-21 08:09:30419// the output (stdout) in |output|. Redirects stderr to /dev/null. Returns true
420// on success (application launched and exited cleanly, with exit code
maruel@chromium.org96878a212010-06-10 18:26:33421// indicating success).
darin@chromium.org0bea7252011-08-05 15:34:00422BASE_EXPORT bool GetAppOutput(const CommandLine& cl, std::string* output);
phajdan.jr@chromium.orgc0b210ee2009-04-17 09:57:52423
viettrungluu@chromium.orgf164cea2009-11-05 23:37:40424#if defined(OS_POSIX)
ivankr@chromium.org1a6ec692012-04-26 20:24:37425// A POSIX-specific version of GetAppOutput that takes an argv array
426// instead of a CommandLine. Useful for situations where you need to
427// control the command line arguments directly.
428BASE_EXPORT bool GetAppOutput(const std::vector<std::string>& argv,
429 std::string* output);
430
viettrungluu@chromium.orgf164cea2009-11-05 23:37:40431// A restricted version of |GetAppOutput()| which (a) clears the environment,
432// and (b) stores at most |max_output| bytes; also, it doesn't search the path
433// for the command.
darin@chromium.org0bea7252011-08-05 15:34:00434BASE_EXPORT bool GetAppOutputRestricted(const CommandLine& cl,
435 std::string* output, size_t max_output);
benwells@chromium.orgd03b05c2011-07-06 06:14:48436
437// A version of |GetAppOutput()| which also returns the exit code of the
438// executed command. Returns true if the application runs and exits cleanly. If
439// this is the case the exit code of the application is available in
440// |*exit_code|.
darin@chromium.org0bea7252011-08-05 15:34:00441BASE_EXPORT bool GetAppOutputWithExitCode(const CommandLine& cl,
442 std::string* output, int* exit_code);
gspencer@google.com03eb9d22011-08-23 17:58:21443#endif // defined(OS_POSIX)
viettrungluu@chromium.orgf164cea2009-11-05 23:37:40444
initial.commitd7cae122008-07-26 21:49:38445// Used to filter processes by process ID.
446class ProcessFilter {
447 public:
448 // Returns true to indicate set-inclusion and false otherwise. This method
449 // should not have side-effects and should be idempotent.
maruel@chromium.orgb6128aa2010-04-29 17:44:42450 virtual bool Includes(const ProcessEntry& entry) const = 0;
ziadh@chromium.org695092f2010-08-02 16:34:16451
452 protected:
453 virtual ~ProcessFilter() {}
initial.commitd7cae122008-07-26 21:49:38454};
455
456// Returns the number of processes on the machine that are running from the
457// given executable name. If filter is non-null, then only processes selected
458// by the filter will be counted.
darin@chromium.org0bea7252011-08-05 15:34:00459BASE_EXPORT int GetProcessCount(const FilePath::StringType& executable_name,
460 const ProcessFilter* filter);
initial.commitd7cae122008-07-26 21:49:38461
462// Attempts to kill all the processes on the current machine that were launched
463// from the given executable name, ending them with the given exit code. If
464// filter is non-null, then only processes selected by the filter are killed.
rsimha@chromium.org61b93f88f2010-09-22 17:28:30465// Returns true if all processes were able to be killed off, false if at least
initial.commitd7cae122008-07-26 21:49:38466// one couldn't be killed.
darin@chromium.org0bea7252011-08-05 15:34:00467BASE_EXPORT bool KillProcesses(const FilePath::StringType& executable_name,
468 int exit_code, const ProcessFilter* filter);
initial.commitd7cae122008-07-26 21:49:38469
470// Attempts to kill the process identified by the given process
471// entry structure, giving it the specified exit code. If |wait| is true, wait
472// for the process to be actually terminated before returning.
473// Returns true if this is successful, false otherwise.
darin@chromium.org0bea7252011-08-05 15:34:00474BASE_EXPORT bool KillProcess(ProcessHandle process, int exit_code, bool wait);
rsimha@chromium.org61b93f88f2010-09-22 17:28:30475
476#if defined(OS_POSIX)
477// Attempts to kill the process group identified by |process_group_id|. Returns
478// true on success.
darin@chromium.org0bea7252011-08-05 15:34:00479BASE_EXPORT bool KillProcessGroup(ProcessHandle process_group_id);
gspencer@google.com03eb9d22011-08-23 17:58:21480#endif // defined(OS_POSIX)
rsimha@chromium.org61b93f88f2010-09-22 17:28:30481
agl@chromium.orgdfe14862009-01-22 01:23:11482#if defined(OS_WIN)
darin@chromium.org0bea7252011-08-05 15:34:00483BASE_EXPORT bool KillProcessById(ProcessId process_id, int exit_code,
484 bool wait);
gspencer@google.com03eb9d22011-08-23 17:58:21485#endif // defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:38486
gspencer@chromium.org443b80e2010-12-14 00:42:23487// Get the termination status of the process by interpreting the
488// circumstances of the child process' death. |exit_code| is set to
489// the status returned by waitpid() on POSIX, and from
490// GetExitCodeProcess() on Windows. |exit_code| may be NULL if the
491// caller is not interested in it. Note that on Linux, this function
492// will only return a useful result the first time it is called after
493// the child exits (because it will reap the child and the information
494// will no longer be available).
darin@chromium.org0bea7252011-08-05 15:34:00495BASE_EXPORT TerminationStatus GetTerminationStatus(ProcessHandle handle,
496 int* exit_code);
initial.commitd7cae122008-07-26 21:49:38497
dmaclach@chromium.org56f0f262011-02-24 17:14:36498// Waits for process to exit. On POSIX systems, if the process hasn't been
phajdan.jr@chromium.orgc7856632009-01-13 17:38:49499// signaled then puts the exit code in |exit_code|; otherwise it's considered
500// a failure. On Windows |exit_code| is always filled. Returns true on success,
501// and closes |handle| in any case.
darin@chromium.org0bea7252011-08-05 15:34:00502BASE_EXPORT bool WaitForExitCode(ProcessHandle handle, int* exit_code);
phajdan.jr@chromium.orgc7856632009-01-13 17:38:49503
phajdan.jr@chromium.org8004e682010-03-16 07:41:22504// Waits for process to exit. If it did exit within |timeout_milliseconds|,
phajdan.jr@chromium.org40bbe592011-04-06 12:18:20505// then puts the exit code in |exit_code|, and returns true.
phajdan.jr@chromium.org8004e682010-03-16 07:41:22506// In POSIX systems, if the process has been signaled then |exit_code| is set
507// to -1. Returns false on failure (the caller is then responsible for closing
508// |handle|).
phajdan.jr@chromium.org40bbe592011-04-06 12:18:20509// The caller is always responsible for closing the |handle|.
darin@chromium.org0bea7252011-08-05 15:34:00510BASE_EXPORT bool WaitForExitCodeWithTimeout(ProcessHandle handle,
511 int* exit_code,
512 int64 timeout_milliseconds);
phajdan.jr@chromium.org8004e682010-03-16 07:41:22513
initial.commitd7cae122008-07-26 21:49:38514// Wait for all the processes based on the named executable to exit. If filter
515// is non-null, then only processes selected by the filter are waited on.
516// Returns after all processes have exited or wait_milliseconds have expired.
517// Returns true if all the processes exited, false otherwise.
darin@chromium.org0bea7252011-08-05 15:34:00518BASE_EXPORT bool WaitForProcessesToExit(
rvargas@google.com26fbf802011-03-25 18:48:03519 const FilePath::StringType& executable_name,
520 int64 wait_milliseconds,
521 const ProcessFilter* filter);
initial.commitd7cae122008-07-26 21:49:38522
estade@chromium.orgfb7f9be2008-10-22 01:15:47523// Wait for a single process to exit. Return true if it exited cleanly within
dmaclach@chromium.org56f0f262011-02-24 17:14:36524// the given time limit. On Linux |handle| must be a child process, however
525// on Mac and Windows it can be any process.
darin@chromium.org0bea7252011-08-05 15:34:00526BASE_EXPORT bool WaitForSingleProcess(ProcessHandle handle,
527 int64 wait_milliseconds);
tedvessenes@gmail.com7e1117c2012-03-31 20:42:41528BASE_EXPORT bool WaitForSingleProcess(ProcessHandle handle,
529 base::TimeDelta wait);
estade@chromium.orgfb7f9be2008-10-22 01:15:47530
initial.commitd7cae122008-07-26 21:49:38531// Waits a certain amount of time (can be 0) for all the processes with a given
532// executable name to exit, then kills off any of them that are still around.
533// If filter is non-null, then only processes selected by the filter are waited
534// on. Killed processes are ended with the given exit code. Returns false if
535// any processes needed to be killed, true if they all exited cleanly within
536// the wait_milliseconds delay.
darin@chromium.org0bea7252011-08-05 15:34:00537BASE_EXPORT bool CleanupProcesses(const FilePath::StringType& executable_name,
538 int64 wait_milliseconds,
539 int exit_code,
540 const ProcessFilter* filter);
initial.commitd7cae122008-07-26 21:49:38541
jam@chromium.orgeaac71592011-11-23 18:32:00542// This method ensures that the specified process eventually terminates, and
543// then it closes the given process handle.
544//
545// It assumes that the process has already been signalled to exit, and it
546// begins by waiting a small amount of time for it to exit. If the process
547// does not appear to have exited, then this function starts to become
548// aggressive about ensuring that the process terminates.
549//
550// On Linux this method does not block the calling thread.
551// On OS X this method may block for up to 2 seconds.
552//
553// NOTE: The process handle must have been opened with the PROCESS_TERMINATE
554// and SYNCHRONIZE permissions.
555//
556BASE_EXPORT void EnsureProcessTerminated(ProcessHandle process_handle);
557
558#if defined(OS_POSIX) && !defined(OS_MACOSX)
559// The nicer version of EnsureProcessTerminated() that is patient and will
560// wait for |process_handle| to finish and then reap it.
561BASE_EXPORT void EnsureProcessGetsReaped(ProcessHandle process_handle);
562#endif
563
maruel@chromium.orgb6128aa2010-04-29 17:44:42564// This class provides a way to iterate through a list of processes on the
565// current machine with a specified filter.
566// To use, create an instance and then call NextProcessEntry() until it returns
567// false.
darin@chromium.org0bea7252011-08-05 15:34:00568class BASE_EXPORT ProcessIterator {
initial.commitd7cae122008-07-26 21:49:38569 public:
maruel@chromium.orgbaead4f2010-06-11 19:10:30570 typedef std::list<ProcessEntry> ProcessEntries;
571
maruel@chromium.orgb6128aa2010-04-29 17:44:42572 explicit ProcessIterator(const ProcessFilter* filter);
573 virtual ~ProcessIterator();
initial.commitd7cae122008-07-26 21:49:38574
575 // If there's another process that matches the given executable name,
576 // returns a const pointer to the corresponding PROCESSENTRY32.
577 // If there are no more matching processes, returns NULL.
578 // The returned pointer will remain valid until NextProcessEntry()
579 // is called again or this NamedProcessIterator goes out of scope.
580 const ProcessEntry* NextProcessEntry();
581
maruel@chromium.orgb6128aa2010-04-29 17:44:42582 // Takes a snapshot of all the ProcessEntry found.
maruel@chromium.orgbaead4f2010-06-11 19:10:30583 ProcessEntries Snapshot();
maruel@chromium.orgb6128aa2010-04-29 17:44:42584
585 protected:
586 virtual bool IncludeEntry();
587 const ProcessEntry& entry() { return entry_; }
588
initial.commitd7cae122008-07-26 21:49:38589 private:
590 // Determines whether there's another process (regardless of executable)
591 // left in the list of all processes. Returns true and sets entry_ to
592 // that process's info if there is one, false otherwise.
593 bool CheckForNextProcess();
594
initial.commitd7cae122008-07-26 21:49:38595 // Initializes a PROCESSENTRY32 data structure so that it's ready for
596 // use with Process32First/Process32Next.
597 void InitProcessEntry(ProcessEntry* entry);
598
dkegel@google.comab0e2222008-10-31 20:19:43599#if defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:38600 HANDLE snapshot_;
initial.commitd7cae122008-07-26 21:49:38601 bool started_iteration_;
robert.nagy@gmail.comaf824362011-12-04 14:19:41602#elif defined(OS_MACOSX) || defined(OS_BSD)
mark@chromium.org962dd312009-02-05 21:44:13603 std::vector<kinfo_proc> kinfo_procs_;
604 size_t index_of_kinfo_proc_;
wtc@chromium.org4a34ce02009-08-31 22:25:00605#elif defined(OS_POSIX)
thestig@chromium.orga82af392012-02-24 04:40:20606 DIR* procfs_dir_;
dkegel@google.comab0e2222008-10-31 20:19:43607#endif
initial.commitd7cae122008-07-26 21:49:38608 ProcessEntry entry_;
609 const ProcessFilter* filter_;
610
maruel@chromium.orgb6128aa2010-04-29 17:44:42611 DISALLOW_COPY_AND_ASSIGN(ProcessIterator);
612};
613
614// This class provides a way to iterate through the list of processes
615// on the current machine that were started from the given executable
616// name. To use, create an instance and then call NextProcessEntry()
617// until it returns false.
darin@chromium.org0bea7252011-08-05 15:34:00618class BASE_EXPORT NamedProcessIterator : public ProcessIterator {
maruel@chromium.orgb6128aa2010-04-29 17:44:42619 public:
avi@chromium.org4f260d02010-12-23 18:35:42620 NamedProcessIterator(const FilePath::StringType& executable_name,
maruel@chromium.orgb6128aa2010-04-29 17:44:42621 const ProcessFilter* filter);
622 virtual ~NamedProcessIterator();
623
624 protected:
avi@chromium.orgb1719462011-11-16 00:08:08625 virtual bool IncludeEntry() OVERRIDE;
maruel@chromium.orgb6128aa2010-04-29 17:44:42626
627 private:
avi@chromium.org4f260d02010-12-23 18:35:42628 FilePath::StringType executable_name_;
maruel@chromium.orgb6128aa2010-04-29 17:44:42629
630 DISALLOW_COPY_AND_ASSIGN(NamedProcessIterator);
initial.commitd7cae122008-07-26 21:49:38631};
632
633// Working Set (resident) memory usage broken down by
agl@chromium.org54fd1d32009-09-01 00:12:58634//
635// On Windows:
initial.commitd7cae122008-07-26 21:49:38636// priv (private): These pages (kbytes) cannot be shared with any other process.
637// shareable: These pages (kbytes) can be shared with other processes under
638// the right circumstances.
639// shared : These pages (kbytes) are currently shared with at least one
640// other process.
agl@chromium.org54fd1d32009-09-01 00:12:58641//
642// On Linux:
643// priv: Pages mapped only by this process
644// shared: PSS or 0 if the kernel doesn't support this
645// shareable: 0
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04646//
647// On OS X: TODO(thakis): Revise.
648// priv: Memory.
649// shared: 0
650// shareable: 0
initial.commitd7cae122008-07-26 21:49:38651struct WorkingSetKBytes {
agl@chromium.org54fd1d32009-09-01 00:12:58652 WorkingSetKBytes() : priv(0), shareable(0), shared(0) {}
initial.commitd7cae122008-07-26 21:49:38653 size_t priv;
654 size_t shareable;
655 size_t shared;
656};
657
658// Committed (resident + paged) memory usage broken down by
659// private: These pages cannot be shared with any other process.
660// mapped: These pages are mapped into the view of a section (backed by
661// pagefile.sys)
662// image: These pages are mapped into the view of an image section (backed by
663// file system)
664struct CommittedKBytes {
agl@chromium.org54fd1d32009-09-01 00:12:58665 CommittedKBytes() : priv(0), mapped(0), image(0) {}
initial.commitd7cae122008-07-26 21:49:38666 size_t priv;
667 size_t mapped;
668 size_t image;
669};
670
671// Free memory (Megabytes marked as free) in the 2G process address space.
672// total : total amount in megabytes marked as free. Maximum value is 2048.
673// largest : size of the largest contiguous amount of memory found. It is
674// always smaller or equal to FreeMBytes::total.
675// largest_ptr: starting address of the largest memory block.
676struct FreeMBytes {
677 size_t total;
678 size_t largest;
679 void* largest_ptr;
680};
681
evan@chromium.orgd2ed23832009-09-19 01:57:39682// Convert a POSIX timeval to microseconds.
darin@chromium.org0bea7252011-08-05 15:34:00683BASE_EXPORT int64 TimeValToMicroseconds(const struct timeval& tv);
evan@chromium.orgd2ed23832009-09-19 01:57:39684
initial.commitd7cae122008-07-26 21:49:38685// Provides performance metrics for a specified process (CPU usage, memory and
686// IO counters). To use it, invoke CreateProcessMetrics() to get an instance
687// for a specific process, then access the information with the different get
688// methods.
darin@chromium.org0bea7252011-08-05 15:34:00689class BASE_EXPORT ProcessMetrics {
initial.commitd7cae122008-07-26 21:49:38690 public:
erg@google.coma502bbe72011-01-07 18:06:45691 ~ProcessMetrics();
692
initial.commitd7cae122008-07-26 21:49:38693 // Creates a ProcessMetrics for the specified process.
694 // The caller owns the returned object.
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04695#if !defined(OS_MACOSX)
initial.commitd7cae122008-07-26 21:49:38696 static ProcessMetrics* CreateProcessMetrics(ProcessHandle process);
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04697#else
698 class PortProvider {
699 public:
thakis@chromium.orgb2e8e082009-12-21 17:44:20700 // Should return the mach task for |process| if possible, or else
701 // |MACH_PORT_NULL|. Only processes that this returns tasks for will have
702 // metrics on OS X (except for the current process, which always gets
703 // metrics).
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04704 virtual mach_port_t TaskForPid(ProcessHandle process) const = 0;
705 };
706
707 // The port provider needs to outlive the ProcessMetrics object returned by
708 // this function. If NULL is passed as provider, the returned object
709 // only returns valid metrics if |process| is the current process.
710 static ProcessMetrics* CreateProcessMetrics(ProcessHandle process,
711 PortProvider* port_provider);
maruel@chromium.orgb6128aa2010-04-29 17:44:42712#endif // !defined(OS_MACOSX)
initial.commitd7cae122008-07-26 21:49:38713
initial.commitd7cae122008-07-26 21:49:38714 // Returns the current space allocated for the pagefile, in bytes (these pages
thomasvl@chromium.org796da7c2009-06-11 12:45:45715 // may or may not be in memory). On Linux, this returns the total virtual
716 // memory size.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45717 size_t GetPagefileUsage() const;
initial.commitd7cae122008-07-26 21:49:38718 // Returns the peak space allocated for the pagefile, in bytes.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45719 size_t GetPeakPagefileUsage() const;
thomasvl@chromium.org796da7c2009-06-11 12:45:45720 // Returns the current working set size, in bytes. On Linux, this returns
721 // the resident set size.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45722 size_t GetWorkingSetSize() const;
tc@google.com0c557f12009-05-11 23:35:52723 // Returns the peak working set size, in bytes.
724 size_t GetPeakWorkingSetSize() const;
erg@chromium.org98947a02010-05-11 17:46:08725 // Returns private and sharedusage, in bytes. Private bytes is the amount of
726 // memory currently allocated to a process that cannot be shared. Returns
727 // false on platform specific error conditions. Note: |private_bytes|
728 // returns 0 on unsupported OSes: prior to XP SP2.
729 bool GetMemoryBytes(size_t* private_bytes,
730 size_t* shared_bytes);
initial.commitd7cae122008-07-26 21:49:38731 // Fills a CommittedKBytes with both resident and paged
732 // memory usage as per definition of CommittedBytes.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45733 void GetCommittedKBytes(CommittedKBytes* usage) const;
initial.commitd7cae122008-07-26 21:49:38734 // Fills a WorkingSetKBytes containing resident private and shared memory
735 // usage in bytes, as per definition of WorkingSetBytes.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45736 bool GetWorkingSetKBytes(WorkingSetKBytes* ws_usage) const;
initial.commitd7cae122008-07-26 21:49:38737
738 // Computes the current process available memory for allocation.
739 // It does a linear scan of the address space querying each memory region
740 // for its free (unallocated) status. It is useful for estimating the memory
741 // load and fragmentation.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45742 bool CalculateFreeMemory(FreeMBytes* free) const;
initial.commitd7cae122008-07-26 21:49:38743
744 // Returns the CPU usage in percent since the last time this method was
745 // called. The first time this method is called it returns 0 and will return
746 // the actual CPU info on subsequent calls.
thakis@chromium.org022eab62010-01-13 04:55:06747 // On Windows, the CPU usage value is for all CPUs. So if you have 2 CPUs and
748 // your process is using all the cycles of 1 CPU and not the other CPU, this
749 // method returns 50.
750 double GetCPUUsage();
initial.commitd7cae122008-07-26 21:49:38751
752 // Retrieves accounting information for all I/O operations performed by the
753 // process.
754 // If IO information is retrieved successfully, the function returns true
755 // and fills in the IO_COUNTERS passed in. The function returns false
756 // otherwise.
phajdan.jr@chromium.orgd043c2cc2009-03-25 18:30:45757 bool GetIOCounters(IoCounters* io_counters) const;
initial.commitd7cae122008-07-26 21:49:38758
759 private:
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04760#if !defined(OS_MACOSX)
initial.commitd7cae122008-07-26 21:49:38761 explicit ProcessMetrics(ProcessHandle process);
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04762#else
763 ProcessMetrics(ProcessHandle process, PortProvider* port_provider);
gspencer@google.com03eb9d22011-08-23 17:58:21764#endif // defined(OS_MACOSX)
initial.commitd7cae122008-07-26 21:49:38765
766 ProcessHandle process_;
767
768 int processor_count_;
769
evan@chromium.orgd2ed23832009-09-19 01:57:39770 // Used to store the previous times and CPU usage counts so we can
771 // compute the CPU usage between calls.
initial.commitd7cae122008-07-26 21:49:38772 int64 last_time_;
773 int64 last_system_time_;
774
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04775#if defined(OS_MACOSX)
776 // Queries the port provider if it's set.
777 mach_port_t TaskForPid(ProcessHandle process) const;
778
779 PortProvider* port_provider_;
pvalchev@google.com66700d42010-03-10 07:46:43780#elif defined(OS_POSIX)
781 // Jiffie count at the last_time_ we updated.
782 int last_cpu_;
gspencer@google.com03eb9d22011-08-23 17:58:21783#endif // defined(OS_POSIX)
viettrungluu@chromium.org3740cb9b52009-12-19 04:50:04784
maruel@chromium.orgb6128aa2010-04-29 17:44:42785 DISALLOW_COPY_AND_ASSIGN(ProcessMetrics);
initial.commitd7cae122008-07-26 21:49:38786};
787
jingzhao@chromium.org4d0f93c2011-09-29 04:43:54788#if defined(OS_LINUX) || defined(OS_ANDROID)
jamescook@chromium.orgf37661dd2011-08-11 18:10:04789// Data from /proc/meminfo about system-wide memory consumption.
790// Values are in KB.
jamescook@chromium.orgd6d4dae2012-04-18 17:47:32791struct BASE_EXPORT SystemMemoryInfoKB {
792 SystemMemoryInfoKB();
793
jamescook@chromium.orgf37661dd2011-08-11 18:10:04794 int total;
795 int free;
796 int buffers;
797 int cached;
798 int active_anon;
799 int inactive_anon;
jamescook@chromium.orgd6d4dae2012-04-18 17:47:32800 int active_file;
801 int inactive_file;
jamescook@chromium.orgf37661dd2011-08-11 18:10:04802 int shmem;
803};
jamescook@chromium.org14cb2b2d2011-08-02 16:33:24804// Retrieves data from /proc/meminfo about system-wide memory consumption.
jamescook@chromium.orgf37661dd2011-08-11 18:10:04805// Fills in the provided |meminfo| structure. Returns true on success.
806// Exposed for memory debugging widget.
807BASE_EXPORT bool GetSystemMemoryInfo(SystemMemoryInfoKB* meminfo);
jingzhao@chromium.org4d0f93c2011-09-29 04:43:54808#endif // defined(OS_LINUX) || defined(OS_ANDROID)
jamescook@chromium.org14cb2b2d2011-08-02 16:33:24809
810// Returns the memory committed by the system in KBytes.
sgk@chromium.orged26d942009-11-09 06:57:28811// Returns 0 if it can't compute the commit charge.
darin@chromium.org0bea7252011-08-05 15:34:00812BASE_EXPORT size_t GetSystemCommitCharge();
sgk@chromium.orged26d942009-11-09 06:57:28813
initial.commitd7cae122008-07-26 21:49:38814// Enables low fragmentation heap (LFH) for every heaps of this process. This
815// won't have any effect on heaps created after this function call. It will not
816// modify data allocated in the heaps before calling this function. So it is
817// better to call this function early in initialization and again before
818// entering the main loop.
819// Note: Returns true on Windows 2000 without doing anything.
darin@chromium.org0bea7252011-08-05 15:34:00820BASE_EXPORT bool EnableLowFragmentationHeap();
initial.commitd7cae122008-07-26 21:49:38821
maruel@chromium.orgd6fc9fd2009-10-27 18:03:47822// Enables 'terminate on heap corruption' flag. Helps protect against heap
maruel@google.comc9d40872008-09-24 12:58:37823// overflow. Has no effect if the OS doesn't provide the necessary facility.
darin@chromium.org0bea7252011-08-05 15:34:00824BASE_EXPORT void EnableTerminationOnHeapCorruption();
maruel@google.comc9d40872008-09-24 12:58:37825
jam@chromium.orgfecbc6c2011-08-31 20:37:59826// Turns on process termination if memory runs out.
darin@chromium.org0bea7252011-08-05 15:34:00827BASE_EXPORT void EnableTerminationOnOutOfMemory();
jam@chromium.orgfecbc6c2011-08-31 20:37:59828
avi@chromium.org6cfa3392010-07-01 20:11:43829#if defined(OS_MACOSX)
830// Exposed for testing.
darin@chromium.org0bea7252011-08-05 15:34:00831BASE_EXPORT malloc_zone_t* GetPurgeableZone();
gspencer@google.com03eb9d22011-08-23 17:58:21832#endif // defined(OS_MACOSX)
avi@chromium.orgcccb21212009-11-12 20:39:56833
maruel@chromium.orgd6fc9fd2009-10-27 18:03:47834// Enables stack dump to console output on exception and signals.
835// When enabled, the process will quit immediately. This is meant to be used in
836// unit_tests only!
darin@chromium.org0bea7252011-08-05 15:34:00837BASE_EXPORT bool EnableInProcessStackDumping();
maruel@chromium.orgd6fc9fd2009-10-27 18:03:47838
deanm@google.comdb717282008-08-27 13:48:03839// If supported on the platform, and the user has sufficent rights, increase
840// the current process's scheduling priority to a high priority.
darin@chromium.org0bea7252011-08-05 15:34:00841BASE_EXPORT void RaiseProcessToHighPriority();
deanm@google.comdb717282008-08-27 13:48:03842
mark@chromium.orge9a8c19f2009-09-03 21:27:36843#if defined(OS_MACOSX)
844// Restore the default exception handler, setting it to Apple Crash Reporter
845// (ReportCrash). When forking and execing a new process, the child will
846// inherit the parent's exception ports, which may be set to the Breakpad
847// instance running inside the parent. The parent's Breakpad instance should
848// not handle the child's exceptions. Calling RestoreDefaultExceptionHandler
849// in the child after forking will restore the standard exception handler.
850// See http://crbug.com/20371/ for more details.
851void RestoreDefaultExceptionHandler();
maruel@chromium.orgb6128aa2010-04-29 17:44:42852#endif // defined(OS_MACOSX)
mark@chromium.orge9a8c19f2009-09-03 21:27:36853
brettw@google.com176aa482008-11-14 03:25:15854} // namespace base
initial.commitd7cae122008-07-26 21:49:38855
deanm@google.comdb717282008-08-27 13:48:03856#endif // BASE_PROCESS_UTIL_H_