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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
base / process / process_metrics_linux.cc [blame]
// 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.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40284755): Remove this and spanify to fix the errors.
#pragma allow_unsafe_buffers
#endif
#include "base/process/process_metrics.h"
#include <dirent.h>
#include <fcntl.h>
#include <inttypes.h>
#include <stddef.h>
#include <stdint.h>
#include <sys/stat.h>
#include <sys/sysmacros.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include <optional>
#include <string_view>
#include <utility>
#include "base/containers/span.h"
#include "base/cpu.h"
#include "base/files/dir_reader_posix.h"
#include "base/files/file_util.h"
#include "base/logging.h"
#include "base/memory/page_size.h"
#include "base/memory/ptr_util.h"
#include "base/notreached.h"
#include "base/numerics/clamped_math.h"
#include "base/numerics/safe_conversions.h"
#include "base/process/internal_linux.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/string_tokenizer.h"
#include "base/strings/string_util.h"
#include "base/system/sys_info.h"
#include "base/threading/thread_restrictions.h"
#include "base/types/expected.h"
#include "base/values.h"
#include "build/build_config.h"
#include "third_party/abseil-cpp/absl/strings/ascii.h"
namespace base {
class ScopedAllowBlockingForProcessMetrics : public ScopedAllowBlocking {};
namespace {
#if BUILDFLAG(IS_CHROMEOS)
// Read a file with a single number string and return the number as a uint64_t.
uint64_t ReadFileToUint64(const FilePath& file) {
std::string file_contents;
if (!ReadFileToString(file, &file_contents))
return 0;
TrimWhitespaceASCII(file_contents, TRIM_ALL, &file_contents);
uint64_t file_contents_uint64 = 0;
if (!StringToUint64(file_contents, &file_contents_uint64))
return 0;
return file_contents_uint64;
}
#endif
// Get the total CPU from a proc stat buffer. Return value is a TimeDelta
// converted from a number of jiffies on success or an error code if parsing
// failed.
base::expected<TimeDelta, ProcessCPUUsageError> ParseTotalCPUTimeFromStats(
base::span<const std::string> proc_stats) {
const std::optional<int64_t> utime =
internal::GetProcStatsFieldAsOptionalInt64(proc_stats,
internal::VM_UTIME);
if (utime.value_or(-1) < 0) {
return base::unexpected(ProcessCPUUsageError::kSystemError);
}
const std::optional<int64_t> stime =
internal::GetProcStatsFieldAsOptionalInt64(proc_stats,
internal::VM_STIME);
if (stime.value_or(-1) < 0) {
return base::unexpected(ProcessCPUUsageError::kSystemError);
}
const TimeDelta cpu_time = internal::ClockTicksToTimeDelta(
base::ClampAdd(utime.value(), stime.value()));
CHECK(!cpu_time.is_negative());
return base::ok(cpu_time);
}
size_t GetKbFieldAsSizeT(std::string_view value_str) {
std::vector<std::string_view> split_value_str =
SplitStringPiece(value_str, " ", TRIM_WHITESPACE, SPLIT_WANT_ALL);
CHECK(split_value_str.size() == 2 && split_value_str[1] == "kB");
size_t value;
CHECK(StringToSizeT(split_value_str[0], &value));
return value;
}
} // namespace
// static
std::unique_ptr<ProcessMetrics> ProcessMetrics::CreateProcessMetrics(
ProcessHandle process) {
return WrapUnique(new ProcessMetrics(process));
}
base::expected<TimeDelta, ProcessCPUUsageError>
ProcessMetrics::GetCumulativeCPUUsage() {
std::string buffer;
std::vector<std::string> proc_stats;
if (!internal::ReadProcStats(process_, &buffer) ||
!internal::ParseProcStats(buffer, &proc_stats)) {
return base::unexpected(ProcessCPUUsageError::kSystemError);
}
return ParseTotalCPUTimeFromStats(proc_stats);
}
bool ProcessMetrics::GetCumulativeCPUUsagePerThread(
CPUUsagePerThread& cpu_per_thread) {
cpu_per_thread.clear();
internal::ForEachProcessTask(
process_,
[&cpu_per_thread](PlatformThreadId tid, const FilePath& task_path) {
FilePath thread_stat_path = task_path.Append("stat");
std::string buffer;
std::vector<std::string> proc_stats;
if (!internal::ReadProcFile(thread_stat_path, &buffer) ||
!internal::ParseProcStats(buffer, &proc_stats)) {
return;
}
const base::expected<TimeDelta, ProcessCPUUsageError> thread_time =
ParseTotalCPUTimeFromStats(proc_stats);
if (thread_time.has_value()) {
cpu_per_thread.emplace_back(tid, thread_time.value());
}
});
return !cpu_per_thread.empty();
}
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_ANDROID)
base::expected<ProcessMemoryInfo, ProcessUsageError>
ProcessMetrics::GetMemoryInfo() const {
StringPairs pairs;
if (!internal::ReadProcFileToTrimmedStringPairs(process_, "status", &pairs)) {
return base::unexpected(ProcessUsageError::kSystemError);
}
ProcessMemoryInfo dump;
for (const auto& pair : pairs) {
const std::string& key = pair.first;
const std::string& value_str = pair.second;
if (key == "VmSwap") {
dump.vm_swap_bytes =
static_cast<uint64_t>(GetKbFieldAsSizeT(value_str)) * 1024;
} else if (key == "VmRSS") {
dump.resident_set_bytes =
static_cast<uint64_t>(GetKbFieldAsSizeT(value_str)) * 1024;
} else if (key == "RssAnon") {
dump.rss_anon_bytes =
static_cast<uint64_t>(GetKbFieldAsSizeT(value_str)) * 1024;
} else {
continue;
}
}
if (dump.rss_anon_bytes != 0) {
return dump;
}
// RssAnon was introduced in Linux 4.5, use /proc/pid/statm as fallback.
std::string statm_data;
FilePath statm_file = internal::GetProcPidDir(process_).Append("statm");
if (!internal::ReadProcFile(statm_file, &statm_data)) {
return base::unexpected(ProcessUsageError::kSystemError);
}
std::vector<std::string_view> values = SplitStringPieceUsingSubstr(
statm_data, " ", TRIM_WHITESPACE, SPLIT_WANT_NONEMPTY);
CHECK_GE(values.size(), 3U);
uint64_t resident_pages = 0;
uint64_t shared_pages = 0;
CHECK(StringToUint64(values[1], &resident_pages));
CHECK(StringToUint64(values[2], &shared_pages));
static const size_t page_size = GetPageSize();
dump.rss_anon_bytes = (resident_pages - shared_pages) * page_size;
return dump;
}
bool ProcessMetrics::GetPageFaultCounts(PageFaultCounts* counts) const {
// We are not using internal::ReadStatsFileAndGetFieldAsInt64(), since it
// would read the file twice, and return inconsistent numbers.
std::string stats_data;
if (!internal::ReadProcStats(process_, &stats_data))
return false;
std::vector<std::string> proc_stats;
if (!internal::ParseProcStats(stats_data, &proc_stats))
return false;
counts->minor =
internal::GetProcStatsFieldAsInt64(proc_stats, internal::VM_MINFLT);
counts->major =
internal::GetProcStatsFieldAsInt64(proc_stats, internal::VM_MAJFLT);
return true;
}
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) ||
// BUILDFLAG(IS_ANDROID)
int ProcessMetrics::GetOpenFdCount() const {
// Use /proc/<pid>/fd to count the number of entries there.
FilePath fd_path = internal::GetProcPidDir(process_).Append("fd");
DirReaderPosix dir_reader(fd_path.value().c_str());
if (!dir_reader.IsValid())
return -1;
int total_count = 0;
for (; dir_reader.Next(); ) {
const char* name = dir_reader.name();
if (strcmp(name, ".") != 0 && strcmp(name, "..") != 0)
++total_count;
}
return total_count;
}
int ProcessMetrics::GetOpenFdSoftLimit() const {
// Use /proc/<pid>/limits to read the open fd limit.
FilePath fd_path = internal::GetProcPidDir(process_).Append("limits");
std::string limits_contents;
if (!ReadFileToStringNonBlocking(fd_path, &limits_contents))
return -1;
for (const auto& line : SplitStringPiece(
limits_contents, "\n", KEEP_WHITESPACE, SPLIT_WANT_NONEMPTY)) {
if (!StartsWith(line, "Max open files"))
continue;
auto tokens =
SplitStringPiece(line, " ", TRIM_WHITESPACE, SPLIT_WANT_NONEMPTY);
if (tokens.size() > 3) {
int limit = -1;
if (!StringToInt(tokens[3], &limit))
return -1;
return limit;
}
}
return -1;
}
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_AIX)
ProcessMetrics::ProcessMetrics(ProcessHandle process)
: process_(process), last_absolute_idle_wakeups_(0) {}
#else
ProcessMetrics::ProcessMetrics(ProcessHandle process) : process_(process) {}
#endif
size_t GetSystemCommitCharge() {
SystemMemoryInfoKB meminfo;
if (!GetSystemMemoryInfo(&meminfo))
return 0;
return GetSystemCommitChargeFromMeminfo(meminfo);
}
size_t GetSystemCommitChargeFromMeminfo(const SystemMemoryInfoKB& meminfo) {
// TODO(crbug.com/315988925): This math is incorrect: `cached` can be very
// large so that `free` + `buffers` + `cached` > `total`. Replace this with a
// more meaningful metric or remove it. In the meantime, convert underflows to
// 0 instead of crashing.
return ClampedNumeric<size_t>(meminfo.total) - meminfo.free -
meminfo.buffers - meminfo.cached;
}
int ParseProcStatCPU(std::string_view input) {
// |input| may be empty if the process disappeared somehow.
// e.g. http://crbug.com/145811.
if (input.empty())
return -1;
size_t start = input.find_last_of(')');
if (start == input.npos)
return -1;
// Number of spaces remaining until reaching utime's index starting after the
// last ')'.
int num_spaces_remaining = internal::VM_UTIME - 1;
size_t i = start;
while ((i = input.find(' ', i + 1)) != input.npos) {
// Validate the assumption that there aren't any contiguous spaces
// in |input| before utime.
DCHECK_NE(input[i - 1], ' ');
if (--num_spaces_remaining == 0) {
int utime = 0;
int stime = 0;
if (sscanf(&input.data()[i], "%d %d", &utime, &stime) != 2)
return -1;
return utime + stime;
}
}
return -1;
}
int64_t GetNumberOfThreads(ProcessHandle process) {
return internal::ReadProcStatsAndGetFieldAsInt64(process,
internal::VM_NUMTHREADS);
}
const char kProcSelfExe[] = "/proc/self/exe";
namespace {
// The format of /proc/diskstats is:
// Device major number
// Device minor number
// Device name
// Field 1 -- # of reads completed
// This is the total number of reads completed successfully.
// Field 2 -- # of reads merged, field 6 -- # of writes merged
// Reads and writes which are adjacent to each other may be merged for
// efficiency. Thus two 4K reads may become one 8K read before it is
// ultimately handed to the disk, and so it will be counted (and queued)
// as only one I/O. This field lets you know how often this was done.
// Field 3 -- # of sectors read
// This is the total number of sectors read successfully.
// Field 4 -- # of milliseconds spent reading
// This is the total number of milliseconds spent by all reads (as
// measured from __make_request() to end_that_request_last()).
// Field 5 -- # of writes completed
// This is the total number of writes completed successfully.
// Field 6 -- # of writes merged
// See the description of field 2.
// Field 7 -- # of sectors written
// This is the total number of sectors written successfully.
// Field 8 -- # of milliseconds spent writing
// This is the total number of milliseconds spent by all writes (as
// measured from __make_request() to end_that_request_last()).
// Field 9 -- # of I/Os currently in progress
// The only field that should go to zero. Incremented as requests are
// given to appropriate struct request_queue and decremented as they
// finish.
// Field 10 -- # of milliseconds spent doing I/Os
// This field increases so long as field 9 is nonzero.
// Field 11 -- weighted # of milliseconds spent doing I/Os
// This field is incremented at each I/O start, I/O completion, I/O
// merge, or read of these stats by the number of I/Os in progress
// (field 9) times the number of milliseconds spent doing I/O since the
// last update of this field. This can provide an easy measure of both
// I/O completion time and the backlog that may be accumulating.
const size_t kDiskDriveName = 2;
const size_t kDiskReads = 3;
const size_t kDiskReadsMerged = 4;
const size_t kDiskSectorsRead = 5;
const size_t kDiskReadTime = 6;
const size_t kDiskWrites = 7;
const size_t kDiskWritesMerged = 8;
const size_t kDiskSectorsWritten = 9;
const size_t kDiskWriteTime = 10;
const size_t kDiskIO = 11;
const size_t kDiskIOTime = 12;
const size_t kDiskWeightedIOTime = 13;
} // namespace
Value::Dict SystemMemoryInfoKB::ToDict() const {
Value::Dict res;
res.Set("total", total);
res.Set("free", free);
res.Set("available", available);
res.Set("buffers", buffers);
res.Set("cached", cached);
res.Set("active_anon", active_anon);
res.Set("inactive_anon", inactive_anon);
res.Set("active_file", active_file);
res.Set("inactive_file", inactive_file);
res.Set("swap_total", swap_total);
res.Set("swap_free", swap_free);
res.Set("swap_used", swap_total - swap_free);
res.Set("dirty", dirty);
res.Set("reclaimable", reclaimable);
#if BUILDFLAG(IS_CHROMEOS)
res.Set("shmem", shmem);
res.Set("slab", slab);
#endif
return res;
}
bool ParseProcMeminfo(std::string_view meminfo_data,
SystemMemoryInfoKB* meminfo) {
// The format of /proc/meminfo is:
//
// MemTotal: 8235324 kB
// MemFree: 1628304 kB
// Buffers: 429596 kB
// Cached: 4728232 kB
// ...
// There is no guarantee on the ordering or position
// though it doesn't appear to change very often
// As a basic sanity check at the end, make sure the MemTotal value will be at
// least non-zero. So start off with a zero total.
meminfo->total = 0;
for (std::string_view line : SplitStringPiece(
meminfo_data, "\n", KEEP_WHITESPACE, SPLIT_WANT_NONEMPTY)) {
std::vector<std::string_view> tokens = SplitStringPiece(
line, kWhitespaceASCII, TRIM_WHITESPACE, SPLIT_WANT_NONEMPTY);
// HugePages_* only has a number and no suffix so there may not be exactly 3
// tokens.
if (tokens.size() <= 1) {
DLOG(WARNING) << "meminfo: tokens: " << tokens.size()
<< " malformed line: " << line;
continue;
}
int* target = nullptr;
if (tokens[0] == "MemTotal:")
target = &meminfo->total;
else if (tokens[0] == "MemFree:")
target = &meminfo->free;
else if (tokens[0] == "MemAvailable:")
target = &meminfo->available;
else if (tokens[0] == "Buffers:")
target = &meminfo->buffers;
else if (tokens[0] == "Cached:")
target = &meminfo->cached;
else if (tokens[0] == "Active(anon):")
target = &meminfo->active_anon;
else if (tokens[0] == "Inactive(anon):")
target = &meminfo->inactive_anon;
else if (tokens[0] == "Active(file):")
target = &meminfo->active_file;
else if (tokens[0] == "Inactive(file):")
target = &meminfo->inactive_file;
else if (tokens[0] == "SwapTotal:")
target = &meminfo->swap_total;
else if (tokens[0] == "SwapFree:")
target = &meminfo->swap_free;
else if (tokens[0] == "Dirty:")
target = &meminfo->dirty;
else if (tokens[0] == "SReclaimable:")
target = &meminfo->reclaimable;
#if BUILDFLAG(IS_CHROMEOS)
// Chrome OS has a tweaked kernel that allows querying Shmem, which is
// usually video memory otherwise invisible to the OS.
else if (tokens[0] == "Shmem:")
target = &meminfo->shmem;
else if (tokens[0] == "Slab:")
target = &meminfo->slab;
#endif
if (target)
StringToInt(tokens[1], target);
}
// Make sure the MemTotal is valid.
return meminfo->total > 0;
}
bool ParseProcVmstat(std::string_view vmstat_data, VmStatInfo* vmstat) {
// The format of /proc/vmstat is:
//
// nr_free_pages 299878
// nr_inactive_anon 239863
// nr_active_anon 1318966
// nr_inactive_file 2015629
// ...
//
// Iterate through the whole file because the position of the
// fields are dependent on the kernel version and configuration.
// Returns true if all of these 3 fields are present.
bool has_pswpin = false;
bool has_pswpout = false;
bool has_pgmajfault = false;
// The oom_kill field is optional. The vmstat oom_kill field is available on
// upstream kernel 4.13. It's backported to Chrome OS kernel 3.10.
bool has_oom_kill = false;
vmstat->oom_kill = 0;
for (std::string_view line : SplitStringPiece(
vmstat_data, "\n", KEEP_WHITESPACE, SPLIT_WANT_NONEMPTY)) {
std::vector<std::string_view> tokens =
SplitStringPiece(line, " ", KEEP_WHITESPACE, SPLIT_WANT_NONEMPTY);
if (tokens.size() != 2)
continue;
uint64_t val;
if (!StringToUint64(tokens[1], &val))
continue;
if (tokens[0] == "pswpin") {
vmstat->pswpin = val;
DCHECK(!has_pswpin);
has_pswpin = true;
} else if (tokens[0] == "pswpout") {
vmstat->pswpout = val;
DCHECK(!has_pswpout);
has_pswpout = true;
} else if (tokens[0] == "pgmajfault") {
vmstat->pgmajfault = val;
DCHECK(!has_pgmajfault);
has_pgmajfault = true;
} else if (tokens[0] == "oom_kill") {
vmstat->oom_kill = val;
DCHECK(!has_oom_kill);
has_oom_kill = true;
}
}
return has_pswpin && has_pswpout && has_pgmajfault;
}
bool GetSystemMemoryInfo(SystemMemoryInfoKB* meminfo) {
// Used memory is: total - free - buffers - caches
// ReadFileToStringNonBlocking doesn't require ScopedAllowIO, and reading
// /proc/meminfo is fast. See crbug.com/1160988 for details.
FilePath meminfo_file("/proc/meminfo");
std::string meminfo_data;
if (!ReadFileToStringNonBlocking(meminfo_file, &meminfo_data)) {
DLOG(WARNING) << "Failed to open " << meminfo_file.value();
return false;
}
if (!ParseProcMeminfo(meminfo_data, meminfo)) {
DLOG(WARNING) << "Failed to parse " << meminfo_file.value();
return false;
}
return true;
}
Value::Dict VmStatInfo::ToDict() const {
Value::Dict res;
// TODO(crbug.com/40228085): Make base::Value able to hold uint64_t and remove
// casts below.
res.Set("pswpin", static_cast<int>(pswpin));
res.Set("pswpout", static_cast<int>(pswpout));
res.Set("pgmajfault", static_cast<int>(pgmajfault));
return res;
}
bool GetVmStatInfo(VmStatInfo* vmstat) {
// Synchronously reading files in /proc is safe.
ScopedAllowBlockingForProcessMetrics allow_blocking;
FilePath vmstat_file("/proc/vmstat");
std::string vmstat_data;
if (!ReadFileToStringNonBlocking(vmstat_file, &vmstat_data)) {
DLOG(WARNING) << "Failed to open " << vmstat_file.value();
return false;
}
if (!ParseProcVmstat(vmstat_data, vmstat)) {
DLOG(WARNING) << "Failed to parse " << vmstat_file.value();
return false;
}
return true;
}
SystemDiskInfo::SystemDiskInfo() {
reads = 0;
reads_merged = 0;
sectors_read = 0;
read_time = 0;
writes = 0;
writes_merged = 0;
sectors_written = 0;
write_time = 0;
io = 0;
io_time = 0;
weighted_io_time = 0;
}
SystemDiskInfo::SystemDiskInfo(const SystemDiskInfo&) = default;
SystemDiskInfo& SystemDiskInfo::operator=(const SystemDiskInfo&) = default;
Value::Dict SystemDiskInfo::ToDict() const {
Value::Dict res;
// Write out uint64_t variables as doubles.
// Note: this may discard some precision, but for JS there's no other option.
res.Set("reads", static_cast<double>(reads));
res.Set("reads_merged", static_cast<double>(reads_merged));
res.Set("sectors_read", static_cast<double>(sectors_read));
res.Set("read_time", static_cast<double>(read_time));
res.Set("writes", static_cast<double>(writes));
res.Set("writes_merged", static_cast<double>(writes_merged));
res.Set("sectors_written", static_cast<double>(sectors_written));
res.Set("write_time", static_cast<double>(write_time));
res.Set("io", static_cast<double>(io));
res.Set("io_time", static_cast<double>(io_time));
res.Set("weighted_io_time", static_cast<double>(weighted_io_time));
return res;
}
bool IsValidDiskName(std::string_view candidate) {
if (candidate.length() < 3)
return false;
if (candidate[1] == 'd' &&
(candidate[0] == 'h' || candidate[0] == 's' || candidate[0] == 'v')) {
// [hsv]d[a-z]+ case
for (size_t i = 2; i < candidate.length(); ++i) {
if (!absl::ascii_islower(static_cast<unsigned char>(candidate[i]))) {
return false;
}
}
return true;
}
const char kMMCName[] = "mmcblk";
if (!StartsWith(candidate, kMMCName))
return false;
// mmcblk[0-9]+ case
for (size_t i = strlen(kMMCName); i < candidate.length(); ++i) {
if (!absl::ascii_isdigit(static_cast<unsigned char>(candidate[i]))) {
return false;
}
}
return true;
}
bool GetSystemDiskInfo(SystemDiskInfo* diskinfo) {
// Synchronously reading files in /proc does not hit the disk.
ScopedAllowBlockingForProcessMetrics allow_blocking;
FilePath diskinfo_file("/proc/diskstats");
std::string diskinfo_data;
if (!ReadFileToStringNonBlocking(diskinfo_file, &diskinfo_data)) {
DLOG(WARNING) << "Failed to open " << diskinfo_file.value();
return false;
}
std::vector<std::string_view> diskinfo_lines = SplitStringPiece(
diskinfo_data, "\n", KEEP_WHITESPACE, SPLIT_WANT_NONEMPTY);
if (diskinfo_lines.empty()) {
DLOG(WARNING) << "No lines found";
return false;
}
diskinfo->reads = 0;
diskinfo->reads_merged = 0;
diskinfo->sectors_read = 0;
diskinfo->read_time = 0;
diskinfo->writes = 0;
diskinfo->writes_merged = 0;
diskinfo->sectors_written = 0;
diskinfo->write_time = 0;
diskinfo->io = 0;
diskinfo->io_time = 0;
diskinfo->weighted_io_time = 0;
uint64_t reads = 0;
uint64_t reads_merged = 0;
uint64_t sectors_read = 0;
uint64_t read_time = 0;
uint64_t writes = 0;
uint64_t writes_merged = 0;
uint64_t sectors_written = 0;
uint64_t write_time = 0;
uint64_t io = 0;
uint64_t io_time = 0;
uint64_t weighted_io_time = 0;
for (std::string_view line : diskinfo_lines) {
std::vector<std::string_view> disk_fields = SplitStringPiece(
line, kWhitespaceASCII, TRIM_WHITESPACE, SPLIT_WANT_NONEMPTY);
// Fields may have overflowed and reset to zero.
if (!IsValidDiskName(disk_fields[kDiskDriveName]))
continue;
StringToUint64(disk_fields[kDiskReads], &reads);
StringToUint64(disk_fields[kDiskReadsMerged], &reads_merged);
StringToUint64(disk_fields[kDiskSectorsRead], §ors_read);
StringToUint64(disk_fields[kDiskReadTime], &read_time);
StringToUint64(disk_fields[kDiskWrites], &writes);
StringToUint64(disk_fields[kDiskWritesMerged], &writes_merged);
StringToUint64(disk_fields[kDiskSectorsWritten], §ors_written);
StringToUint64(disk_fields[kDiskWriteTime], &write_time);
StringToUint64(disk_fields[kDiskIO], &io);
StringToUint64(disk_fields[kDiskIOTime], &io_time);
StringToUint64(disk_fields[kDiskWeightedIOTime], &weighted_io_time);
diskinfo->reads += reads;
diskinfo->reads_merged += reads_merged;
diskinfo->sectors_read += sectors_read;
diskinfo->read_time += read_time;
diskinfo->writes += writes;
diskinfo->writes_merged += writes_merged;
diskinfo->sectors_written += sectors_written;
diskinfo->write_time += write_time;
diskinfo->io += io;
diskinfo->io_time += io_time;
diskinfo->weighted_io_time += weighted_io_time;
}
return true;
}
TimeDelta GetUserCpuTimeSinceBoot() {
return internal::GetUserCpuTimeSinceBoot();
}
#if BUILDFLAG(IS_CHROMEOS)
Value::Dict SwapInfo::ToDict() const {
Value::Dict res;
// Write out uint64_t variables as doubles.
// Note: this may discard some precision, but for JS there's no other option.
res.Set("num_reads", static_cast<double>(num_reads));
res.Set("num_writes", static_cast<double>(num_writes));
res.Set("orig_data_size", static_cast<double>(orig_data_size));
res.Set("compr_data_size", static_cast<double>(compr_data_size));
res.Set("mem_used_total", static_cast<double>(mem_used_total));
double ratio = compr_data_size ? static_cast<double>(orig_data_size) /
static_cast<double>(compr_data_size)
: 0;
res.Set("compression_ratio", ratio);
return res;
}
Value::Dict GraphicsMemoryInfoKB::ToDict() const {
Value::Dict res;
res.Set("gpu_objects", gpu_objects);
res.Set("gpu_memory_size", static_cast<double>(gpu_memory_size));
return res;
}
bool ParseZramMmStat(std::string_view mm_stat_data, SwapInfo* swap_info) {
// There are 7 columns in /sys/block/zram0/mm_stat,
// split by several spaces. The first three columns
// are orig_data_size, compr_data_size and mem_used_total.
// Example:
// 17715200 5008166 566062 0 1225715712 127 183842
//
// For more details:
// https://www.kernel.org/doc/Documentation/blockdev/zram.txt
std::vector<std::string_view> tokens = SplitStringPiece(
mm_stat_data, kWhitespaceASCII, TRIM_WHITESPACE, SPLIT_WANT_NONEMPTY);
if (tokens.size() < 7) {
DLOG(WARNING) << "zram mm_stat: tokens: " << tokens.size()
<< " malformed line: " << mm_stat_data;
return false;
}
if (!StringToUint64(tokens[0], &swap_info->orig_data_size))
return false;
if (!StringToUint64(tokens[1], &swap_info->compr_data_size))
return false;
if (!StringToUint64(tokens[2], &swap_info->mem_used_total))
return false;
return true;
}
bool ParseZramStat(std::string_view stat_data, SwapInfo* swap_info) {
// There are 11 columns in /sys/block/zram0/stat,
// split by several spaces. The first column is read I/Os
// and fifth column is write I/Os.
// Example:
// 299 0 2392 0 1 0 8 0 0 0 0
//
// For more details:
// https://www.kernel.org/doc/Documentation/blockdev/zram.txt
std::vector<std::string_view> tokens = SplitStringPiece(
stat_data, kWhitespaceASCII, TRIM_WHITESPACE, SPLIT_WANT_NONEMPTY);
if (tokens.size() < 11) {
DLOG(WARNING) << "zram stat: tokens: " << tokens.size()
<< " malformed line: " << stat_data;
return false;
}
if (!StringToUint64(tokens[0], &swap_info->num_reads))
return false;
if (!StringToUint64(tokens[4], &swap_info->num_writes))
return false;
return true;
}
namespace {
bool IgnoreZramFirstPage(uint64_t orig_data_size, SwapInfo* swap_info) {
if (orig_data_size <= 4096) {
// A single page is compressed at startup, and has a high compression
// ratio. Ignore this as it doesn't indicate any real swapping.
swap_info->orig_data_size = 0;
swap_info->num_reads = 0;
swap_info->num_writes = 0;
swap_info->compr_data_size = 0;
swap_info->mem_used_total = 0;
return true;
}
return false;
}
void ParseZramPath(SwapInfo* swap_info) {
FilePath zram_path("/sys/block/zram0");
uint64_t orig_data_size =
ReadFileToUint64(zram_path.Append("orig_data_size"));
if (IgnoreZramFirstPage(orig_data_size, swap_info))
return;
swap_info->orig_data_size = orig_data_size;
swap_info->num_reads = ReadFileToUint64(zram_path.Append("num_reads"));
swap_info->num_writes = ReadFileToUint64(zram_path.Append("num_writes"));
swap_info->compr_data_size =
ReadFileToUint64(zram_path.Append("compr_data_size"));
swap_info->mem_used_total =
ReadFileToUint64(zram_path.Append("mem_used_total"));
}
bool GetSwapInfoImpl(SwapInfo* swap_info) {
// Synchronously reading files in /sys/block/zram0 does not hit the disk.
ScopedAllowBlockingForProcessMetrics allow_blocking;
// Since ZRAM update, it shows the usage data in different places.
// If file "/sys/block/zram0/mm_stat" exists, use the new way, otherwise,
// use the old way.
static std::optional<bool> use_new_zram_interface;
FilePath zram_mm_stat_file("/sys/block/zram0/mm_stat");
if (!use_new_zram_interface.has_value()) {
use_new_zram_interface = PathExists(zram_mm_stat_file);
}
if (!use_new_zram_interface.value()) {
ParseZramPath(swap_info);
return true;
}
std::string mm_stat_data;
if (!ReadFileToStringNonBlocking(zram_mm_stat_file, &mm_stat_data)) {
DLOG(WARNING) << "Failed to open " << zram_mm_stat_file.value();
return false;
}
if (!ParseZramMmStat(mm_stat_data, swap_info)) {
DLOG(WARNING) << "Failed to parse " << zram_mm_stat_file.value();
return false;
}
if (IgnoreZramFirstPage(swap_info->orig_data_size, swap_info))
return true;
FilePath zram_stat_file("/sys/block/zram0/stat");
std::string stat_data;
if (!ReadFileToStringNonBlocking(zram_stat_file, &stat_data)) {
DLOG(WARNING) << "Failed to open " << zram_stat_file.value();
return false;
}
if (!ParseZramStat(stat_data, swap_info)) {
DLOG(WARNING) << "Failed to parse " << zram_stat_file.value();
return false;
}
return true;
}
} // namespace
bool GetSwapInfo(SwapInfo* swap_info) {
if (!GetSwapInfoImpl(swap_info)) {
*swap_info = SwapInfo();
return false;
}
return true;
}
namespace {
size_t ParseSize(const std::string& value) {
size_t pos = value.find(' ');
std::string base = value.substr(0, pos);
std::string units = value.substr(pos + 1);
size_t ret = 0;
base::StringToSizeT(base, &ret);
if (units == "KiB") {
ret *= 1024;
} else if (units == "MiB") {
ret *= 1024 * 1024;
}
return ret;
}
struct DrmFdInfo {
size_t memory_total;
size_t memory_shared;
};
void GetFdInfoFromPid(pid_t pid,
std::map<unsigned int, struct DrmFdInfo>& fdinfo_table) {
const FilePath pid_path =
FilePath("/proc").AppendASCII(base::NumberToString(pid));
const FilePath fd_path = pid_path.AppendASCII("fd");
DirReaderPosix dir_reader(fd_path.value().c_str());
if (!dir_reader.IsValid()) {
return;
}
for (; dir_reader.Next();) {
const char* name = dir_reader.name();
if (strcmp(name, ".") == 0 || strcmp(name, "..") == 0) {
continue;
}
struct stat stat;
int err = fstatat(dir_reader.fd(), name, &stat, 0);
if (err) {
continue;
}
/* Skip fd's that are not drm device files: */
if (!S_ISCHR(stat.st_mode) || major(stat.st_rdev) != 226) {
continue;
}
const FilePath fdinfo_path =
pid_path.AppendASCII("fdinfo").AppendASCII(name);
std::string fdinfo_data;
if (!ReadFileToStringNonBlocking(fdinfo_path, &fdinfo_data)) {
continue;
}
std::stringstream ss(fdinfo_data);
std::string line;
struct DrmFdInfo fdinfo = {};
unsigned int client_id = 0;
while (std::getline(ss, line, '\n')) {
size_t pos = line.find(':');
if (pos == std::string::npos) {
continue;
}
std::string key = line.substr(0, pos);
std::string value = line.substr(pos + 1);
/* trim leading space from the value: */
value = value.substr(value.find_first_not_of(" \t"));
if (key == "drm-client-id") {
base::StringToUint(value, &client_id);
} else if (key == "drm-total-memory") {
fdinfo.memory_total = ParseSize(value);
} else if (key == "drm-shared-memory") {
fdinfo.memory_shared = ParseSize(value);
}
}
/* The compositor only imports buffers.. so shared==total. Skip this
* as it is not interesting:
*/
if (client_id && fdinfo.memory_shared != fdinfo.memory_total) {
fdinfo_table[client_id] = fdinfo;
}
}
}
bool GetGraphicsMemoryInfoFdInfo(GraphicsMemoryInfoKB* gpu_meminfo) {
// First parse clients file to get the tgid's of processes using the GPU
// so that we don't need to parse *all* processes:
const FilePath clients_path("/run/debugfs_gpu/clients");
std::string clients_data;
std::map<unsigned int, struct DrmFdInfo> fdinfo_table;
if (!ReadFileToStringNonBlocking(clients_path, &clients_data)) {
return false;
}
// This has been the format since kernel commit:
// 50d47cb318ed ("drm: Include task->name and master status in debugfs clients
// info")
//
// comm pid dev master auth uid magic
// %20s %5d %3d %c %c %5d %10u\n
//
// In practice comm rarely contains spaces, but it can in fact contain
// any character. So we parse based on the 20 char limit (plus one
// space):
std::istringstream clients_stream(clients_data);
std::string line;
while (std::getline(clients_stream, line)) {
pid_t pid;
int num_res = sscanf(&line.c_str()[21], "%5d", &pid);
if (num_res == 1) {
GetFdInfoFromPid(pid, fdinfo_table);
}
}
if (fdinfo_table.size() == 0) {
return false;
}
gpu_meminfo->gpu_memory_size = 0;
for (auto const& p : fdinfo_table) {
gpu_meminfo->gpu_memory_size += p.second.memory_total;
/* TODO it would be nice to also be able to report shared */
}
return true;
}
} // namespace
bool GetGraphicsMemoryInfo(GraphicsMemoryInfoKB* gpu_meminfo) {
if (GetGraphicsMemoryInfoFdInfo(gpu_meminfo)) {
return true;
}
#if defined(ARCH_CPU_X86_FAMILY)
// Reading i915_gem_objects on intel platform with kernel 5.4 is slow and is
// prohibited.
// TODO(b/170397975): Update if i915_gem_objects reading time is improved.
static bool is_newer_kernel =
base::StartsWith(base::SysInfo::KernelVersion(), "5.");
static bool is_intel_cpu = base::CPU().vendor_name() == "GenuineIntel";
if (is_newer_kernel && is_intel_cpu)
return false;
#endif
#if defined(ARCH_CPU_ARM_FAMILY)
const FilePath geminfo_path("/run/debugfs_gpu/exynos_gem_objects");
#else
const FilePath geminfo_path("/run/debugfs_gpu/i915_gem_objects");
#endif
std::string geminfo_data;
gpu_meminfo->gpu_objects = -1;
gpu_meminfo->gpu_memory_size = -1;
if (ReadFileToStringNonBlocking(geminfo_path, &geminfo_data)) {
int gpu_objects = -1;
int64_t gpu_memory_size = -1;
int num_res = sscanf(geminfo_data.c_str(), "%d objects, %" SCNd64 " bytes",
&gpu_objects, &gpu_memory_size);
if (num_res == 2) {
gpu_meminfo->gpu_objects = gpu_objects;
gpu_meminfo->gpu_memory_size = gpu_memory_size;
}
}
#if defined(ARCH_CPU_ARM_FAMILY)
// Incorporate Mali graphics memory if present.
FilePath mali_memory_file("/sys/class/misc/mali0/device/memory");
std::string mali_memory_data;
if (ReadFileToStringNonBlocking(mali_memory_file, &mali_memory_data)) {
int64_t mali_size = -1;
int num_res =
sscanf(mali_memory_data.c_str(), "%" SCNd64 " bytes", &mali_size);
if (num_res == 1)
gpu_meminfo->gpu_memory_size += mali_size;
}
#endif // defined(ARCH_CPU_ARM_FAMILY)
return gpu_meminfo->gpu_memory_size != -1;
}
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_AIX)
int ProcessMetrics::GetIdleWakeupsPerSecond() {
uint64_t num_switches;
static const char kSwitchStat[] = "voluntary_ctxt_switches";
return internal::ReadProcStatusAndGetFieldAsUint64(process_, kSwitchStat,
&num_switches)
? CalculateIdleWakeupsPerSecond(num_switches)
: 0;
}
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) || BUILDFLAG(IS_AIX)
} // namespace base