1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/process/process_metrics.h"
#include <windows.h> // Must be in front of other Windows header files.
#include <winternl.h>
#include <psapi.h>
#include <stddef.h>
#include <stdint.h>
#include <algorithm>
#include "base/check.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/notreached.h"
#include "base/system/sys_info.h"
#include "base/threading/scoped_blocking_call.h"
#include "base/trace_event/trace_event.h"
#include "base/values.h"
#include "build/build_config.h"
namespace base {
namespace {
// ntstatus.h conflicts with windows.h so define this locally.
#define STATUS_SUCCESS ((NTSTATUS)0x00000000L)
// Definition of this struct is taken from the book:
// Windows NT/200, Native API reference, Gary Nebbett
struct SYSTEM_PERFORMANCE_INFORMATION {
// Total idle time of all processes in the system (units of 100 ns).
LARGE_INTEGER IdleTime;
// Number of bytes read (by all call to ZwReadFile).
LARGE_INTEGER ReadTransferCount;
// Number of bytes written (by all call to ZwWriteFile).
LARGE_INTEGER WriteTransferCount;
// Number of bytes transferred (e.g. DeviceIoControlFile)
LARGE_INTEGER OtherTransferCount;
// The amount of read operations.
ULONG ReadOperationCount;
// The amount of write operations.
ULONG WriteOperationCount;
// The amount of other operations.
ULONG OtherOperationCount;
// The number of pages of physical memory available to processes running on
// the system.
ULONG AvailablePages;
ULONG TotalCommittedPages;
ULONG TotalCommitLimit;
ULONG PeakCommitment;
ULONG PageFaults;
ULONG WriteCopyFaults;
ULONG TransitionFaults;
ULONG CacheTransitionFaults;
ULONG DemandZeroFaults;
// The number of pages read from disk to resolve page faults.
ULONG PagesRead;
// The number of read operations initiated to resolve page faults.
ULONG PageReadIos;
ULONG CacheReads;
ULONG CacheIos;
// The number of pages written to the system's pagefiles.
ULONG PagefilePagesWritten;
// The number of write operations performed on the system's pagefiles.
ULONG PagefilePageWriteIos;
ULONG MappedFilePagesWritten;
ULONG MappedFilePageWriteIos;
ULONG PagedPoolUsage;
ULONG NonPagedPoolUsage;
ULONG PagedPoolAllocs;
ULONG PagedPoolFrees;
ULONG NonPagedPoolAllocs;
ULONG NonPagedPoolFrees;
ULONG TotalFreeSystemPtes;
ULONG SystemCodePage;
ULONG TotalSystemDriverPages;
ULONG TotalSystemCodePages;
ULONG SmallNonPagedLookasideListAllocateHits;
ULONG SmallPagedLookasideListAllocateHits;
ULONG Reserved3;
ULONG MmSystemCachePage;
ULONG PagedPoolPage;
ULONG SystemDriverPage;
ULONG FastReadNoWait;
ULONG FastReadWait;
ULONG FastReadResourceMiss;
ULONG FastReadNotPossible;
ULONG FastMdlReadNoWait;
ULONG FastMdlReadWait;
ULONG FastMdlReadResourceMiss;
ULONG FastMdlReadNotPossible;
ULONG MapDataNoWait;
ULONG MapDataWait;
ULONG MapDataNoWaitMiss;
ULONG MapDataWaitMiss;
ULONG PinMappedDataCount;
ULONG PinReadNoWait;
ULONG PinReadWait;
ULONG PinReadNoWaitMiss;
ULONG PinReadWaitMiss;
ULONG CopyReadNoWait;
ULONG CopyReadWait;
ULONG CopyReadNoWaitMiss;
ULONG CopyReadWaitMiss;
ULONG MdlReadNoWait;
ULONG MdlReadWait;
ULONG MdlReadNoWaitMiss;
ULONG MdlReadWaitMiss;
ULONG ReadAheadIos;
ULONG LazyWriteIos;
ULONG LazyWritePages;
ULONG DataFlushes;
ULONG DataPages;
ULONG ContextSwitches;
ULONG FirstLevelTbFills;
ULONG SecondLevelTbFills;
ULONG SystemCalls;
};
base::expected<TimeDelta, ProcessCPUUsageError> GetImpreciseCumulativeCPUUsage(
const win::ScopedHandle& process) {
FILETIME creation_time;
FILETIME exit_time;
FILETIME kernel_time;
FILETIME user_time;
if (!process.is_valid()) {
return base::unexpected(ProcessCPUUsageError::kSystemError);
}
if (!GetProcessTimes(process.get(), &creation_time, &exit_time, &kernel_time,
&user_time)) {
// This should never fail when the handle is valid.
NOTREACHED();
}
return base::ok(TimeDelta::FromFileTime(kernel_time) +
TimeDelta::FromFileTime(user_time));
}
} // namespace
size_t GetMaxFds() {
// Windows is only limited by the amount of physical memory.
return std::numeric_limits<size_t>::max();
}
size_t GetHandleLimit() {
// Rounded down from value reported here:
// http://blogs.technet.com/b/markrussinovich/archive/2009/09/29/3283844.aspx
return static_cast<size_t>(1 << 23);
}
// static
std::unique_ptr<ProcessMetrics> ProcessMetrics::CreateProcessMetrics(
ProcessHandle process) {
return WrapUnique(new ProcessMetrics(process));
}
base::expected<ProcessMemoryInfo, ProcessUsageError>
ProcessMetrics::GetMemoryInfo() const {
if (!process_.is_valid()) {
return base::unexpected(ProcessUsageError::kProcessNotFound);
}
PROCESS_MEMORY_COUNTERS_EX pmc;
if (!::GetProcessMemoryInfo(process_.get(),
reinterpret_cast<PROCESS_MEMORY_COUNTERS*>(&pmc),
sizeof(pmc))) {
return base::unexpected(ProcessUsageError::kSystemError);
}
ProcessMemoryInfo counters;
counters.private_bytes = pmc.PrivateUsage;
counters.resident_set_bytes = pmc.WorkingSetSize;
return counters;
}
base::expected<TimeDelta, ProcessCPUUsageError>
ProcessMetrics::GetCumulativeCPUUsage() {
TRACE_EVENT("base", "GetCumulativeCPUUsage");
#if defined(ARCH_CPU_ARM64)
// Precise CPU usage is not available on Arm CPUs because they don't support
// constant rate TSC.
return GetImpreciseCumulativeCPUUsage(process_);
#else // !defined(ARCH_CPU_ARM64)
if (!time_internal::HasConstantRateTSC()) {
return GetImpreciseCumulativeCPUUsage(process_);
}
const double tsc_ticks_per_second = time_internal::TSCTicksPerSecond();
if (tsc_ticks_per_second == 0) {
// TSC is only initialized once TSCTicksPerSecond() is called twice 50 ms
// apart on the same thread to get a baseline. In unit tests, it is frequent
// for the initialization not to be complete. In production, it can also
// theoretically happen.
return GetImpreciseCumulativeCPUUsage(process_);
}
if (!process_.is_valid()) {
return base::unexpected(ProcessCPUUsageError::kProcessNotFound);
}
ULONG64 process_cycle_time = 0;
if (!QueryProcessCycleTime(process_.get(), &process_cycle_time)) {
// This should never fail when the handle is valid.
NOTREACHED();
}
const double process_time_seconds = process_cycle_time / tsc_ticks_per_second;
return base::ok(Seconds(process_time_seconds));
#endif // !defined(ARCH_CPU_ARM64)
}
ProcessMetrics::ProcessMetrics(ProcessHandle process) {
if (process == kNullProcessHandle) {
// Don't try to duplicate an invalid handle. However, INVALID_HANDLE_VALUE
// is also the pseudo-handle returned by ::GetCurrentProcess(), so DO try
// to duplicate that.
return;
}
HANDLE duplicate_handle = INVALID_HANDLE_VALUE;
BOOL result = ::DuplicateHandle(::GetCurrentProcess(), process,
::GetCurrentProcess(), &duplicate_handle,
PROCESS_QUERY_LIMITED_INFORMATION, FALSE, 0);
if (!result) {
// Even with PROCESS_QUERY_LIMITED_INFORMATION, DuplicateHandle can fail
// with ERROR_ACCESS_DENIED. And it's always possible to run out of handles.
const DWORD last_error = ::GetLastError();
CHECK(last_error == ERROR_ACCESS_DENIED ||
last_error == ERROR_NO_SYSTEM_RESOURCES);
return;
}
process_.Set(duplicate_handle);
}
size_t GetSystemCommitCharge() {
PERFORMANCE_INFORMATION info;
if (!::GetPerformanceInfo(&info, sizeof(info))) {
DLOG(ERROR) << "Failed to fetch internal performance info.";
return 0;
}
return (info.CommitTotal * info.PageSize) / 1024;
}
// This function uses the following mapping between MEMORYSTATUSEX and
// SystemMemoryInfoKB:
// ullTotalPhys ==> total
// ullAvailPhys ==> avail_phys
// ullTotalPageFile ==> swap_total
// ullAvailPageFile ==> swap_free
bool GetSystemMemoryInfo(SystemMemoryInfoKB* meminfo) {
MEMORYSTATUSEX mem_status;
mem_status.dwLength = sizeof(mem_status);
if (!::GlobalMemoryStatusEx(&mem_status)) {
return false;
}
meminfo->total = saturated_cast<int>(mem_status.ullTotalPhys / 1024);
meminfo->avail_phys = saturated_cast<int>(mem_status.ullAvailPhys / 1024);
meminfo->swap_total = saturated_cast<int>(mem_status.ullTotalPageFile / 1024);
meminfo->swap_free = saturated_cast<int>(mem_status.ullAvailPageFile / 1024);
return true;
}
size_t ProcessMetrics::GetMallocUsage() {
// Unsupported as getting malloc usage on Windows requires iterating through
// the heap which is slow and crashes.
return 0;
}
SystemPerformanceInfo::SystemPerformanceInfo() = default;
SystemPerformanceInfo::SystemPerformanceInfo(
const SystemPerformanceInfo& other) = default;
SystemPerformanceInfo& SystemPerformanceInfo::operator=(
const SystemPerformanceInfo& other) = default;
Value::Dict SystemPerformanceInfo::ToDict() const {
Value::Dict result;
// Write out uint64_t variables as doubles.
// Note: this may discard some precision, but for JS there's no other option.
result.Set("idle_time", strict_cast<double>(idle_time));
result.Set("read_transfer_count", strict_cast<double>(read_transfer_count));
result.Set("write_transfer_count", strict_cast<double>(write_transfer_count));
result.Set("other_transfer_count", strict_cast<double>(other_transfer_count));
result.Set("read_operation_count", strict_cast<double>(read_operation_count));
result.Set("write_operation_count",
strict_cast<double>(write_operation_count));
result.Set("other_operation_count",
strict_cast<double>(other_operation_count));
result.Set("pagefile_pages_written",
strict_cast<double>(pagefile_pages_written));
result.Set("pagefile_pages_write_ios",
strict_cast<double>(pagefile_pages_write_ios));
result.Set("available_pages", strict_cast<double>(available_pages));
result.Set("pages_read", strict_cast<double>(pages_read));
result.Set("page_read_ios", strict_cast<double>(page_read_ios));
return result;
}
// Retrieves performance counters from the operating system.
// Fills in the provided |info| structure. Returns true on success.
BASE_EXPORT bool GetSystemPerformanceInfo(SystemPerformanceInfo* info) {
SYSTEM_PERFORMANCE_INFORMATION counters = {};
{
// The call to NtQuerySystemInformation might block on a lock.
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
BlockingType::MAY_BLOCK);
if (::NtQuerySystemInformation(::SystemPerformanceInformation, &counters,
sizeof(SYSTEM_PERFORMANCE_INFORMATION),
nullptr) != STATUS_SUCCESS) {
return false;
}
}
info->idle_time = static_cast<uint64_t>(counters.IdleTime.QuadPart);
info->read_transfer_count =
static_cast<uint64_t>(counters.ReadTransferCount.QuadPart);
info->write_transfer_count =
static_cast<uint64_t>(counters.WriteTransferCount.QuadPart);
info->other_transfer_count =
static_cast<uint64_t>(counters.OtherTransferCount.QuadPart);
info->read_operation_count = counters.ReadOperationCount;
info->write_operation_count = counters.WriteOperationCount;
info->other_operation_count = counters.OtherOperationCount;
info->pagefile_pages_written = counters.PagefilePagesWritten;
info->pagefile_pages_write_ios = counters.PagefilePageWriteIos;
info->available_pages = counters.AvailablePages;
info->pages_read = counters.PagesRead;
info->page_read_ios = counters.PageReadIos;
return true;
}
} // namespace base
|