blob: c1d55eedcc58d88bdac1dd50d11add488054f56f [file] [log] [blame]
San Mehat586536c2010-02-16 17:12:00 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
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
Paul Crowley14c8c072018-09-18 13:30:21 -070017#include <ctype.h>
18#include <dirent.h>
San Mehat586536c2010-02-16 17:12:00 -080019#include <errno.h>
San Mehat586536c2010-02-16 17:12:00 -080020#include <fcntl.h>
Jeff Sharkey3472e522017-10-06 18:02:53 -060021#include <fts.h>
San Mehat586536c2010-02-16 17:12:00 -080022#include <poll.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070023#include <pwd.h>
San Mehat586536c2010-02-16 17:12:00 -080024#include <signal.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070025#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <sys/stat.h>
29#include <unistd.h>
San Mehat586536c2010-02-16 17:12:00 -080030
Jeff Sharkey3472e522017-10-06 18:02:53 -060031#include <fstream>
Ricky Wai07e64a42020-02-11 14:31:24 +000032#include <mntent.h>
Jeff Sharkey3472e522017-10-06 18:02:53 -060033#include <unordered_set>
Jeff Sharkey32ebb732017-03-27 16:18:50 -060034
35#include <android-base/file.h>
Jeff Sharkey32ebb732017-03-27 16:18:50 -060036#include <android-base/logging.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070037#include <android-base/parseint.h>
38#include <android-base/stringprintf.h>
39#include <android-base/strings.h>
San Mehat586536c2010-02-16 17:12:00 -080040
41#include "Process.h"
Zim75273002021-03-04 12:21:24 +000042#include "Utils.h"
San Mehat586536c2010-02-16 17:12:00 -080043
Jeff Sharkey32ebb732017-03-27 16:18:50 -060044using android::base::StringPrintf;
45
Jeff Sharkey3472e522017-10-06 18:02:53 -060046namespace android {
47namespace vold {
San Mehat586536c2010-02-16 17:12:00 -080048
Jeff Sharkey3472e522017-10-06 18:02:53 -060049static bool checkMaps(const std::string& path, const std::string& prefix) {
50 bool found = false;
Suren Baghdasaryan28af26a2019-03-26 10:00:05 -070051 auto file = std::unique_ptr<FILE, decltype(&fclose)>{fopen(path.c_str(), "re"), fclose};
52 if (!file) {
53 return false;
54 }
55
56 char* buf = nullptr;
57 size_t len = 0;
58 while (getline(&buf, &len, file.get()) != -1) {
59 std::string line(buf);
Jeff Sharkey3472e522017-10-06 18:02:53 -060060 std::string::size_type pos = line.find('/');
61 if (pos != std::string::npos) {
62 line = line.substr(pos);
Elliott Hughes32a5b9a2017-12-20 12:38:47 -080063 if (android::base::StartsWith(line, prefix)) {
Jeff Sharkey3472e522017-10-06 18:02:53 -060064 LOG(WARNING) << "Found map " << path << " referencing " << line;
65 found = true;
Suren Baghdasaryan28af26a2019-03-26 10:00:05 -070066 break;
San Mehat586536c2010-02-16 17:12:00 -080067 }
San Mehat586536c2010-02-16 17:12:00 -080068 }
69 }
Suren Baghdasaryan28af26a2019-03-26 10:00:05 -070070 free(buf);
71
Jeff Sharkey3472e522017-10-06 18:02:53 -060072 return found;
San Mehat586536c2010-02-16 17:12:00 -080073}
74
Jeff Sharkey3472e522017-10-06 18:02:53 -060075static bool checkSymlink(const std::string& path, const std::string& prefix) {
76 std::string res;
77 if (android::base::Readlink(path, &res)) {
Elliott Hughes32a5b9a2017-12-20 12:38:47 -080078 if (android::base::StartsWith(res, prefix)) {
Jeff Sharkey3472e522017-10-06 18:02:53 -060079 LOG(WARNING) << "Found symlink " << path << " referencing " << res;
80 return true;
San Mehat586536c2010-02-16 17:12:00 -080081 }
82 }
Jeff Sharkey3472e522017-10-06 18:02:53 -060083 return false;
San Mehat586536c2010-02-16 17:12:00 -080084}
85
Ricky Wai07e64a42020-02-11 14:31:24 +000086// TODO: Refactor the code with KillProcessesWithOpenFiles().
Ricky Wai23356372021-04-30 09:53:07 +010087int KillProcessesWithTmpfsMounts(const std::string& prefix, int signal) {
Ricky Wai07e64a42020-02-11 14:31:24 +000088 std::unordered_set<pid_t> pids;
89
90 auto proc_d = std::unique_ptr<DIR, int (*)(DIR*)>(opendir("/proc"), closedir);
91 if (!proc_d) {
92 PLOG(ERROR) << "Failed to open proc";
93 return -1;
94 }
95
96 struct dirent* proc_de;
97 while ((proc_de = readdir(proc_d.get())) != nullptr) {
98 // We only care about valid PIDs
99 pid_t pid;
100 if (proc_de->d_type != DT_DIR) continue;
101 if (!android::base::ParseInt(proc_de->d_name, &pid)) continue;
102
103 // Look for references to prefix
104 std::string mounts_file(StringPrintf("/proc/%d/mounts", pid));
105 auto fp = std::unique_ptr<FILE, int (*)(FILE*)>(
106 setmntent(mounts_file.c_str(), "r"), endmntent);
107 if (!fp) {
108 PLOG(WARNING) << "Failed to open " << mounts_file;
109 continue;
110 }
111
112 // Check if obb directory is mounted, and get all packages of mounted app data directory.
113 mntent* mentry;
114 while ((mentry = getmntent(fp.get())) != nullptr) {
Ricky Wai23356372021-04-30 09:53:07 +0100115 if (mentry->mnt_fsname != nullptr && strncmp(mentry->mnt_fsname, "tmpfs", 5) == 0
116 && android::base::StartsWith(mentry->mnt_dir, prefix)) {
Ricky Wai07e64a42020-02-11 14:31:24 +0000117 pids.insert(pid);
118 break;
119 }
120 }
121 }
122 if (signal != 0) {
123 for (const auto& pid : pids) {
124 LOG(WARNING) << "Killing pid "<< pid << " with signal " << strsignal(signal) <<
125 " because it has a mount with prefix " << prefix;
126 kill(pid, signal);
127 }
128 }
129 return pids.size();
130}
131
Zim75273002021-03-04 12:21:24 +0000132int KillProcessesWithOpenFiles(const std::string& prefix, int signal, bool killFuseDaemon) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600133 std::unordered_set<pid_t> pids;
San Mehat586536c2010-02-16 17:12:00 -0800134
Jeff Sharkey3472e522017-10-06 18:02:53 -0600135 auto proc_d = std::unique_ptr<DIR, int (*)(DIR*)>(opendir("/proc"), closedir);
136 if (!proc_d) {
137 PLOG(ERROR) << "Failed to open proc";
138 return -1;
San Mehat586536c2010-02-16 17:12:00 -0800139 }
140
Jeff Sharkey3472e522017-10-06 18:02:53 -0600141 struct dirent* proc_de;
142 while ((proc_de = readdir(proc_d.get())) != nullptr) {
143 // We only care about valid PIDs
144 pid_t pid;
145 if (proc_de->d_type != DT_DIR) continue;
146 if (!android::base::ParseInt(proc_de->d_name, &pid)) continue;
Jeff Sharkey32ebb732017-03-27 16:18:50 -0600147
Jeff Sharkey3472e522017-10-06 18:02:53 -0600148 // Look for references to prefix
149 bool found = false;
150 auto path = StringPrintf("/proc/%d", pid);
151 found |= checkMaps(path + "/maps", prefix);
152 found |= checkSymlink(path + "/cwd", prefix);
153 found |= checkSymlink(path + "/root", prefix);
154 found |= checkSymlink(path + "/exe", prefix);
San Mehat586536c2010-02-16 17:12:00 -0800155
Jeff Sharkey3472e522017-10-06 18:02:53 -0600156 auto fd_path = path + "/fd";
157 auto fd_d = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(fd_path.c_str()), closedir);
158 if (!fd_d) {
159 PLOG(WARNING) << "Failed to open " << fd_path;
San Mehat586536c2010-02-16 17:12:00 -0800160 } else {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600161 struct dirent* fd_de;
162 while ((fd_de = readdir(fd_d.get())) != nullptr) {
163 if (fd_de->d_type != DT_LNK) continue;
164 found |= checkSymlink(fd_path + "/" + fd_de->d_name, prefix);
165 }
San Mehat586536c2010-02-16 17:12:00 -0800166 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700167
Jeff Sharkey3472e522017-10-06 18:02:53 -0600168 if (found) {
Zim75273002021-03-04 12:21:24 +0000169 if (!IsFuseDaemon(pid) || killFuseDaemon) {
170 pids.insert(pid);
171 } else {
172 LOG(WARNING) << "Found FUSE daemon with open file. Skipping...";
173 }
San Mehat586536c2010-02-16 17:12:00 -0800174 }
175 }
Jeff Sharkey3472e522017-10-06 18:02:53 -0600176 if (signal != 0) {
177 for (const auto& pid : pids) {
Eric Biggersc78ae602021-05-05 12:11:33 -0700178 std::string comm;
179 android::base::ReadFileToString(StringPrintf("/proc/%d/comm", pid), &comm);
180 comm = android::base::Trim(comm);
181
182 std::string exe;
183 android::base::Readlink(StringPrintf("/proc/%d/exe", pid), &exe);
184
185 LOG(WARNING) << "Sending " << strsignal(signal) << " to pid " << pid << " (" << comm
186 << ", " << exe << ")";
Jeff Sharkey3472e522017-10-06 18:02:53 -0600187 kill(pid, signal);
188 }
189 }
190 return pids.size();
San Mehat586536c2010-02-16 17:12:00 -0800191}
Jeff Sharkey3472e522017-10-06 18:02:53 -0600192
193} // namespace vold
194} // namespace android