blob: 6dfa697de97a49fc9b305565f47e30f27537ebf1 [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>
Tom Cherry574a0812018-02-23 13:04:40 -080042#include <android-base/stringprintf.h>
43#include <android-base/strings.h>
Colin Crosscf8d1c22014-06-03 13:24:21 -070044#include <private/android_filesystem_config.h>
45
46#include <processgroup/processgroup.h>
Martijn Coenenb82bab62016-01-20 16:39:16 -080047
Tom Cherry574a0812018-02-23 13:04:40 -080048using android::base::StartsWith;
49using android::base::StringPrintf;
Robert Benead4852262017-07-16 19:38:11 -070050using android::base::WriteStringToFile;
51
Elliott Hughes290a2282016-11-14 17:08:47 -080052using namespace std::chrono_literals;
53
Martijn Coenenb82bab62016-01-20 16:39:16 -080054#define MEM_CGROUP_PATH "/dev/memcg/apps"
Martijn Coenen623b56a2016-02-08 11:42:25 +010055#define MEM_CGROUP_TASKS "/dev/memcg/apps/tasks"
Martijn Coenenb82bab62016-01-20 16:39:16 -080056#define ACCT_CGROUP_PATH "/acct"
57
Martijn Coenenb82bab62016-01-20 16:39:16 -080058#define PROCESSGROUP_CGROUP_PROCS_FILE "/cgroup.procs"
Martijn Coenenb82bab62016-01-20 16:39:16 -080059
60std::once_flag init_path_flag;
Colin Crosscf8d1c22014-06-03 13:24:21 -070061
Tom Cherry574a0812018-02-23 13:04:40 -080062static const std::string& GetCgroupRootPath() {
63 static std::string cgroup_root_path;
Martijn Coenenb82bab62016-01-20 16:39:16 -080064 std::call_once(init_path_flag, [&]() {
Martijn Coenen623b56a2016-02-08 11:42:25 +010065 // Check if mem cgroup is mounted, only then check for write-access to avoid
66 // SELinux denials
Tom Cherry574a0812018-02-23 13:04:40 -080067 cgroup_root_path =
68 (access(MEM_CGROUP_TASKS, F_OK) || access(MEM_CGROUP_PATH, W_OK) ? ACCT_CGROUP_PATH
69 : MEM_CGROUP_PATH);
Martijn Coenenb82bab62016-01-20 16:39:16 -080070 });
71 return cgroup_root_path;
72}
73
Tom Cherry574a0812018-02-23 13:04:40 -080074static std::string ConvertUidToPath(uid_t uid) {
75 return StringPrintf("%s/uid_%d", GetCgroupRootPath().c_str(), uid);
Colin Crosscf8d1c22014-06-03 13:24:21 -070076}
77
Tom Cherry574a0812018-02-23 13:04:40 -080078static std::string ConvertUidPidToPath(uid_t uid, int pid) {
79 return StringPrintf("%s/uid_%d/pid_%d", GetCgroupRootPath().c_str(), uid, pid);
Colin Crosscf8d1c22014-06-03 13:24:21 -070080}
81
Tom Cherry574a0812018-02-23 13:04:40 -080082static int RemoveProcessGroup(uid_t uid, int pid) {
Colin Crosscf8d1c22014-06-03 13:24:21 -070083 int ret;
Colin Crosscf8d1c22014-06-03 13:24:21 -070084
Tom Cherry574a0812018-02-23 13:04:40 -080085 auto uid_pid_path = ConvertUidPidToPath(uid, pid);
86 ret = rmdir(uid_pid_path.c_str());
Colin Crosscf8d1c22014-06-03 13:24:21 -070087
Tom Cherry574a0812018-02-23 13:04:40 -080088 auto uid_path = ConvertUidToPath(uid);
89 rmdir(uid_path.c_str());
Colin Crosscf8d1c22014-06-03 13:24:21 -070090
91 return ret;
92}
93
Tom Cherry574a0812018-02-23 13:04:40 -080094static void RemoveUidProcessGroups(const std::string& uid_path) {
95 std::unique_ptr<DIR, decltype(&closedir)> uid(opendir(uid_path.c_str()), closedir);
Colin Crosscf8d1c22014-06-03 13:24:21 -070096 if (uid != NULL) {
Elliott Hughes9f206932016-09-28 13:29:54 -070097 dirent* dir;
98 while ((dir = readdir(uid.get())) != nullptr) {
Colin Crosscf8d1c22014-06-03 13:24:21 -070099 if (dir->d_type != DT_DIR) {
100 continue;
101 }
102
Tom Cherry574a0812018-02-23 13:04:40 -0800103 if (!StartsWith(dir->d_name, "pid_")) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700104 continue;
105 }
106
Tom Cherry574a0812018-02-23 13:04:40 -0800107 auto path = StringPrintf("%s/%s", uid_path.c_str(), dir->d_name);
Tom Cherry20514c42017-04-21 13:48:49 -0700108 LOG(VERBOSE) << "Removing " << path;
Tom Cherry574a0812018-02-23 13:04:40 -0800109 if (rmdir(path.c_str()) == -1) PLOG(WARNING) << "Failed to remove " << path;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700110 }
111 }
112}
113
114void removeAllProcessGroups()
115{
Elliott Hughes171df0a2016-08-02 13:30:30 -0700116 LOG(VERBOSE) << "removeAllProcessGroups()";
Tom Cherry574a0812018-02-23 13:04:40 -0800117 const auto& cgroup_root_path = GetCgroupRootPath();
118 std::unique_ptr<DIR, decltype(&closedir)> root(opendir(cgroup_root_path.c_str()), closedir);
Colin Crosscf8d1c22014-06-03 13:24:21 -0700119 if (root == NULL) {
Tom Cherry20514c42017-04-21 13:48:49 -0700120 PLOG(ERROR) << "Failed to open " << cgroup_root_path;
Colin Crossc15dd042014-08-20 14:11:13 -0700121 } else {
Elliott Hughes9f206932016-09-28 13:29:54 -0700122 dirent* dir;
123 while ((dir = readdir(root.get())) != nullptr) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700124 if (dir->d_type != DT_DIR) {
125 continue;
126 }
Tom Cherry574a0812018-02-23 13:04:40 -0800127
128 if (!StartsWith(dir->d_name, "uid_")) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700129 continue;
130 }
131
Tom Cherry574a0812018-02-23 13:04:40 -0800132 auto path = StringPrintf("%s/%s", cgroup_root_path.c_str(), dir->d_name);
133 RemoveUidProcessGroups(path);
Tom Cherry20514c42017-04-21 13:48:49 -0700134 LOG(VERBOSE) << "Removing " << path;
Tom Cherry574a0812018-02-23 13:04:40 -0800135 if (rmdir(path.c_str()) == -1) PLOG(WARNING) << "Failed to remove " << path;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700136 }
Colin Crosscf8d1c22014-06-03 13:24:21 -0700137 }
138}
139
Tom Cherry20514c42017-04-21 13:48:49 -0700140// Returns number of processes killed on success
141// Returns 0 if there are no processes in the process cgroup left to kill
Tom Cherry574a0812018-02-23 13:04:40 -0800142// Returns -1 on error
143static int DoKillProcessGroupOnce(uid_t uid, int initialPid, int signal) {
144 auto path = ConvertUidPidToPath(uid, initialPid) + PROCESSGROUP_CGROUP_PROCS_FILE;
145 std::unique_ptr<FILE, decltype(&fclose)> fd(fopen(path.c_str(), "re"), fclose);
146 if (!fd) {
Tom Cherry20514c42017-04-21 13:48:49 -0700147 PLOG(WARNING) << "Failed to open process cgroup uid " << uid << " pid " << initialPid;
Tom Cherry574a0812018-02-23 13:04:40 -0800148 return -1;
Tom Cherry20514c42017-04-21 13:48:49 -0700149 }
150
Tom Cherry70a5ed42017-06-05 19:20:17 -0700151 // We separate all of the pids in the cgroup into those pids that are also the leaders of
152 // process groups (stored in the pgids set) and those that are not (stored in the pids set).
153 std::set<pid_t> pgids;
154 pgids.emplace(initialPid);
155 std::set<pid_t> pids;
156
Colin Crosscf8d1c22014-06-03 13:24:21 -0700157 pid_t pid;
Tom Cherry20514c42017-04-21 13:48:49 -0700158 int processes = 0;
Tom Cherry574a0812018-02-23 13:04:40 -0800159 while (fscanf(fd.get(), "%d\n", &pid) == 1 && pid >= 0) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700160 processes++;
Dianne Hackborn2c5e7e12014-10-13 17:45:22 -0700161 if (pid == 0) {
162 // Should never happen... but if it does, trying to kill this
163 // will boomerang right back and kill us! Let's not let that happen.
Elliott Hughes171df0a2016-08-02 13:30:30 -0700164 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 -0700165 continue;
166 }
Tom Cherry70a5ed42017-06-05 19:20:17 -0700167 pid_t pgid = getpgid(pid);
168 if (pgid == -1) PLOG(ERROR) << "getpgid(" << pid << ") failed";
169 if (pgid == pid) {
170 pgids.emplace(pid);
171 } else {
172 pids.emplace(pid);
173 }
174 }
175
176 // Erase all pids that will be killed when we kill the process groups.
177 for (auto it = pids.begin(); it != pids.end();) {
178 pid_t pgid = getpgid(pid);
179 if (pgids.count(pgid) == 1) {
180 it = pids.erase(it);
181 } else {
182 ++it;
183 }
184 }
185
186 // Kill all process groups.
187 for (const auto pgid : pgids) {
188 LOG(VERBOSE) << "Killing process group " << -pgid << " in uid " << uid
189 << " as part of process cgroup " << initialPid;
190
191 if (kill(-pgid, signal) == -1) {
192 PLOG(WARNING) << "kill(" << -pgid << ", " << signal << ") failed";
193 }
194 }
195
196 // Kill remaining pids.
197 for (const auto pid : pids) {
Tom Cherry20514c42017-04-21 13:48:49 -0700198 LOG(VERBOSE) << "Killing pid " << pid << " in uid " << uid << " as part of process cgroup "
199 << initialPid;
Tom Cherry70a5ed42017-06-05 19:20:17 -0700200
Elliott Hughes171df0a2016-08-02 13:30:30 -0700201 if (kill(pid, signal) == -1) {
202 PLOG(WARNING) << "kill(" << pid << ", " << signal << ") failed";
Colin Crosscf8d1c22014-06-03 13:24:21 -0700203 }
204 }
205
Tom Cherry574a0812018-02-23 13:04:40 -0800206 return feof(fd.get()) ? processes : -1;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700207}
208
Tom Cherry574a0812018-02-23 13:04:40 -0800209static int KillProcessGroup(uid_t uid, int initialPid, int signal, int retries) {
Collin Mullinerf7e79b92016-06-01 21:03:55 +0000210 std::chrono::steady_clock::time_point start = std::chrono::steady_clock::now();
Colin Crosscf8d1c22014-06-03 13:24:21 -0700211
Tom Cherry20514c42017-04-21 13:48:49 -0700212 int retry = retries;
Collin Mullinerf7e79b92016-06-01 21:03:55 +0000213 int processes;
Tom Cherry574a0812018-02-23 13:04:40 -0800214 while ((processes = DoKillProcessGroupOnce(uid, initialPid, signal)) > 0) {
Tom Cherry20514c42017-04-21 13:48:49 -0700215 LOG(VERBOSE) << "Killed " << processes << " processes for processgroup " << initialPid;
Yusuke Satod5039302015-06-16 13:51:14 -0700216 if (retry > 0) {
Elliott Hughes290a2282016-11-14 17:08:47 -0800217 std::this_thread::sleep_for(5ms);
Yusuke Satod5039302015-06-16 13:51:14 -0700218 --retry;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700219 } else {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700220 break;
221 }
222 }
223
Tom Cherry20514c42017-04-21 13:48:49 -0700224 if (processes < 0) {
225 PLOG(ERROR) << "Error encountered killing process cgroup uid " << uid << " pid "
226 << initialPid;
227 return -1;
228 }
Collin Mullinerf7e79b92016-06-01 21:03:55 +0000229
Tom Cherry20514c42017-04-21 13:48:49 -0700230 std::chrono::steady_clock::time_point end = std::chrono::steady_clock::now();
Elliott Hughes171df0a2016-08-02 13:30:30 -0700231 auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count();
Tom Cherry20514c42017-04-21 13:48:49 -0700232
233 // We only calculate the number of 'processes' when killing the processes.
234 // In the retries == 0 case, we only kill the processes once and therefore
235 // will not have waited then recalculated how many processes are remaining
236 // after the first signals have been sent.
237 // Logging anything regarding the number of 'processes' here does not make sense.
Dianne Hackborn2c5e7e12014-10-13 17:45:22 -0700238
Colin Crosscf8d1c22014-06-03 13:24:21 -0700239 if (processes == 0) {
Tom Cherry20514c42017-04-21 13:48:49 -0700240 if (retries > 0) {
241 LOG(INFO) << "Successfully killed process cgroup uid " << uid << " pid " << initialPid
242 << " in " << static_cast<int>(ms) << "ms";
243 }
Tom Cherry574a0812018-02-23 13:04:40 -0800244 return RemoveProcessGroup(uid, initialPid);
Colin Crosscf8d1c22014-06-03 13:24:21 -0700245 } else {
Tom Cherry20514c42017-04-21 13:48:49 -0700246 if (retries > 0) {
247 LOG(ERROR) << "Failed to kill process cgroup uid " << uid << " pid " << initialPid
248 << " in " << static_cast<int>(ms) << "ms, " << processes
249 << " processes remain";
250 }
Colin Crosscf8d1c22014-06-03 13:24:21 -0700251 return -1;
252 }
253}
254
Keun-young Parkfac4b632017-03-28 17:25:24 -0700255int killProcessGroup(uid_t uid, int initialPid, int signal) {
Tom Cherry574a0812018-02-23 13:04:40 -0800256 return KillProcessGroup(uid, initialPid, signal, 40 /*retries*/);
Keun-young Parkfac4b632017-03-28 17:25:24 -0700257}
258
259int killProcessGroupOnce(uid_t uid, int initialPid, int signal) {
Tom Cherry574a0812018-02-23 13:04:40 -0800260 return KillProcessGroup(uid, initialPid, signal, 0 /*retries*/);
Keun-young Parkfac4b632017-03-28 17:25:24 -0700261}
262
Tom Cherry574a0812018-02-23 13:04:40 -0800263static bool MkdirAndChown(const std::string& path, mode_t mode, uid_t uid, gid_t gid) {
264 if (mkdir(path.c_str(), mode) == -1 && errno != EEXIST) {
Elliott Hughes171df0a2016-08-02 13:30:30 -0700265 return false;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700266 }
267
Tom Cherry574a0812018-02-23 13:04:40 -0800268 if (chown(path.c_str(), uid, gid) == -1) {
Elliott Hughes171df0a2016-08-02 13:30:30 -0700269 int saved_errno = errno;
Tom Cherry574a0812018-02-23 13:04:40 -0800270 rmdir(path.c_str());
Elliott Hughes171df0a2016-08-02 13:30:30 -0700271 errno = saved_errno;
272 return false;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700273 }
274
Elliott Hughes171df0a2016-08-02 13:30:30 -0700275 return true;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700276}
277
278int createProcessGroup(uid_t uid, int initialPid)
279{
Tom Cherry574a0812018-02-23 13:04:40 -0800280 auto uid_path = ConvertUidToPath(uid);
Colin Crosscf8d1c22014-06-03 13:24:21 -0700281
Tom Cherry574a0812018-02-23 13:04:40 -0800282 if (!MkdirAndChown(uid_path, 0750, AID_SYSTEM, AID_SYSTEM)) {
283 PLOG(ERROR) << "Failed to make and chown " << uid_path;
Elliott Hughes171df0a2016-08-02 13:30:30 -0700284 return -errno;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700285 }
286
Tom Cherry574a0812018-02-23 13:04:40 -0800287 auto uid_pid_path = ConvertUidPidToPath(uid, initialPid);
Colin Crosscf8d1c22014-06-03 13:24:21 -0700288
Tom Cherry574a0812018-02-23 13:04:40 -0800289 if (!MkdirAndChown(uid_pid_path, 0750, AID_SYSTEM, AID_SYSTEM)) {
290 PLOG(ERROR) << "Failed to make and chown " << uid_pid_path;
Elliott Hughes171df0a2016-08-02 13:30:30 -0700291 return -errno;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700292 }
293
Tom Cherry574a0812018-02-23 13:04:40 -0800294 auto uid_pid_procs_file = uid_pid_path + PROCESSGROUP_CGROUP_PROCS_FILE;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700295
Elliott Hughes171df0a2016-08-02 13:30:30 -0700296 int ret = 0;
Tom Cherry574a0812018-02-23 13:04:40 -0800297 if (!WriteStringToFile(std::to_string(initialPid), uid_pid_procs_file)) {
Colin Crosscf8d1c22014-06-03 13:24:21 -0700298 ret = -errno;
Tom Cherry574a0812018-02-23 13:04:40 -0800299 PLOG(ERROR) << "Failed to write '" << initialPid << "' to " << uid_pid_procs_file;
Colin Crosscf8d1c22014-06-03 13:24:21 -0700300 }
301
Colin Crosscf8d1c22014-06-03 13:24:21 -0700302 return ret;
303}
Robert Benead4852262017-07-16 19:38:11 -0700304
Tom Cherry574a0812018-02-23 13:04:40 -0800305static bool SetProcessGroupValue(uid_t uid, int pid, const std::string& file_name, int64_t value) {
306 if (GetCgroupRootPath() != MEM_CGROUP_PATH) {
307 PLOG(ERROR) << "Memcg is not mounted.";
Robert Benead4852262017-07-16 19:38:11 -0700308 return false;
309 }
310
Tom Cherry574a0812018-02-23 13:04:40 -0800311 auto path = ConvertUidPidToPath(uid, pid) + file_name;
Robert Benead4852262017-07-16 19:38:11 -0700312
313 if (!WriteStringToFile(std::to_string(value), path)) {
314 PLOG(ERROR) << "Failed to write '" << value << "' to " << path;
315 return false;
316 }
317 return true;
318}
319
320bool setProcessGroupSwappiness(uid_t uid, int pid, int swappiness) {
Tom Cherry574a0812018-02-23 13:04:40 -0800321 return SetProcessGroupValue(uid, pid, "/memory.swappiness", swappiness);
Robert Benead4852262017-07-16 19:38:11 -0700322}
323
324bool setProcessGroupSoftLimit(uid_t uid, int pid, int64_t soft_limit_in_bytes) {
Tom Cherry574a0812018-02-23 13:04:40 -0800325 return SetProcessGroupValue(uid, pid, "/memory.soft_limit_in_bytes", soft_limit_in_bytes);
Robert Benead4852262017-07-16 19:38:11 -0700326}
327
328bool setProcessGroupLimit(uid_t uid, int pid, int64_t limit_in_bytes) {
Tom Cherry574a0812018-02-23 13:04:40 -0800329 return SetProcessGroupValue(uid, pid, "/memory.limit_in_bytes", limit_in_bytes);
Robert Benead4852262017-07-16 19:38:11 -0700330}