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 <errno.h>
|
|
|
|
#include <fcntl.h>
|
2019-02-06 22:25:29 +01:00
|
|
|
#include <grp.h>
|
2018-12-21 20:41:50 +01:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <regex>
|
|
|
|
|
|
|
|
#include <android-base/file.h>
|
|
|
|
#include <android-base/logging.h>
|
|
|
|
#include <android-base/properties.h>
|
|
|
|
#include <android-base/stringprintf.h>
|
2021-06-17 02:01:19 +02:00
|
|
|
#include <android-base/strings.h>
|
2018-12-21 20:41:50 +01:00
|
|
|
#include <android-base/unique_fd.h>
|
|
|
|
#include <cgroup_map.h>
|
|
|
|
#include <json/reader.h>
|
|
|
|
#include <json/value.h>
|
|
|
|
#include <processgroup/processgroup.h>
|
|
|
|
|
|
|
|
using android::base::GetBoolProperty;
|
2021-06-17 02:01:19 +02:00
|
|
|
using android::base::StartsWith;
|
2018-12-21 20:41:50 +01:00
|
|
|
using android::base::StringPrintf;
|
|
|
|
using android::base::unique_fd;
|
2021-07-30 22:42:39 +02:00
|
|
|
using android::base::WriteStringToFile;
|
2018-12-21 20:41:50 +01:00
|
|
|
|
|
|
|
static constexpr const char* CGROUP_PROCS_FILE = "/cgroup.procs";
|
|
|
|
static constexpr const char* CGROUP_TASKS_FILE = "/tasks";
|
2023-01-06 23:03:37 +01:00
|
|
|
static constexpr const char* CGROUP_TASKS_FILE_V2 = "/cgroup.threads";
|
2018-12-21 20:41:50 +01:00
|
|
|
|
2019-03-23 01:01:08 +01:00
|
|
|
uint32_t CgroupController::version() const {
|
|
|
|
CHECK(HasValue());
|
|
|
|
return ACgroupController_getVersion(controller_);
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
|
2019-03-23 01:01:08 +01:00
|
|
|
const char* CgroupController::name() const {
|
|
|
|
CHECK(HasValue());
|
|
|
|
return ACgroupController_getName(controller_);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* CgroupController::path() const {
|
|
|
|
CHECK(HasValue());
|
|
|
|
return ACgroupController_getPath(controller_);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CgroupController::HasValue() const {
|
|
|
|
return controller_ != nullptr;
|
|
|
|
}
|
2018-12-21 20:41:50 +01:00
|
|
|
|
2019-06-26 20:08:50 +02:00
|
|
|
bool CgroupController::IsUsable() {
|
2019-05-09 02:59:55 +02:00
|
|
|
if (!HasValue()) return false;
|
|
|
|
|
2019-06-26 20:08:50 +02:00
|
|
|
if (state_ == UNKNOWN) {
|
2020-08-11 02:32:55 +02:00
|
|
|
if (__builtin_available(android 30, *)) {
|
2020-01-24 01:18:13 +01:00
|
|
|
uint32_t flags = ACgroupController_getFlags(controller_);
|
|
|
|
state_ = (flags & CGROUPRC_CONTROLLER_FLAG_MOUNTED) != 0 ? USABLE : MISSING;
|
|
|
|
} else {
|
|
|
|
state_ = access(GetProcsFilePath("", 0, 0).c_str(), F_OK) == 0 ? USABLE : MISSING;
|
|
|
|
}
|
2019-06-26 20:08:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return state_ == USABLE;
|
2019-05-09 02:59:55 +02:00
|
|
|
}
|
|
|
|
|
2019-03-23 01:01:08 +01:00
|
|
|
std::string CgroupController::GetTasksFilePath(const std::string& rel_path) const {
|
|
|
|
std::string tasks_path = path();
|
|
|
|
|
|
|
|
if (!rel_path.empty()) {
|
|
|
|
tasks_path += "/" + rel_path;
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
2019-03-23 01:01:08 +01:00
|
|
|
return (version() == 1) ? tasks_path + CGROUP_TASKS_FILE : tasks_path + CGROUP_TASKS_FILE_V2;
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
|
2019-03-23 01:01:08 +01:00
|
|
|
std::string CgroupController::GetProcsFilePath(const std::string& rel_path, uid_t uid,
|
2018-12-21 20:41:50 +01:00
|
|
|
pid_t pid) const {
|
2019-03-23 01:01:08 +01:00
|
|
|
std::string proc_path(path());
|
|
|
|
proc_path.append("/").append(rel_path);
|
2018-12-21 20:41:50 +01:00
|
|
|
proc_path = regex_replace(proc_path, std::regex("<uid>"), std::to_string(uid));
|
|
|
|
proc_path = regex_replace(proc_path, std::regex("<pid>"), std::to_string(pid));
|
|
|
|
|
|
|
|
return proc_path.append(CGROUP_PROCS_FILE);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CgroupController::GetTaskGroup(int tid, std::string* group) const {
|
|
|
|
std::string file_name = StringPrintf("/proc/%d/cgroup", tid);
|
|
|
|
std::string content;
|
|
|
|
if (!android::base::ReadFileToString(file_name, &content)) {
|
2019-03-07 20:59:12 +01:00
|
|
|
PLOG(ERROR) << "Failed to read " << file_name;
|
2018-12-21 20:41:50 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if group is null and tid exists return early because
|
|
|
|
// user is not interested in cgroup membership
|
|
|
|
if (group == nullptr) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-06-03 00:21:13 +02:00
|
|
|
std::string cg_tag;
|
|
|
|
|
|
|
|
if (version() == 2) {
|
|
|
|
cg_tag = "0::";
|
|
|
|
} else {
|
|
|
|
cg_tag = StringPrintf(":%s:", name());
|
|
|
|
}
|
2018-12-21 20:41:50 +01:00
|
|
|
size_t start_pos = content.find(cg_tag);
|
|
|
|
if (start_pos == std::string::npos) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
start_pos += cg_tag.length() + 1; // skip '/'
|
|
|
|
size_t end_pos = content.find('\n', start_pos);
|
|
|
|
if (end_pos == std::string::npos) {
|
|
|
|
*group = content.substr(start_pos, std::string::npos);
|
|
|
|
} else {
|
|
|
|
*group = content.substr(start_pos, end_pos - start_pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-03-23 01:01:08 +01:00
|
|
|
CgroupMap::CgroupMap() {
|
2018-12-21 20:41:50 +01:00
|
|
|
if (!LoadRcFile()) {
|
2019-03-07 20:59:12 +01:00
|
|
|
LOG(ERROR) << "CgroupMap::LoadRcFile called for [" << getpid() << "] failed";
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CgroupMap& CgroupMap::GetInstance() {
|
2019-03-21 05:09:46 +01:00
|
|
|
// Deliberately leak this object to avoid a race between destruction on
|
|
|
|
// process exit and concurrent access from another thread.
|
|
|
|
static auto* instance = new CgroupMap;
|
|
|
|
return *instance;
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CgroupMap::LoadRcFile() {
|
2019-03-23 01:01:08 +01:00
|
|
|
if (!loaded_) {
|
|
|
|
loaded_ = (ACgroupFile_getVersion() != 0);
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
2019-03-23 01:01:08 +01:00
|
|
|
return loaded_;
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
|
2019-03-07 20:59:12 +01:00
|
|
|
void CgroupMap::Print() const {
|
2019-03-23 01:01:08 +01:00
|
|
|
if (!loaded_) {
|
2019-03-07 20:59:12 +01:00
|
|
|
LOG(ERROR) << "CgroupMap::Print called for [" << getpid()
|
|
|
|
<< "] failed, RC file was not initialized properly";
|
|
|
|
return;
|
|
|
|
}
|
2019-03-23 01:01:08 +01:00
|
|
|
LOG(INFO) << "File version = " << ACgroupFile_getVersion();
|
|
|
|
LOG(INFO) << "File controller count = " << ACgroupFile_getControllerCount();
|
2018-12-21 20:41:50 +01:00
|
|
|
|
|
|
|
LOG(INFO) << "Mounted cgroups:";
|
2019-03-23 01:01:08 +01:00
|
|
|
|
|
|
|
auto controller_count = ACgroupFile_getControllerCount();
|
|
|
|
for (uint32_t i = 0; i < controller_count; ++i) {
|
|
|
|
const ACgroupController* controller = ACgroupFile_getController(i);
|
2020-08-11 02:32:55 +02:00
|
|
|
if (__builtin_available(android 30, *)) {
|
2020-01-24 01:18:13 +01:00
|
|
|
LOG(INFO) << "\t" << ACgroupController_getName(controller) << " ver "
|
|
|
|
<< ACgroupController_getVersion(controller) << " path "
|
|
|
|
<< ACgroupController_getPath(controller) << " flags "
|
|
|
|
<< ACgroupController_getFlags(controller);
|
|
|
|
} else {
|
|
|
|
LOG(INFO) << "\t" << ACgroupController_getName(controller) << " ver "
|
|
|
|
<< ACgroupController_getVersion(controller) << " path "
|
|
|
|
<< ACgroupController_getPath(controller);
|
|
|
|
}
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-23 01:01:08 +01:00
|
|
|
CgroupController CgroupMap::FindController(const std::string& name) const {
|
|
|
|
if (!loaded_) {
|
2019-03-07 20:59:12 +01:00
|
|
|
LOG(ERROR) << "CgroupMap::FindController called for [" << getpid()
|
|
|
|
<< "] failed, RC file was not initialized properly";
|
2019-03-23 01:01:08 +01:00
|
|
|
return CgroupController(nullptr);
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
|
2019-03-23 01:01:08 +01:00
|
|
|
auto controller_count = ACgroupFile_getControllerCount();
|
|
|
|
for (uint32_t i = 0; i < controller_count; ++i) {
|
|
|
|
const ACgroupController* controller = ACgroupFile_getController(i);
|
|
|
|
if (name == ACgroupController_getName(controller)) {
|
|
|
|
return CgroupController(controller);
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-23 01:01:08 +01:00
|
|
|
return CgroupController(nullptr);
|
2018-12-21 20:41:50 +01:00
|
|
|
}
|
2021-07-30 22:42:39 +02:00
|
|
|
|
2021-06-17 02:01:19 +02:00
|
|
|
CgroupController CgroupMap::FindControllerByPath(const std::string& path) const {
|
|
|
|
if (!loaded_) {
|
|
|
|
LOG(ERROR) << "CgroupMap::FindControllerByPath called for [" << getpid()
|
|
|
|
<< "] failed, RC file was not initialized properly";
|
|
|
|
return CgroupController(nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto controller_count = ACgroupFile_getControllerCount();
|
|
|
|
for (uint32_t i = 0; i < controller_count; ++i) {
|
|
|
|
const ACgroupController* controller = ACgroupFile_getController(i);
|
|
|
|
if (StartsWith(path, ACgroupController_getPath(controller))) {
|
|
|
|
return CgroupController(controller);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return CgroupController(nullptr);
|
|
|
|
}
|
|
|
|
|
2021-07-30 22:42:39 +02:00
|
|
|
int CgroupMap::ActivateControllers(const std::string& path) const {
|
|
|
|
if (__builtin_available(android 30, *)) {
|
|
|
|
auto controller_count = ACgroupFile_getControllerCount();
|
|
|
|
for (uint32_t i = 0; i < controller_count; ++i) {
|
|
|
|
const ACgroupController* controller = ACgroupFile_getController(i);
|
2023-02-08 00:04:37 +01:00
|
|
|
const uint32_t flags = ACgroupController_getFlags(controller);
|
|
|
|
if (flags & CGROUPRC_CONTROLLER_FLAG_NEEDS_ACTIVATION) {
|
2022-01-26 00:49:48 +01:00
|
|
|
std::string str("+");
|
|
|
|
str.append(ACgroupController_getName(controller));
|
2021-07-30 22:42:39 +02:00
|
|
|
if (!WriteStringToFile(str, path + "/cgroup.subtree_control")) {
|
2023-02-07 23:46:15 +01:00
|
|
|
if (flags & CGROUPRC_CONTROLLER_FLAG_OPTIONAL) {
|
|
|
|
PLOG(WARNING) << "Activation of cgroup controller " << str
|
|
|
|
<< " failed in path " << path;
|
|
|
|
} else {
|
|
|
|
return -errno;
|
|
|
|
}
|
2021-07-30 22:42:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|