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
base / process / process_linux.cc [blame]
// Copyright 2011 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.h"
#include <errno.h>
#include <linux/magic.h>
#include <sys/resource.h>
#include <sys/vfs.h>
#include <cstring>
#include <string_view>
#include "base/check.h"
#include "base/files/file_util.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/notreached.h"
#include "base/posix/can_lower_nice_to.h"
#include "base/process/internal_linux.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
#include "base/strings/stringprintf.h"
#include "base/threading/platform_thread.h"
#include "base/threading/platform_thread_internal_posix.h"
#include "base/threading/thread_restrictions.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "base/feature_list.h"
#include "base/files/file_enumerator.h"
#include "base/files/file_path.h"
#include "base/functional/bind.h"
#include "base/process/process_handle.h"
#include "base/process/process_priority_delegate.h"
#include "base/strings/strcat.h"
#include "base/strings/string_util.h"
#include "base/task/thread_pool.h"
#include "base/unguessable_token.h"
#endif // BUILDFLAG(IS_CHROMEOS)
namespace base {
#if BUILDFLAG(IS_CHROMEOS)
BASE_FEATURE(kOneGroupPerRenderer,
"OneGroupPerRenderer",
#if BUILDFLAG(IS_CHROMEOS_LACROS)
FEATURE_ENABLED_BY_DEFAULT);
#else
FEATURE_DISABLED_BY_DEFAULT);
#endif // BUILDFLAG(IS_CHROMEOS_LACROS)
#endif // BUILDFLAG(IS_CHROMEOS)
namespace {
const int kForegroundPriority = 0;
#if BUILDFLAG(IS_CHROMEOS)
ProcessPriorityDelegate* g_process_priority_delegate = nullptr;
// We are more aggressive in our lowering of background process priority
// for chromeos as we have much more control over other processes running
// on the machine.
//
// TODO(davemoore) Refactor this by adding support for higher levels to set
// the foregrounding / backgrounding process so we don't have to keep
// chrome / chromeos specific logic here.
const int kBackgroundPriority = 19;
const char kControlPath[] = "/sys/fs/cgroup/cpu%s/cgroup.procs";
const char kFullRendererCgroupRoot[] = "/sys/fs/cgroup/cpu/chrome_renderers";
const char kForeground[] = "/chrome_renderers/foreground";
const char kBackground[] = "/chrome_renderers/background";
const char kProcPath[] = "/proc/%d/cgroup";
const char kUclampMinFile[] = "cpu.uclamp.min";
const char kUclampMaxFile[] = "cpu.uclamp.max";
constexpr int kCgroupDeleteRetries = 3;
constexpr TimeDelta kCgroupDeleteRetryTime(Seconds(1));
#if BUILDFLAG(IS_CHROMEOS_LACROS)
const char kCgroupPrefix[] = "l-";
#elif BUILDFLAG(IS_CHROMEOS_ASH)
const char kCgroupPrefix[] = "a-";
#endif
bool PathIsCGroupFileSystem(const FilePath& path) {
struct statfs statfs_buf;
if (statfs(path.value().c_str(), &statfs_buf) < 0)
return false;
return statfs_buf.f_type == CGROUP_SUPER_MAGIC;
}
struct CGroups {
// Check for cgroups files. ChromeOS supports these by default. It creates
// a cgroup mount in /sys/fs/cgroup and then configures two cpu task groups,
// one contains at most a single foreground renderer and the other contains
// all background renderers. This allows us to limit the impact of background
// renderers on foreground ones to a greater level than simple renicing.
bool enabled;
FilePath foreground_file;
FilePath background_file;
// A unique token for this instance of the browser.
std::string group_prefix_token;
// UCLAMP settings for the foreground cgroups.
std::string uclamp_min;
std::string uclamp_max;
CGroups() {
foreground_file = FilePath(StringPrintf(kControlPath, kForeground));
background_file = FilePath(StringPrintf(kControlPath, kBackground));
enabled = PathIsCGroupFileSystem(foreground_file) &&
PathIsCGroupFileSystem(background_file);
if (!enabled || !FeatureList::IsEnabled(kOneGroupPerRenderer)) {
return;
}
// Generate a unique token for the full browser process
group_prefix_token =
StrCat({kCgroupPrefix, UnguessableToken::Create().ToString(), "-"});
// Reads the ULCAMP settings from the foreground cgroup that will be used
// for each renderer's cgroup.
FilePath foreground_path = foreground_file.DirName();
ReadFileToString(foreground_path.Append(kUclampMinFile), &uclamp_min);
ReadFileToString(foreground_path.Append(kUclampMaxFile), &uclamp_max);
}
// Returns the full path to a the cgroup dir of a process using
// the supplied token.
static FilePath GetForegroundCgroupDir(const std::string& token) {
// Get individualized cgroup if the feature is enabled
std::string cgroup_path_str;
StrAppend(&cgroup_path_str, {kFullRendererCgroupRoot, "/", token});
return FilePath(cgroup_path_str);
}
// Returns the path to the cgroup.procs file of the foreground cgroup.
static FilePath GetForegroundCgroupFile(const std::string& token) {
// Processes with an empty token use the default foreground cgroup.
if (token.empty()) {
return CGroups::Get().foreground_file;
}
FilePath cgroup_path = GetForegroundCgroupDir(token);
return cgroup_path.Append("cgroup.procs");
}
static CGroups& Get() {
static auto& groups = *new CGroups;
return groups;
}
};
// Returns true if the 'OneGroupPerRenderer' feature is enabled. The feature
// is enabled if the kOneGroupPerRenderer feature flag is enabled and the
// system supports the chrome cgroups. Will block if this is the first call
// that will read the cgroup configs.
bool OneGroupPerRendererEnabled() {
return FeatureList::IsEnabled(kOneGroupPerRenderer) && CGroups::Get().enabled;
}
#else
const int kBackgroundPriority = 5;
#endif // BUILDFLAG(IS_CHROMEOS)
} // namespace
Time Process::CreationTime() const {
int64_t start_ticks = is_current()
? internal::ReadProcSelfStatsAndGetFieldAsInt64(
internal::VM_STARTTIME)
: internal::ReadProcStatsAndGetFieldAsInt64(
Pid(), internal::VM_STARTTIME);
if (!start_ticks)
return Time();
TimeDelta start_offset = internal::ClockTicksToTimeDelta(start_ticks);
Time boot_time = internal::GetBootTime();
if (boot_time.is_null())
return Time();
return Time(boot_time + start_offset);
}
// static
bool Process::CanSetPriority() {
#if BUILDFLAG(IS_CHROMEOS)
if (g_process_priority_delegate) {
return g_process_priority_delegate->CanSetProcessPriority();
}
if (CGroups::Get().enabled)
return true;
#endif // BUILDFLAG(IS_CHROMEOS)
static const bool can_reraise_priority =
internal::CanLowerNiceTo(kForegroundPriority);
return can_reraise_priority;
}
Process::Priority Process::GetPriority() const {
DCHECK(IsValid());
#if BUILDFLAG(IS_CHROMEOS)
if (g_process_priority_delegate) {
return g_process_priority_delegate->GetProcessPriority(process_);
}
if (CGroups::Get().enabled) {
// Used to allow reading the process priority from proc on thread launch.
ScopedAllowBlocking scoped_allow_blocking;
std::string proc;
if (ReadFileToString(FilePath(StringPrintf(kProcPath, process_)), &proc)) {
return GetProcessPriorityCGroup(proc);
}
return Priority::kUserBlocking;
}
#endif // BUILDFLAG(IS_CHROMEOS)
return GetOSPriority() == kBackgroundPriority ? Priority::kBestEffort
: Priority::kUserBlocking;
}
bool Process::SetPriority(Priority priority) {
DCHECK(IsValid());
#if BUILDFLAG(IS_CHROMEOS)
if (g_process_priority_delegate) {
return g_process_priority_delegate->SetProcessPriority(process_, priority);
}
// Go through all the threads for a process and set it as [un]backgrounded.
// Threads that are created after this call will also be [un]backgrounded by
// detecting that the main thread of the process has been [un]backgrounded.
// Should not be called concurrently with other functions
// like SetThreadType().
if (PlatformThreadChromeOS::IsThreadsBgFeatureEnabled()) {
PlatformThreadChromeOS::DcheckCrossProcessThreadPrioritySequence();
int process_id = process_;
bool background = priority == Priority::kBestEffort;
internal::ForEachProcessTask(
process_,
[process_id, background](PlatformThreadId tid, const FilePath& path) {
PlatformThreadChromeOS::SetThreadBackgrounded(process_id, tid,
background);
});
}
if (CGroups::Get().enabled) {
std::string pid = NumberToString(process_);
const FilePath file =
priority == Priority::kBestEffort
? CGroups::Get().background_file
: CGroups::Get().GetForegroundCgroupFile(unique_token_);
return WriteFile(file, pid);
}
#endif // BUILDFLAG(IS_CHROMEOS)
if (!CanSetPriority()) {
return false;
}
int priority_value = priority == Priority::kBestEffort ? kBackgroundPriority
: kForegroundPriority;
int result =
setpriority(PRIO_PROCESS, static_cast<id_t>(process_), priority_value);
DPCHECK(result == 0);
return result == 0;
}
#if BUILDFLAG(IS_CHROMEOS)
Process::Priority GetProcessPriorityCGroup(std::string_view cgroup_contents) {
// The process can be part of multiple control groups, and for each cgroup
// hierarchy there's an entry in the file. We look for a control group
// named "/chrome_renderers/background" to determine if the process is
// backgrounded. crbug.com/548818.
std::vector<std::string_view> lines = SplitStringPiece(
cgroup_contents, "\n", TRIM_WHITESPACE, SPLIT_WANT_NONEMPTY);
for (const auto& line : lines) {
std::vector<std::string_view> fields =
SplitStringPiece(line, ":", TRIM_WHITESPACE, SPLIT_WANT_ALL);
if (fields.size() != 3U) {
NOTREACHED();
}
if (fields[2] == kBackground)
return Process::Priority::kBestEffort;
}
return Process::Priority::kUserBlocking;
}
#endif // BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_CHROMEOS_ASH)
// Reads /proc/<pid>/status and returns the PID in its PID namespace.
// If the process is not in a PID namespace or /proc/<pid>/status does not
// report NSpid, kNullProcessId is returned.
ProcessId Process::GetPidInNamespace() const {
StringPairs pairs;
if (!internal::ReadProcFileToTrimmedStringPairs(process_, "status", &pairs)) {
return kNullProcessId;
}
for (const auto& pair : pairs) {
const std::string& key = pair.first;
const std::string& value_str = pair.second;
if (key == "NSpid") {
std::vector<std::string_view> split_value_str = SplitStringPiece(
value_str, "\t", TRIM_WHITESPACE, SPLIT_WANT_NONEMPTY);
if (split_value_str.size() <= 1) {
return kNullProcessId;
}
int value;
// The last value in the list is the PID in the namespace.
if (!StringToInt(split_value_str.back(), &value)) {
NOTREACHED();
}
return value;
}
}
return kNullProcessId;
}
#endif // BUILDFLAG(IS_CHROMEOS_ASH)
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
bool Process::IsSeccompSandboxed() {
uint64_t seccomp_value = 0;
if (!internal::ReadProcStatusAndGetFieldAsUint64(process_, "Seccomp",
&seccomp_value)) {
return false;
}
return seccomp_value > 0;
}
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
#if BUILDFLAG(IS_CHROMEOS)
// static
void Process::SetProcessPriorityDelegate(ProcessPriorityDelegate* delegate) {
// A component cannot override a delegate set by another component, thus
// disallow setting a delegate when one already exists.
DCHECK_NE(!!g_process_priority_delegate, !!delegate);
g_process_priority_delegate = delegate;
}
// static
bool Process::OneGroupPerRendererEnabledForTesting() {
return OneGroupPerRendererEnabled();
}
void Process::InitializePriority() {
if (g_process_priority_delegate) {
g_process_priority_delegate->InitializeProcessPriority(process_);
return;
}
if (!OneGroupPerRendererEnabled() || !IsValid() || !unique_token_.empty()) {
return;
}
// On Chrome OS, each renderer runs in its own cgroup when running in the
// foreground. After process creation the cgroup is created using a
// unique token.
// The token has the following format:
// {cgroup_prefix}{UnguessableToken}
// The cgroup prefix is to distinguish ash from lacros tokens for stale
// cgroup cleanup.
unique_token_ = StrCat({CGroups::Get().group_prefix_token,
UnguessableToken::Create().ToString()});
FilePath cgroup_path = CGroups::Get().GetForegroundCgroupDir(unique_token_);
// Note that CreateDirectoryAndGetError() does not fail if the directory
// already exits.
if (!CreateDirectoryAndGetError(cgroup_path, nullptr)) {
// If creating the directory fails, fall back to use the foreground group.
int saved_errno = errno;
LOG(ERROR) << "Failed to create cgroup, falling back to foreground"
<< ", cgroup=" << cgroup_path
<< ", errno=" << strerror(saved_errno);
unique_token_.clear();
return;
}
if (!CGroups::Get().uclamp_min.empty() &&
!WriteFile(cgroup_path.Append(kUclampMinFile),
CGroups::Get().uclamp_min)) {
LOG(ERROR) << "Failed to write uclamp min file, cgroup_path="
<< cgroup_path;
}
if (!CGroups::Get().uclamp_min.empty() &&
!WriteFile(cgroup_path.Append(kUclampMaxFile),
CGroups::Get().uclamp_max)) {
LOG(ERROR) << "Failed to write uclamp max file, cgroup_path="
<< cgroup_path;
}
}
void Process::ForgetPriority() {
if (g_process_priority_delegate) {
g_process_priority_delegate->ForgetProcessPriority(process_);
return;
}
}
// static
void Process::CleanUpProcessScheduled(Process process, int remaining_retries) {
process.CleanUpProcess(remaining_retries);
}
void Process::CleanUpProcessAsync() const {
if (!FeatureList::IsEnabled(kOneGroupPerRenderer) || unique_token_.empty()) {
return;
}
ThreadPool::PostTask(FROM_HERE, {MayBlock(), TaskPriority::BEST_EFFORT},
BindOnce(&Process::CleanUpProcessScheduled, Duplicate(),
kCgroupDeleteRetries));
}
void Process::CleanUpProcess(int remaining_retries) const {
if (!OneGroupPerRendererEnabled() || unique_token_.empty()) {
return;
}
// Try to delete the cgroup
// TODO(crbug.com/40224348): We can use notify_on_release to automoatically
// delete the cgroup when the process has left the cgroup.
FilePath cgroup = CGroups::Get().GetForegroundCgroupDir(unique_token_);
if (!DeleteFile(cgroup)) {
auto saved_errno = errno;
LOG(ERROR) << "Failed to delete cgroup " << cgroup
<< ", errno=" << strerror(saved_errno);
// If the delete failed, then the process is still potentially in the
// cgroup. Move the process to background and schedule a callback to try
// again.
if (remaining_retries > 0) {
std::string pidstr = NumberToString(process_);
if (!WriteFile(CGroups::Get().background_file, pidstr)) {
// Failed to move the process, LOG a warning but try again.
saved_errno = errno;
LOG(WARNING) << "Failed to move the process to background"
<< ", pid=" << pidstr
<< ", errno=" << strerror(saved_errno);
}
ThreadPool::PostDelayedTask(FROM_HERE,
{MayBlock(), TaskPriority::BEST_EFFORT},
BindOnce(&Process::CleanUpProcessScheduled,
Duplicate(), remaining_retries - 1),
kCgroupDeleteRetryTime);
}
}
}
// static
void Process::CleanUpStaleProcessStates() {
if (!OneGroupPerRendererEnabled()) {
return;
}
FileEnumerator traversal(FilePath(kFullRendererCgroupRoot), false,
FileEnumerator::DIRECTORIES);
for (FilePath path = traversal.Next(); !path.empty();
path = traversal.Next()) {
std::string dirname = path.BaseName().value();
if (dirname == FilePath(kForeground).BaseName().value() ||
dirname == FilePath(kBackground).BaseName().value()) {
continue;
}
if (!StartsWith(dirname, kCgroupPrefix) ||
StartsWith(dirname, CGroups::Get().group_prefix_token)) {
continue;
}
if (!DeleteFile(path)) {
auto saved_errno = errno;
LOG(ERROR) << "Failed to delete " << path
<< ", errno=" << strerror(saved_errno);
}
}
}
#endif // BUILDFLAG(IS_CHROMEOS)
} // namespace base