blob: 0a42053dfb1be168e7eeafe138003d193048cdf8 [file] [log] [blame]
Colin Crosscf8d1c22014-06-03 13:24:21 -07001/*
2 * Copyright 2014 Google, Inc
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//#define LOG_NDEBUG 0
18#define LOG_TAG "libprocessgroup"
19
20#include <assert.h>
21#include <dirent.h>
Elliott Hughes0badbd62014-12-29 12:24:25 -080022#include <errno.h>
Colin Crosscf8d1c22014-06-03 13:24:21 -070023#include <fcntl.h>
Chih-Hung Hsiehfcc81152014-11-20 17:05:15 -080024#include <inttypes.h>
Tom Cherry574a0812018-02-23 13:04:40 -080025#include <signal.h>
Colin Crosscf8d1c22014-06-03 13:24:21 -070026#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <sys/stat.h>
30#include <sys/types.h>
Tom Cherry70a5ed42017-06-05 19:20:17 -070031#include <unistd.h>
Collin Mullinerf7e79b92016-06-01 21:03:55 +000032
33#include <chrono>
James Hawkins588a2ca2016-02-18 14:52:46 -080034#include <memory>
Elliott Hughes8d532e42016-06-06 21:19:55 -070035#include <mutex>
Tom Cherry70a5ed42017-06-05 19:20:17 -070036#include <set>
Tom Cherry574a0812018-02-23 13:04:40 -080037#include <string>
Elliott Hughes290a2282016-11-14 17:08:47 -080038#include <thread>
Colin Crosscf8d1c22014-06-03 13:24:21 -070039
Robert Benead4852262017-07-16 19:38:11 -070040#include <android-base/file.h>
Elliott Hughes171df0a2016-08-02 13:30:30 -070041#include <android-base/logging.h>
Suren Baghdasaryanbc131c32018-05-23 12:30:44 -070042#include <android-base/properties.h>
Tom Cherry574a0812018-02-23 13:04:40 -080043#include <android-base/stringprintf.h>
44#include <android-base/strings.h>
Colin Crosscf8d1c22014-06-03 13:24:21 -070045#include <private/android_filesystem_config.h>
46
47#include <processgroup/processgroup.h>
Martijn Coenenb82bab62016-01-20 16:39:16 -080048
Suren Baghdasaryanbc131c32018-05-23 12:30:44 -070049using android::base::GetBoolProperty;
Tom Cherry574a0812018-02-23 13:04:40 -080050using android::base::StartsWith;
51using android::base::StringPrintf;
Robert Benead4852262017-07-16 19:38:11 -070052using android::base::WriteStringToFile;
53
Elliott Hughes290a2282016-11-14 17:08:47 -080054using namespace std::chrono_literals;
55
Martijn Coenenb82bab62016-01-20 16:39:16 -080056#define MEM_CGROUP_PATH "/dev/memcg/apps"
Martijn Coenen623b56a2016-02-08 11:42:25 +010057#define MEM_CGROUP_TASKS "/dev/memcg/apps/tasks"
Martijn Coenenb82bab62016-01-20 16:39:16 -080058#define ACCT_CGROUP_PATH "/acct"
59
Martijn Coenenb82bab62016-01-20 16:39:16 -080060#define PROCESSGROUP_CGROUP_PROCS_FILE "/cgroup.procs"
Martijn Coenenb82bab62016-01-20 16:39:16 -080061
62std::once_flag init_path_flag;
Colin Crosscf8d1c22014-06-03 13:24:21 -070063
Tom Cherry574a0812018-02-23 13:04:40 -080064static const std::string& GetCgroupRootPath() {
65 static std::string cgroup_root_path;
Martijn Coenenb82bab62016-01-20 16:39:16 -080066 std::call_once(init_path_flag, [&]() {
Suren Baghdasaryanbc131c32018-05-23 12:30:44 -070067 // low-ram devices use per-app memcg by default, unlike high-end ones
68 bool low_ram_device = GetBoolProperty("ro.config.low_ram", false);
69 bool per_app_memcg =
70 GetBoolProperty("ro.config.per_app_memcg", low_ram_device);
Suren Baghdasaryanbc131c32018-05-23 12:30:44 -070071 if (per_app_memcg) {
72 // Check if mem cgroup is mounted, only then check for
73 // write-access to avoid SELinux denials
Tom Cherry574a0812018-02-23 13:04:40 -080074 cgroup_root_path =
Suren Baghdasaryanbc131c32018-05-23 12:30:44 -070075 (access(MEM_CGROUP_TASKS, F_OK) || access(MEM_CGROUP_PATH, W_OK) ?
76 ACCT_CGROUP_PATH : MEM_CGROUP_PATH);
77 } else {
78 cgroup_root_path = ACCT_CGROUP_PATH;
79 }
80 });
Martijn Coenenb82bab62016-01-20 16:39:16 -080081 return cgroup_root_path;
82}
83
Tom Cherry574a0812018-02-23 13:04:40 -080084static std::string ConvertUidToPath(uid_t uid) {
85 return StringPrintf("%s/uid_%d", GetCgroupRootPath().c_str(), uid);
Colin Crosscf8d1c22014-06-03 13:24:21 -070086}
87
Tom Cherry574a0812018-02-23 13:04:40 -080088static std::string ConvertUidPidToPath(uid_t uid, int pid) {
89 return StringPrintf("%s/uid_%d/pid_%d", GetCgroupRootPath().c_str(), uid, pid);
Colin Crosscf8d1c22014-06-03 13:24:21 -070090}
91
Tom Cherry574a0812018-02-23 13:04:40 -080092static int RemoveProcessGroup(uid_t uid, int pid) {
Colin Crosscf8d1c22014-06-03 13:24:21 -070093 int ret;
Colin Crosscf8d1c22014-06-03 13:24:21 -070094
Tom Cherry574a0812018-02-23 13:04:40 -080095 auto uid_pid_path = ConvertUidPidToPath(uid, pid);
96 ret = rmdir(uid_pid_path.c_str());
Colin Crosscf8d1c22014-06-03 13:24:21 -070097
Tom Cherry574a0812018-02-23 13:04:40 -080098 auto uid_path = ConvertUidToPath(uid);
99 rmdir(uid_path.c_str());
Colin Crosscf8d1c22014-06-03 13:24:21 -0700100
101 return ret;
102}
103
Tom Cherry574a0812018-02-23 13:04:40 -0800104static void RemoveUidProcessGroups(const std::string& uid_path) {
105 std::unique_ptr<DIR, decltype(&closedir)> uid(opendir(uid_path.c_str()), closedir);
Colin Crosscf8d1c22014-06-03 13:24:21 -0700106 if (uid != NULL) {
Elliott Hughes9f206932016-09-28 13:29:54 -0700107 dirent* dir;
108 while ((dir = readdir(uid.get())) != nullptr) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700109 if (dir->d_type != DT_DIR) {
110 continue;
111 }
112
Tom Cherry574a0812018-02-23 13:04:40 -0800113 if (!StartsWith(dir->d_name, "pid_")) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700114 continue;
115 }
116
Tom Cherry574a0812018-02-23 13:04:40 -0800117 auto path = StringPrintf("%s/%s", uid_path.c_str(), dir->d_name);
Tom Cherry20514c42017-04-21 13:48:49 -0700118 LOG(VERBOSE) << "Removing " << path;
Tom Cherry574a0812018-02-23 13:04:40 -0800119 if (rmdir(path.c_str()) == -1) PLOG(WARNING) << "Failed to remove " << path;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700120 }
121 }
122}
123
124void removeAllProcessGroups()
125{
Elliott Hughes171df0a2016-08-02 13:30:30 -0700126 LOG(VERBOSE) << "removeAllProcessGroups()";
Tom Cherry574a0812018-02-23 13:04:40 -0800127 const auto& cgroup_root_path = GetCgroupRootPath();
128 std::unique_ptr<DIR, decltype(&closedir)> root(opendir(cgroup_root_path.c_str()), closedir);
Colin Crosscf8d1c22014-06-03 13:24:21 -0700129 if (root == NULL) {
Tom Cherry20514c42017-04-21 13:48:49 -0700130 PLOG(ERROR) << "Failed to open " << cgroup_root_path;
Colin Crossc15dd042014-08-20 14:11:13 -0700131 } else {
Elliott Hughes9f206932016-09-28 13:29:54 -0700132 dirent* dir;
133 while ((dir = readdir(root.get())) != nullptr) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700134 if (dir->d_type != DT_DIR) {
135 continue;
136 }
Tom Cherry574a0812018-02-23 13:04:40 -0800137
138 if (!StartsWith(dir->d_name, "uid_")) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700139 continue;
140 }
141
Tom Cherry574a0812018-02-23 13:04:40 -0800142 auto path = StringPrintf("%s/%s", cgroup_root_path.c_str(), dir->d_name);
143 RemoveUidProcessGroups(path);
Tom Cherry20514c42017-04-21 13:48:49 -0700144 LOG(VERBOSE) << "Removing " << path;
Tom Cherry574a0812018-02-23 13:04:40 -0800145 if (rmdir(path.c_str()) == -1) PLOG(WARNING) << "Failed to remove " << path;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700146 }
Colin Crosscf8d1c22014-06-03 13:24:21 -0700147 }
148}
149
Tom Cherry20514c42017-04-21 13:48:49 -0700150// Returns number of processes killed on success
151// Returns 0 if there are no processes in the process cgroup left to kill
Tom Cherry574a0812018-02-23 13:04:40 -0800152// Returns -1 on error
153static int DoKillProcessGroupOnce(uid_t uid, int initialPid, int signal) {
154 auto path = ConvertUidPidToPath(uid, initialPid) + PROCESSGROUP_CGROUP_PROCS_FILE;
155 std::unique_ptr<FILE, decltype(&fclose)> fd(fopen(path.c_str(), "re"), fclose);
156 if (!fd) {
Tom Cherry20514c42017-04-21 13:48:49 -0700157 PLOG(WARNING) << "Failed to open process cgroup uid " << uid << " pid " << initialPid;
Tom Cherry574a0812018-02-23 13:04:40 -0800158 return -1;
Tom Cherry20514c42017-04-21 13:48:49 -0700159 }
160
Tom Cherry70a5ed42017-06-05 19:20:17 -0700161 // We separate all of the pids in the cgroup into those pids that are also the leaders of
162 // process groups (stored in the pgids set) and those that are not (stored in the pids set).
163 std::set<pid_t> pgids;
164 pgids.emplace(initialPid);
165 std::set<pid_t> pids;
166
Colin Crosscf8d1c22014-06-03 13:24:21 -0700167 pid_t pid;
Tom Cherry20514c42017-04-21 13:48:49 -0700168 int processes = 0;
Tom Cherry574a0812018-02-23 13:04:40 -0800169 while (fscanf(fd.get(), "%d\n", &pid) == 1 && pid >= 0) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700170 processes++;
Dianne Hackborn2c5e7e12014-10-13 17:45:22 -0700171 if (pid == 0) {
172 // Should never happen... but if it does, trying to kill this
173 // will boomerang right back and kill us! Let's not let that happen.
Elliott Hughes171df0a2016-08-02 13:30:30 -0700174 LOG(WARNING) << "Yikes, we've been told to kill pid 0! How about we don't do that?";
Dianne Hackborn2c5e7e12014-10-13 17:45:22 -0700175 continue;
176 }
Tom Cherry70a5ed42017-06-05 19:20:17 -0700177 pid_t pgid = getpgid(pid);
178 if (pgid == -1) PLOG(ERROR) << "getpgid(" << pid << ") failed";
179 if (pgid == pid) {
180 pgids.emplace(pid);
181 } else {
182 pids.emplace(pid);
183 }
184 }
185
186 // Erase all pids that will be killed when we kill the process groups.
187 for (auto it = pids.begin(); it != pids.end();) {
fengshaobo950f6f32018-09-13 14:57:07 +0800188 pid_t pgid = getpgid(*it);
Tom Cherry70a5ed42017-06-05 19:20:17 -0700189 if (pgids.count(pgid) == 1) {
190 it = pids.erase(it);
191 } else {
192 ++it;
193 }
194 }
195
196 // Kill all process groups.
197 for (const auto pgid : pgids) {
198 LOG(VERBOSE) << "Killing process group " << -pgid << " in uid " << uid
199 << " as part of process cgroup " << initialPid;
200
201 if (kill(-pgid, signal) == -1) {
202 PLOG(WARNING) << "kill(" << -pgid << ", " << signal << ") failed";
203 }
204 }
205
206 // Kill remaining pids.
207 for (const auto pid : pids) {
Tom Cherry20514c42017-04-21 13:48:49 -0700208 LOG(VERBOSE) << "Killing pid " << pid << " in uid " << uid << " as part of process cgroup "
209 << initialPid;
Tom Cherry70a5ed42017-06-05 19:20:17 -0700210
Elliott Hughes171df0a2016-08-02 13:30:30 -0700211 if (kill(pid, signal) == -1) {
212 PLOG(WARNING) << "kill(" << pid << ", " << signal << ") failed";
Colin Crosscf8d1c22014-06-03 13:24:21 -0700213 }
214 }
215
Tom Cherry574a0812018-02-23 13:04:40 -0800216 return feof(fd.get()) ? processes : -1;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700217}
218
Tom Cherry574a0812018-02-23 13:04:40 -0800219static int KillProcessGroup(uid_t uid, int initialPid, int signal, int retries) {
Collin Mullinerf7e79b92016-06-01 21:03:55 +0000220 std::chrono::steady_clock::time_point start = std::chrono::steady_clock::now();
Colin Crosscf8d1c22014-06-03 13:24:21 -0700221
Tom Cherry20514c42017-04-21 13:48:49 -0700222 int retry = retries;
Collin Mullinerf7e79b92016-06-01 21:03:55 +0000223 int processes;
Tom Cherry574a0812018-02-23 13:04:40 -0800224 while ((processes = DoKillProcessGroupOnce(uid, initialPid, signal)) > 0) {
Tom Cherry20514c42017-04-21 13:48:49 -0700225 LOG(VERBOSE) << "Killed " << processes << " processes for processgroup " << initialPid;
Yusuke Satod5039302015-06-16 13:51:14 -0700226 if (retry > 0) {
Elliott Hughes290a2282016-11-14 17:08:47 -0800227 std::this_thread::sleep_for(5ms);
Yusuke Satod5039302015-06-16 13:51:14 -0700228 --retry;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700229 } else {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700230 break;
231 }
232 }
233
Tom Cherry20514c42017-04-21 13:48:49 -0700234 if (processes < 0) {
235 PLOG(ERROR) << "Error encountered killing process cgroup uid " << uid << " pid "
236 << initialPid;
237 return -1;
238 }
Collin Mullinerf7e79b92016-06-01 21:03:55 +0000239
Tom Cherry20514c42017-04-21 13:48:49 -0700240 std::chrono::steady_clock::time_point end = std::chrono::steady_clock::now();
Elliott Hughes171df0a2016-08-02 13:30:30 -0700241 auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count();
Tom Cherry20514c42017-04-21 13:48:49 -0700242
243 // We only calculate the number of 'processes' when killing the processes.
244 // In the retries == 0 case, we only kill the processes once and therefore
245 // will not have waited then recalculated how many processes are remaining
246 // after the first signals have been sent.
247 // Logging anything regarding the number of 'processes' here does not make sense.
Dianne Hackborn2c5e7e12014-10-13 17:45:22 -0700248
Colin Crosscf8d1c22014-06-03 13:24:21 -0700249 if (processes == 0) {
Tom Cherry20514c42017-04-21 13:48:49 -0700250 if (retries > 0) {
251 LOG(INFO) << "Successfully killed process cgroup uid " << uid << " pid " << initialPid
252 << " in " << static_cast<int>(ms) << "ms";
253 }
Tom Cherry574a0812018-02-23 13:04:40 -0800254 return RemoveProcessGroup(uid, initialPid);
Colin Crosscf8d1c22014-06-03 13:24:21 -0700255 } else {
Tom Cherry20514c42017-04-21 13:48:49 -0700256 if (retries > 0) {
257 LOG(ERROR) << "Failed to kill process cgroup uid " << uid << " pid " << initialPid
258 << " in " << static_cast<int>(ms) << "ms, " << processes
259 << " processes remain";
260 }
Colin Crosscf8d1c22014-06-03 13:24:21 -0700261 return -1;
262 }
263}
264
Keun-young Parkfac4b632017-03-28 17:25:24 -0700265int killProcessGroup(uid_t uid, int initialPid, int signal) {
Tom Cherry574a0812018-02-23 13:04:40 -0800266 return KillProcessGroup(uid, initialPid, signal, 40 /*retries*/);
Keun-young Parkfac4b632017-03-28 17:25:24 -0700267}
268
269int killProcessGroupOnce(uid_t uid, int initialPid, int signal) {
Tom Cherry574a0812018-02-23 13:04:40 -0800270 return KillProcessGroup(uid, initialPid, signal, 0 /*retries*/);
Keun-young Parkfac4b632017-03-28 17:25:24 -0700271}
272
Tom Cherry574a0812018-02-23 13:04:40 -0800273static bool MkdirAndChown(const std::string& path, mode_t mode, uid_t uid, gid_t gid) {
274 if (mkdir(path.c_str(), mode) == -1 && errno != EEXIST) {
Elliott Hughes171df0a2016-08-02 13:30:30 -0700275 return false;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700276 }
277
Tom Cherry574a0812018-02-23 13:04:40 -0800278 if (chown(path.c_str(), uid, gid) == -1) {
Elliott Hughes171df0a2016-08-02 13:30:30 -0700279 int saved_errno = errno;
Tom Cherry574a0812018-02-23 13:04:40 -0800280 rmdir(path.c_str());
Elliott Hughes171df0a2016-08-02 13:30:30 -0700281 errno = saved_errno;
282 return false;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700283 }
284
Elliott Hughes171df0a2016-08-02 13:30:30 -0700285 return true;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700286}
287
288int createProcessGroup(uid_t uid, int initialPid)
289{
Tom Cherry574a0812018-02-23 13:04:40 -0800290 auto uid_path = ConvertUidToPath(uid);
Colin Crosscf8d1c22014-06-03 13:24:21 -0700291
Tom Cherry574a0812018-02-23 13:04:40 -0800292 if (!MkdirAndChown(uid_path, 0750, AID_SYSTEM, AID_SYSTEM)) {
293 PLOG(ERROR) << "Failed to make and chown " << uid_path;
Elliott Hughes171df0a2016-08-02 13:30:30 -0700294 return -errno;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700295 }
296
Tom Cherry574a0812018-02-23 13:04:40 -0800297 auto uid_pid_path = ConvertUidPidToPath(uid, initialPid);
Colin Crosscf8d1c22014-06-03 13:24:21 -0700298
Tom Cherry574a0812018-02-23 13:04:40 -0800299 if (!MkdirAndChown(uid_pid_path, 0750, AID_SYSTEM, AID_SYSTEM)) {
300 PLOG(ERROR) << "Failed to make and chown " << uid_pid_path;
Elliott Hughes171df0a2016-08-02 13:30:30 -0700301 return -errno;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700302 }
303
Tom Cherry574a0812018-02-23 13:04:40 -0800304 auto uid_pid_procs_file = uid_pid_path + PROCESSGROUP_CGROUP_PROCS_FILE;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700305
Elliott Hughes171df0a2016-08-02 13:30:30 -0700306 int ret = 0;
Tom Cherry574a0812018-02-23 13:04:40 -0800307 if (!WriteStringToFile(std::to_string(initialPid), uid_pid_procs_file)) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700308 ret = -errno;
Tom Cherry574a0812018-02-23 13:04:40 -0800309 PLOG(ERROR) << "Failed to write '" << initialPid << "' to " << uid_pid_procs_file;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700310 }
311
Colin Crosscf8d1c22014-06-03 13:24:21 -0700312 return ret;
313}
Robert Benead4852262017-07-16 19:38:11 -0700314
Tom Cherry574a0812018-02-23 13:04:40 -0800315static bool SetProcessGroupValue(uid_t uid, int pid, const std::string& file_name, int64_t value) {
316 if (GetCgroupRootPath() != MEM_CGROUP_PATH) {
317 PLOG(ERROR) << "Memcg is not mounted.";
Robert Benead4852262017-07-16 19:38:11 -0700318 return false;
319 }
320
Tom Cherry574a0812018-02-23 13:04:40 -0800321 auto path = ConvertUidPidToPath(uid, pid) + file_name;
Robert Benead4852262017-07-16 19:38:11 -0700322
323 if (!WriteStringToFile(std::to_string(value), path)) {
324 PLOG(ERROR) << "Failed to write '" << value << "' to " << path;
325 return false;
326 }
327 return true;
328}
329
330bool setProcessGroupSwappiness(uid_t uid, int pid, int swappiness) {
Tom Cherry574a0812018-02-23 13:04:40 -0800331 return SetProcessGroupValue(uid, pid, "/memory.swappiness", swappiness);
Robert Benead4852262017-07-16 19:38:11 -0700332}
333
334bool setProcessGroupSoftLimit(uid_t uid, int pid, int64_t soft_limit_in_bytes) {
Tom Cherry574a0812018-02-23 13:04:40 -0800335 return SetProcessGroupValue(uid, pid, "/memory.soft_limit_in_bytes", soft_limit_in_bytes);
Robert Benead4852262017-07-16 19:38:11 -0700336}
337
338bool setProcessGroupLimit(uid_t uid, int pid, int64_t limit_in_bytes) {
Tom Cherry574a0812018-02-23 13:04:40 -0800339 return SetProcessGroupValue(uid, pid, "/memory.limit_in_bytes", limit_in_bytes);
Robert Benead4852262017-07-16 19:38:11 -0700340}