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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Description: Linux specific functionality. Other Linux-derivatives layer on
// top of this translation unit.
#include "base/threading/platform_thread.h"
#include <errno.h>
#include <pthread.h>
#include <sched.h>
#include <stddef.h>
#include <sys/prctl.h>
#include <sys/resource.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include <atomic>
#include <cstdint>
#include <optional>
#include "base/base_switches.h"
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/feature_list.h"
#include "base/files/file_util.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
#include "base/metrics/field_trial_params.h"
#include "base/no_destructor.h"
#include "base/notreached.h"
#include "base/process/internal_linux.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/threading/platform_thread_internal_posix.h"
#include "base/threading/thread_id_name_manager.h"
#include "base/threading/thread_type_delegate.h"
#include "build/build_config.h"
namespace base {
namespace {
ThreadTypeDelegate* g_thread_type_delegate = nullptr;
const FilePath::CharType kCgroupDirectory[] =
FILE_PATH_LITERAL("/sys/fs/cgroup");
FilePath ThreadTypeToCgroupDirectory(const FilePath& cgroup_filepath,
ThreadType thread_type) {
switch (thread_type) {
case ThreadType::kBackground:
case ThreadType::kUtility:
return cgroup_filepath.Append(FILE_PATH_LITERAL("non-urgent"));
case ThreadType::kDefault:
return cgroup_filepath;
case ThreadType::kDisplayCritical:
case ThreadType::kInteractive:
case ThreadType::kRealtimeAudio:
return cgroup_filepath.Append(FILE_PATH_LITERAL("urgent"));
}
NOTREACHED();
}
void SetThreadCgroup(PlatformThreadId thread_id,
const FilePath& cgroup_directory) {
FilePath tasks_filepath = cgroup_directory.Append(FILE_PATH_LITERAL("tasks"));
std::string tid = NumberToString(thread_id.raw());
if (!WriteFile(tasks_filepath, as_byte_span(tid))) {
DVLOG(1) << "Failed to add " << tid << " to " << tasks_filepath.value();
}
}
void SetThreadCgroupForThreadType(PlatformThreadId thread_id,
const FilePath& cgroup_filepath,
ThreadType thread_type) {
// Append "chrome" suffix.
FilePath cgroup_directory = ThreadTypeToCgroupDirectory(
cgroup_filepath.Append(FILE_PATH_LITERAL("chrome")), thread_type);
// Silently ignore request if cgroup directory doesn't exist.
if (!DirectoryExists(cgroup_directory)) {
return;
}
SetThreadCgroup(thread_id, cgroup_directory);
}
} // namespace
namespace internal {
const ThreadPriorityToNiceValuePairForTest
kThreadPriorityToNiceValueMapForTest[7] = {
{ThreadPriorityForTest::kRealtimeAudio, -10},
{ThreadPriorityForTest::kDisplay, -8},
{ThreadPriorityForTest::kNormal, 0},
{ThreadPriorityForTest::kUtility, 2},
{ThreadPriorityForTest::kBackground, 10},
};
bool CanSetThreadTypeToRealtimeAudio() {
// Check if root
if (geteuid() == 0) {
return true;
}
// A non-zero soft-limit on RLIMIT_RTPRIO is required to be allowed to invoke
// pthread_setschedparam in SetCurrentThreadTypeForPlatform().
struct rlimit rlim;
return getrlimit(RLIMIT_RTPRIO, &rlim) != 0 && rlim.rlim_cur != 0;
}
bool SetCurrentThreadTypeForPlatform(ThreadType thread_type,
MessagePumpType pump_type_hint) {
const PlatformThreadId thread_id = PlatformThread::CurrentId();
if (g_thread_type_delegate &&
g_thread_type_delegate->HandleThreadTypeChange(thread_id, thread_type)) {
return true;
}
internal::SetThreadType(getpid(), thread_id, thread_type, IsViaIPC(false));
return true;
}
std::optional<ThreadPriorityForTest>
GetCurrentThreadPriorityForPlatformForTest() {
int maybe_sched_rr = 0;
struct sched_param maybe_realtime_prio = {0};
if (pthread_getschedparam(pthread_self(), &maybe_sched_rr,
&maybe_realtime_prio) == 0 &&
maybe_sched_rr == SCHED_RR &&
maybe_realtime_prio.sched_priority ==
PlatformThreadLinux::kRealTimeAudioPrio.sched_priority) {
return std::make_optional(ThreadPriorityForTest::kRealtimeAudio);
}
return std::nullopt;
}
} // namespace internal
// Determine if thread_id is a background thread by looking up whether
// it is in the urgent or non-urgent cpuset.
bool PlatformThreadLinux::IsThreadBackgroundedForTest(
PlatformThreadId thread_id) {
FilePath cgroup_filepath(kCgroupDirectory);
FilePath urgent_cgroup_directory =
cgroup_filepath.Append(FILE_PATH_LITERAL("cpuset"))
.Append(FILE_PATH_LITERAL("chrome"))
.Append(FILE_PATH_LITERAL("urgent"));
FilePath non_urgent_cgroup_directory =
cgroup_filepath.Append(FILE_PATH_LITERAL("cpuset"))
.Append(FILE_PATH_LITERAL("chrome"))
.Append(FILE_PATH_LITERAL("non-urgent"));
// Silently ignore request if cgroup directory doesn't exist.
if (!DirectoryExists(urgent_cgroup_directory) ||
!DirectoryExists(non_urgent_cgroup_directory)) {
return false;
}
FilePath urgent_tasks_filepath =
urgent_cgroup_directory.Append(FILE_PATH_LITERAL("tasks"));
FilePath non_urgent_tasks_filepath =
non_urgent_cgroup_directory.Append(FILE_PATH_LITERAL("tasks"));
std::string tid = NumberToString(thread_id.raw());
// Check if thread_id is in the urgent cpuset
std::string urgent_tasks;
if (!ReadFileToString(urgent_tasks_filepath, &urgent_tasks)) {
return false;
}
if (urgent_tasks.find(tid) != std::string::npos) {
return false;
}
// Check if thread_id is in the non-urgent cpuset
std::string non_urgent_tasks;
if (!ReadFileToString(non_urgent_tasks_filepath, &non_urgent_tasks)) {
return false;
}
if (non_urgent_tasks.find(tid) != std::string::npos) {
return true;
}
return false;
}
void PlatformThreadBase::SetName(const std::string& name) {
SetNameCommon(name);
// On linux we can get the thread names to show up in the debugger by setting
// the process name for the LWP. We don't want to do this for the main
// thread because that would rename the process, causing tools like killall
// to stop working.
if (PlatformThread::CurrentId().raw() == getpid()) {
return;
}
// http://0pointer.de/blog/projects/name-your-threads.html
// Set the name for the LWP (which gets truncated to 15 characters).
// Note that glibc also has a 'pthread_setname_np' api, but it may not be
// available everywhere and it's only benefit over using prctl directly is
// that it can set the name of threads other than the current thread.
int err = prctl(PR_SET_NAME, name.c_str());
// We expect EPERM failures in sandboxed processes, just ignore those.
if (err < 0 && errno != EPERM) {
DPLOG(ERROR) << "prctl(PR_SET_NAME)";
}
}
// static
void PlatformThreadLinux::SetThreadTypeDelegate(ThreadTypeDelegate* delegate) {
// A component cannot override a delegate set by another component, thus
// disallow setting a delegate when one already exists.
DCHECK(!g_thread_type_delegate || !delegate);
g_thread_type_delegate = delegate;
}
// static
void PlatformThreadLinux::SetThreadCgroupsForThreadType(
PlatformThreadId thread_id,
ThreadType thread_type) {
FilePath cgroup_filepath(kCgroupDirectory);
SetThreadCgroupForThreadType(
thread_id, cgroup_filepath.Append(FILE_PATH_LITERAL("cpuset")),
thread_type);
SetThreadCgroupForThreadType(
thread_id, cgroup_filepath.Append(FILE_PATH_LITERAL("schedtune")),
thread_type);
}
// static
void PlatformThreadLinux::SetThreadType(ProcessId process_id,
PlatformThreadId thread_id,
ThreadType thread_type,
IsViaIPC via_ipc) {
internal::SetThreadType(process_id, thread_id, thread_type, via_ipc);
}
namespace internal {
void SetThreadTypeLinux(ProcessId process_id,
PlatformThreadId thread_id,
ThreadType thread_type,
IsViaIPC via_ipc) {
PlatformThreadLinux::SetThreadCgroupsForThreadType(thread_id, thread_type);
// Some scheduler syscalls require thread ID of 0 for current thread.
// This prevents us from requiring to translate the NS TID to
// global TID.
PlatformThreadId syscall_tid = thread_id;
if (thread_id == PlatformThreadLinux::CurrentId()) {
syscall_tid = kInvalidThreadId;
}
if (thread_type == ThreadType::kRealtimeAudio) {
if (sched_setscheduler(syscall_tid.raw(), SCHED_RR,
&PlatformThreadLinux::kRealTimeAudioPrio) == 0) {
return;
}
// If failed to set to RT, fallback to setpriority to set nice value.
DPLOG(ERROR) << "Failed to set realtime priority for thread " << thread_id;
}
const int nice_setting = ThreadTypeToNiceValue(thread_type);
if (setpriority(PRIO_PROCESS, static_cast<id_t>(syscall_tid.raw()),
nice_setting)) {
DVPLOG(1) << "Failed to set nice value of thread (" << thread_id << ") to "
<< nice_setting;
}
}
int ThreadTypeToNiceValue(const ThreadType thread_type) {
switch (thread_type) {
case ThreadType::kBackground:
return 10;
case ThreadType::kUtility:
return 2;
case ThreadType::kDefault:
return 0;
case ThreadType::kDisplayCritical:
case ThreadType::kInteractive:
return -8;
case ThreadType::kRealtimeAudio:
return -10;
}
}
} // namespace internal
} // namespace base
|