2018-12-21 20:41:50 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//#define LOG_NDEBUG 0
|
|
|
|
#define LOG_TAG "libprocessgroup"
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <task_profiles.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <android-base/file.h>
|
|
|
|
#include <android-base/logging.h>
|
|
|
|
#include <android-base/stringprintf.h>
|
|
|
|
#include <android-base/threads.h>
|
|
|
|
|
|
|
|
#include <cutils/android_filesystem_config.h>
|
|
|
|
|
|
|
|
#include <json/reader.h>
|
|
|
|
#include <json/value.h>
|
|
|
|
|
2019-02-02 23:19:41 +01:00
|
|
|
// To avoid issues in sdk_mac build
|
|
|
|
#if defined(__ANDROID__)
|
|
|
|
#include <sys/prctl.h>
|
|
|
|
#endif
|
|
|
|
|
2018-12-21 20:41:50 +01:00
|
|
|
using android::base::GetThreadId;
|
|
|
|
using android::base::StringPrintf;
|
|
|
|
using android::base::unique_fd;
|
|
|
|
using android::base::WriteStringToFile;
|
|
|
|
|
|
|
|
#define TASK_PROFILE_DB_FILE "/etc/task_profiles.json"
|
2019-02-20 00:01:28 +01:00
|
|
|
#define TASK_PROFILE_DB_VENDOR_FILE "/vendor/etc/task_profiles.json"
|
2018-12-21 20:41:50 +01:00
|
|
|
|
|
|
|
bool ProfileAttribute::GetPathForTask(int tid, std::string* path) const {
|
|
|
|
std::string subgroup;
|
|
|
|
if (!controller_->GetTaskGroup(tid, &subgroup)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (path == nullptr) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (subgroup.empty()) {
|
|
|
|
*path = StringPrintf("%s/%s", controller_->path(), file_name_.c_str());
|
|
|
|
} else {
|
|
|
|
*path = StringPrintf("%s/%s/%s", controller_->path(), subgroup.c_str(), file_name_.c_str());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetClampsAction::ExecuteForProcess(uid_t, pid_t) const {
|
|
|
|
// TODO: add support when kernel supports util_clamp
|
|
|
|
LOG(WARNING) << "SetClampsAction::ExecuteForProcess is not supported";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetClampsAction::ExecuteForTask(int) const {
|
|
|
|
// TODO: add support when kernel supports util_clamp
|
|
|
|
LOG(WARNING) << "SetClampsAction::ExecuteForTask is not supported";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-02-02 23:19:41 +01:00
|
|
|
// To avoid issues in sdk_mac build
|
|
|
|
#if defined(__ANDROID__)
|
|
|
|
|
2018-12-21 20:41:50 +01:00
|
|
|
bool SetTimerSlackAction::IsTimerSlackSupported(int tid) {
|
|
|
|
auto file = StringPrintf("/proc/%d/timerslack_ns", tid);
|
|
|
|
|
|
|
|
return (access(file.c_str(), W_OK) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetTimerSlackAction::ExecuteForTask(int tid) const {
|
|
|
|
static bool sys_supports_timerslack = IsTimerSlackSupported(tid);
|
|
|
|
|
|
|
|
// v4.6+ kernels support the /proc/<tid>/timerslack_ns interface.
|
|
|
|
// TODO: once we've backported this, log if the open(2) fails.
|
|
|
|
if (sys_supports_timerslack) {
|
|
|
|
auto file = StringPrintf("/proc/%d/timerslack_ns", tid);
|
|
|
|
if (!WriteStringToFile(std::to_string(slack_), file)) {
|
2019-02-13 02:30:26 +01:00
|
|
|
if (errno == ENOENT) {
|
|
|
|
// This happens when process is already dead
|
|
|
|
return true;
|
|
|
|
}
|
2018-12-21 20:41:50 +01:00
|
|
|
PLOG(ERROR) << "set_timerslack_ns write failed";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Remove when /proc/<tid>/timerslack_ns interface is backported.
|
|
|
|
if (tid == 0 || tid == GetThreadId()) {
|
|
|
|
if (prctl(PR_SET_TIMERSLACK, slack_) == -1) {
|
|
|
|
PLOG(ERROR) << "set_timerslack_ns prctl failed";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-02-02 23:19:41 +01:00
|
|
|
#endif
|
|
|
|
|
2018-12-21 20:41:50 +01:00
|
|
|
bool SetAttributeAction::ExecuteForProcess(uid_t, pid_t pid) const {
|
|
|
|
return ExecuteForTask(pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetAttributeAction::ExecuteForTask(int tid) const {
|
|
|
|
std::string path;
|
|
|
|
|
|
|
|
if (!attribute_->GetPathForTask(tid, &path)) {
|
|
|
|
PLOG(ERROR) << "Failed to find cgroup for tid " << tid;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!WriteStringToFile(value_, path)) {
|
|
|
|
PLOG(ERROR) << "Failed to write '" << value_ << "' to " << path;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetCgroupAction::IsAppDependentPath(const std::string& path) {
|
|
|
|
return path.find("<uid>", 0) != std::string::npos || path.find("<pid>", 0) != std::string::npos;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetCgroupAction::SetCgroupAction(const CgroupController* c, const std::string& p)
|
|
|
|
: controller_(c), path_(p) {
|
2019-02-06 01:44:22 +01:00
|
|
|
#ifdef CACHE_FILE_DESCRIPTORS
|
2018-12-21 20:41:50 +01:00
|
|
|
// cache file descriptor only if path is app independent
|
|
|
|
if (IsAppDependentPath(path_)) {
|
|
|
|
// file descriptor is not cached
|
|
|
|
fd_.reset(-2);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string tasks_path = c->GetTasksFilePath(p.c_str());
|
|
|
|
|
|
|
|
if (access(tasks_path.c_str(), W_OK) != 0) {
|
|
|
|
// file is not accessible
|
|
|
|
fd_.reset(-1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
unique_fd fd(TEMP_FAILURE_RETRY(open(tasks_path.c_str(), O_WRONLY | O_CLOEXEC)));
|
|
|
|
if (fd < 0) {
|
|
|
|
PLOG(ERROR) << "Failed to cache fd '" << tasks_path << "'";
|
|
|
|
fd_.reset(-1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd_ = std::move(fd);
|
2019-02-06 01:44:22 +01:00
|
|
|
#endif
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SetCgroupAction::AddTidToCgroup(int tid, int fd) {
|
|
|
|
if (tid <= 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string value = std::to_string(tid);
|
|
|
|
|
|
|
|
if (TEMP_FAILURE_RETRY(write(fd, value.c_str(), value.length())) < 0) {
|
|
|
|
// If the thread is in the process of exiting, don't flag an error
|
|
|
|
if (errno != ESRCH) {
|
|
|
|
PLOG(ERROR) << "JoinGroup failed to write '" << value << "'; fd=" << fd;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SetCgroupAction::ExecuteForProcess(uid_t uid, pid_t pid) const {
|
2019-02-06 01:44:22 +01:00
|
|
|
#ifdef CACHE_FILE_DESCRIPTORS
|
2018-12-21 20:41:50 +01:00
|
|
|
if (fd_ >= 0) {
|
|
|
|
// fd is cached, reuse it
|
|
|
|
if (!AddTidToCgroup(pid, fd_)) {
|
|
|
|
PLOG(ERROR) << "Failed to add task into cgroup";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd_ == -1) {
|
|
|
|
// no permissions to access the file, ignore
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this is app-dependent path, file descriptor is not cached
|
2019-02-26 23:43:51 +01:00
|
|
|
std::string procs_path = controller_->GetProcsFilePath(path_, uid, pid);
|
2018-12-21 20:41:50 +01:00
|
|
|
unique_fd tmp_fd(TEMP_FAILURE_RETRY(open(procs_path.c_str(), O_WRONLY | O_CLOEXEC)));
|
|
|
|
if (tmp_fd < 0) {
|
|
|
|
PLOG(WARNING) << "Failed to open " << procs_path << ": " << strerror(errno);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!AddTidToCgroup(pid, tmp_fd)) {
|
|
|
|
PLOG(ERROR) << "Failed to add task into cgroup";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2019-02-06 01:44:22 +01:00
|
|
|
#else
|
2019-02-26 23:43:51 +01:00
|
|
|
std::string procs_path = controller_->GetProcsFilePath(path_, uid, pid);
|
2019-02-06 01:44:22 +01:00
|
|
|
unique_fd tmp_fd(TEMP_FAILURE_RETRY(open(procs_path.c_str(), O_WRONLY | O_CLOEXEC)));
|
|
|
|
if (tmp_fd < 0) {
|
|
|
|
// no permissions to access the file, ignore
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!AddTidToCgroup(pid, tmp_fd)) {
|
|
|
|
PLOG(ERROR) << "Failed to add task into cgroup";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
#endif
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SetCgroupAction::ExecuteForTask(int tid) const {
|
2019-02-06 01:44:22 +01:00
|
|
|
#ifdef CACHE_FILE_DESCRIPTORS
|
2018-12-21 20:41:50 +01:00
|
|
|
if (fd_ >= 0) {
|
|
|
|
// fd is cached, reuse it
|
|
|
|
if (!AddTidToCgroup(tid, fd_)) {
|
|
|
|
PLOG(ERROR) << "Failed to add task into cgroup";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd_ == -1) {
|
|
|
|
// no permissions to access the file, ignore
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// application-dependent path can't be used with tid
|
|
|
|
PLOG(ERROR) << "Application profile can't be applied to a thread";
|
|
|
|
return false;
|
2019-02-06 01:44:22 +01:00
|
|
|
#else
|
2019-02-26 23:43:51 +01:00
|
|
|
std::string tasks_path = controller_->GetTasksFilePath(path_);
|
2019-02-06 01:44:22 +01:00
|
|
|
unique_fd tmp_fd(TEMP_FAILURE_RETRY(open(tasks_path.c_str(), O_WRONLY | O_CLOEXEC)));
|
|
|
|
if (tmp_fd < 0) {
|
|
|
|
// no permissions to access the file, ignore
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!AddTidToCgroup(tid, tmp_fd)) {
|
|
|
|
PLOG(ERROR) << "Failed to add task into cgroup";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
#endif
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool TaskProfile::ExecuteForProcess(uid_t uid, pid_t pid) const {
|
|
|
|
for (const auto& element : elements_) {
|
|
|
|
if (!element->ExecuteForProcess(uid, pid)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TaskProfile::ExecuteForTask(int tid) const {
|
|
|
|
if (tid == 0) {
|
|
|
|
tid = GetThreadId();
|
|
|
|
}
|
|
|
|
for (const auto& element : elements_) {
|
|
|
|
if (!element->ExecuteForTask(tid)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
TaskProfiles& TaskProfiles::GetInstance() {
|
|
|
|
static TaskProfiles instance;
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
TaskProfiles::TaskProfiles() {
|
2019-02-20 00:01:28 +01:00
|
|
|
// load system task profiles
|
|
|
|
if (!Load(CgroupMap::GetInstance(), TASK_PROFILE_DB_FILE)) {
|
|
|
|
LOG(ERROR) << "Loading " << TASK_PROFILE_DB_FILE << " for [" << getpid() << "] failed";
|
|
|
|
}
|
|
|
|
|
|
|
|
// load vendor task profiles if the file exists
|
|
|
|
if (!access(TASK_PROFILE_DB_VENDOR_FILE, F_OK) &&
|
|
|
|
!Load(CgroupMap::GetInstance(), TASK_PROFILE_DB_VENDOR_FILE)) {
|
|
|
|
LOG(ERROR) << "Loading " << TASK_PROFILE_DB_VENDOR_FILE << " for [" << getpid()
|
|
|
|
<< "] failed";
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-20 00:01:28 +01:00
|
|
|
bool TaskProfiles::Load(const CgroupMap& cg_map, const std::string& file_name) {
|
2018-12-21 20:41:50 +01:00
|
|
|
std::string json_doc;
|
|
|
|
|
2019-02-20 00:01:28 +01:00
|
|
|
if (!android::base::ReadFileToString(file_name, &json_doc)) {
|
|
|
|
LOG(ERROR) << "Failed to read task profiles from " << file_name;
|
2018-12-21 20:41:50 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Json::Reader reader;
|
|
|
|
Json::Value root;
|
|
|
|
if (!reader.parse(json_doc, root)) {
|
|
|
|
LOG(ERROR) << "Failed to parse task profiles: " << reader.getFormattedErrorMessages();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Json::Value attr = root["Attributes"];
|
|
|
|
for (Json::Value::ArrayIndex i = 0; i < attr.size(); ++i) {
|
|
|
|
std::string name = attr[i]["Name"].asString();
|
2019-02-20 00:01:28 +01:00
|
|
|
std::string controller_name = attr[i]["Controller"].asString();
|
|
|
|
std::string file_attr = attr[i]["File"].asString();
|
2018-12-21 20:41:50 +01:00
|
|
|
|
|
|
|
if (attributes_.find(name) == attributes_.end()) {
|
2019-02-20 00:01:28 +01:00
|
|
|
const CgroupController* controller = cg_map.FindController(controller_name);
|
2018-12-21 20:41:50 +01:00
|
|
|
if (controller) {
|
2019-02-20 00:01:28 +01:00
|
|
|
attributes_[name] = std::make_unique<ProfileAttribute>(controller, file_attr);
|
2018-12-21 20:41:50 +01:00
|
|
|
} else {
|
2019-02-20 00:01:28 +01:00
|
|
|
LOG(WARNING) << "Controller " << controller_name << " is not found";
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LOG(WARNING) << "Attribute " << name << " is already defined";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::map<std::string, std::string> params;
|
|
|
|
|
|
|
|
Json::Value profilesVal = root["Profiles"];
|
|
|
|
for (Json::Value::ArrayIndex i = 0; i < profilesVal.size(); ++i) {
|
|
|
|
Json::Value profileVal = profilesVal[i];
|
|
|
|
|
|
|
|
std::string profileName = profileVal["Name"].asString();
|
|
|
|
Json::Value actions = profileVal["Actions"];
|
|
|
|
auto profile = std::make_unique<TaskProfile>();
|
|
|
|
|
|
|
|
for (Json::Value::ArrayIndex actIdx = 0; actIdx < actions.size(); ++actIdx) {
|
|
|
|
Json::Value actionVal = actions[actIdx];
|
|
|
|
std::string actionName = actionVal["Name"].asString();
|
|
|
|
Json::Value paramsVal = actionVal["Params"];
|
|
|
|
if (actionName == "JoinCgroup") {
|
2019-02-20 00:01:28 +01:00
|
|
|
std::string controller_name = paramsVal["Controller"].asString();
|
2018-12-21 20:41:50 +01:00
|
|
|
std::string path = paramsVal["Path"].asString();
|
|
|
|
|
2019-02-20 00:01:28 +01:00
|
|
|
const CgroupController* controller = cg_map.FindController(controller_name);
|
2018-12-21 20:41:50 +01:00
|
|
|
if (controller) {
|
|
|
|
profile->Add(std::make_unique<SetCgroupAction>(controller, path));
|
|
|
|
} else {
|
2019-02-20 00:01:28 +01:00
|
|
|
LOG(WARNING) << "JoinCgroup: controller " << controller_name << " is not found";
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
} else if (actionName == "SetTimerSlack") {
|
|
|
|
std::string slackValue = paramsVal["Slack"].asString();
|
|
|
|
char* end;
|
|
|
|
unsigned long slack;
|
|
|
|
|
|
|
|
slack = strtoul(slackValue.c_str(), &end, 10);
|
|
|
|
if (end > slackValue.c_str()) {
|
|
|
|
profile->Add(std::make_unique<SetTimerSlackAction>(slack));
|
|
|
|
} else {
|
|
|
|
LOG(WARNING) << "SetTimerSlack: invalid parameter: " << slackValue;
|
|
|
|
}
|
|
|
|
} else if (actionName == "SetAttribute") {
|
|
|
|
std::string attrName = paramsVal["Name"].asString();
|
|
|
|
std::string attrValue = paramsVal["Value"].asString();
|
|
|
|
|
|
|
|
auto iter = attributes_.find(attrName);
|
|
|
|
if (iter != attributes_.end()) {
|
|
|
|
profile->Add(
|
|
|
|
std::make_unique<SetAttributeAction>(iter->second.get(), attrValue));
|
|
|
|
} else {
|
|
|
|
LOG(WARNING) << "SetAttribute: unknown attribute: " << attrName;
|
|
|
|
}
|
|
|
|
} else if (actionName == "SetClamps") {
|
|
|
|
std::string boostValue = paramsVal["Boost"].asString();
|
|
|
|
std::string clampValue = paramsVal["Clamp"].asString();
|
|
|
|
char* end;
|
|
|
|
unsigned long boost;
|
|
|
|
|
|
|
|
boost = strtoul(boostValue.c_str(), &end, 10);
|
|
|
|
if (end > boostValue.c_str()) {
|
|
|
|
unsigned long clamp = strtoul(clampValue.c_str(), &end, 10);
|
|
|
|
if (end > clampValue.c_str()) {
|
|
|
|
profile->Add(std::make_unique<SetClampsAction>(boost, clamp));
|
|
|
|
} else {
|
|
|
|
LOG(WARNING) << "SetClamps: invalid parameter " << clampValue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LOG(WARNING) << "SetClamps: invalid parameter: " << boostValue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LOG(WARNING) << "Unknown profile action: " << actionName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
profiles_[profileName] = std::move(profile);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TaskProfile* TaskProfiles::GetProfile(const std::string& name) const {
|
|
|
|
auto iter = profiles_.find(name);
|
|
|
|
|
|
|
|
if (iter != profiles_.end()) {
|
|
|
|
return iter->second.get();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ProfileAttribute* TaskProfiles::GetAttribute(const std::string& name) const {
|
|
|
|
auto iter = attributes_.find(name);
|
|
|
|
|
|
|
|
if (iter != attributes_.end()) {
|
|
|
|
return iter->second.get();
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|