Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 17 | #include "Utils.h" |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 18 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 19 | #include "Process.h" |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 20 | #include "sehandle.h" |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 21 | |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 22 | #include <android-base/file.h> |
| 23 | #include <android-base/logging.h> |
Tom Cherry | d6127ef | 2017-06-15 17:13:56 -0700 | [diff] [blame] | 24 | #include <android-base/properties.h> |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 25 | #include <android-base/strings.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 26 | #include <android-base/stringprintf.h> |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 27 | #include <cutils/fs.h> |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 28 | #include <logwrap/logwrap.h> |
Tom Cherry | d6127ef | 2017-06-15 17:13:56 -0700 | [diff] [blame] | 29 | #include <private/android_filesystem_config.h> |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 30 | |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 31 | #include <mutex> |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 32 | #include <dirent.h> |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 33 | #include <fcntl.h> |
| 34 | #include <linux/fs.h> |
| 35 | #include <stdlib.h> |
| 36 | #include <sys/mount.h> |
| 37 | #include <sys/types.h> |
| 38 | #include <sys/stat.h> |
Elliott Hughes | 0e08e84 | 2017-05-18 09:08:24 -0700 | [diff] [blame] | 39 | #include <sys/sysmacros.h> |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 40 | #include <sys/wait.h> |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 41 | #include <sys/statvfs.h> |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 42 | |
| 43 | #ifndef UMOUNT_NOFOLLOW |
| 44 | #define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */ |
| 45 | #endif |
| 46 | |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 47 | using android::base::ReadFileToString; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 48 | using android::base::StringPrintf; |
| 49 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 50 | namespace android { |
| 51 | namespace vold { |
| 52 | |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 53 | security_context_t sBlkidContext = nullptr; |
| 54 | security_context_t sBlkidUntrustedContext = nullptr; |
| 55 | security_context_t sFsckContext = nullptr; |
| 56 | security_context_t sFsckUntrustedContext = nullptr; |
| 57 | |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 58 | bool sSleepOnUnmount = true; |
| 59 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 60 | static const char* kBlkidPath = "/system/bin/blkid"; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 61 | static const char* kKeyPath = "/data/misc/vold"; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 62 | |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 63 | static const char* kProcFilesystems = "/proc/filesystems"; |
| 64 | |
Jeff Sharkey | ae4f85d | 2017-10-18 17:02:21 -0600 | [diff] [blame] | 65 | // Lock used to protect process-level SELinux changes from racing with each |
| 66 | // other between multiple threads. |
| 67 | static std::mutex kSecurityLock; |
| 68 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 69 | status_t CreateDeviceNode(const std::string& path, dev_t dev) { |
Jeff Sharkey | ae4f85d | 2017-10-18 17:02:21 -0600 | [diff] [blame] | 70 | std::lock_guard<std::mutex> lock(kSecurityLock); |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 71 | const char* cpath = path.c_str(); |
| 72 | status_t res = 0; |
| 73 | |
| 74 | char* secontext = nullptr; |
| 75 | if (sehandle) { |
| 76 | if (!selabel_lookup(sehandle, &secontext, cpath, S_IFBLK)) { |
| 77 | setfscreatecon(secontext); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | mode_t mode = 0660 | S_IFBLK; |
| 82 | if (mknod(cpath, mode, dev) < 0) { |
| 83 | if (errno != EEXIST) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 84 | PLOG(ERROR) << "Failed to create device node for " << major(dev) |
| 85 | << ":" << minor(dev) << " at " << path; |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 86 | res = -errno; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | if (secontext) { |
| 91 | setfscreatecon(nullptr); |
| 92 | freecon(secontext); |
| 93 | } |
| 94 | |
| 95 | return res; |
| 96 | } |
| 97 | |
| 98 | status_t DestroyDeviceNode(const std::string& path) { |
| 99 | const char* cpath = path.c_str(); |
| 100 | if (TEMP_FAILURE_RETRY(unlink(cpath))) { |
| 101 | return -errno; |
| 102 | } else { |
| 103 | return OK; |
| 104 | } |
| 105 | } |
| 106 | |
Jeff Sharkey | f0121c5 | 2015-04-06 14:08:45 -0700 | [diff] [blame] | 107 | status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid) { |
Jeff Sharkey | ae4f85d | 2017-10-18 17:02:21 -0600 | [diff] [blame] | 108 | std::lock_guard<std::mutex> lock(kSecurityLock); |
Jeff Sharkey | f0121c5 | 2015-04-06 14:08:45 -0700 | [diff] [blame] | 109 | const char* cpath = path.c_str(); |
| 110 | |
| 111 | char* secontext = nullptr; |
| 112 | if (sehandle) { |
| 113 | if (!selabel_lookup(sehandle, &secontext, cpath, S_IFDIR)) { |
| 114 | setfscreatecon(secontext); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | int res = fs_prepare_dir(cpath, mode, uid, gid); |
| 119 | |
| 120 | if (secontext) { |
| 121 | setfscreatecon(nullptr); |
| 122 | freecon(secontext); |
| 123 | } |
| 124 | |
| 125 | if (res == 0) { |
| 126 | return OK; |
| 127 | } else { |
| 128 | return -errno; |
| 129 | } |
| 130 | } |
| 131 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 132 | status_t ForceUnmount(const std::string& path) { |
| 133 | const char* cpath = path.c_str(); |
| 134 | if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) { |
| 135 | return OK; |
| 136 | } |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 137 | // Apps might still be handling eject request, so wait before |
| 138 | // we start sending signals |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 139 | if (sSleepOnUnmount) sleep(5); |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 140 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 141 | KillProcessesWithOpenFiles(path, SIGINT); |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 142 | if (sSleepOnUnmount) sleep(5); |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 143 | if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) { |
| 144 | return OK; |
| 145 | } |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 146 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 147 | KillProcessesWithOpenFiles(path, SIGTERM); |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 148 | if (sSleepOnUnmount) sleep(5); |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 149 | if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) { |
| 150 | return OK; |
| 151 | } |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 152 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 153 | KillProcessesWithOpenFiles(path, SIGKILL); |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 154 | if (sSleepOnUnmount) sleep(5); |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 155 | if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) { |
| 156 | return OK; |
| 157 | } |
Jeff Sharkey | f0121c5 | 2015-04-06 14:08:45 -0700 | [diff] [blame] | 158 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 159 | return -errno; |
| 160 | } |
| 161 | |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 162 | status_t KillProcessesUsingPath(const std::string& path) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 163 | if (KillProcessesWithOpenFiles(path, SIGINT) == 0) { |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 164 | return OK; |
| 165 | } |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 166 | if (sSleepOnUnmount) sleep(5); |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 167 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 168 | if (KillProcessesWithOpenFiles(path, SIGTERM) == 0) { |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 169 | return OK; |
| 170 | } |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 171 | if (sSleepOnUnmount) sleep(5); |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 172 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 173 | if (KillProcessesWithOpenFiles(path, SIGKILL) == 0) { |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 174 | return OK; |
| 175 | } |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 176 | if (sSleepOnUnmount) sleep(5); |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 177 | |
| 178 | // Send SIGKILL a second time to determine if we've |
| 179 | // actually killed everyone with open files |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 180 | if (KillProcessesWithOpenFiles(path, SIGKILL) == 0) { |
Jeff Sharkey | 89f74fb | 2015-10-21 12:16:12 -0700 | [diff] [blame] | 181 | return OK; |
| 182 | } |
| 183 | PLOG(ERROR) << "Failed to kill processes using " << path; |
| 184 | return -EBUSY; |
| 185 | } |
| 186 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 187 | status_t BindMount(const std::string& source, const std::string& target) { |
| 188 | if (::mount(source.c_str(), target.c_str(), "", MS_BIND, NULL)) { |
| 189 | PLOG(ERROR) << "Failed to bind mount " << source << " to " << target; |
| 190 | return -errno; |
| 191 | } |
| 192 | return OK; |
| 193 | } |
| 194 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 195 | bool FindValue(const std::string& raw, const std::string& key, std::string* value) { |
| 196 | auto qual = key + "=\""; |
| 197 | auto start = raw.find(qual); |
| 198 | if (start > 0 && raw[start - 1] != ' ') { |
| 199 | start = raw.find(qual, start + 1); |
| 200 | } |
| 201 | |
| 202 | if (start == std::string::npos) return false; |
| 203 | start += qual.length(); |
| 204 | |
| 205 | auto end = raw.find("\"", start); |
| 206 | if (end == std::string::npos) return false; |
| 207 | |
| 208 | *value = raw.substr(start, end - start); |
| 209 | return true; |
| 210 | } |
| 211 | |
| 212 | static status_t readMetadata(const std::string& path, std::string* fsType, |
| 213 | std::string* fsUuid, std::string* fsLabel, bool untrusted) { |
| 214 | fsType->clear(); |
| 215 | fsUuid->clear(); |
| 216 | fsLabel->clear(); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 217 | |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 218 | std::vector<std::string> cmd; |
| 219 | cmd.push_back(kBlkidPath); |
| 220 | cmd.push_back("-c"); |
| 221 | cmd.push_back("/dev/null"); |
Jeff Sharkey | eddf9bd | 2015-08-12 16:04:35 -0700 | [diff] [blame] | 222 | cmd.push_back("-s"); |
| 223 | cmd.push_back("TYPE"); |
| 224 | cmd.push_back("-s"); |
| 225 | cmd.push_back("UUID"); |
| 226 | cmd.push_back("-s"); |
| 227 | cmd.push_back("LABEL"); |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 228 | cmd.push_back(path); |
| 229 | |
| 230 | std::vector<std::string> output; |
| 231 | status_t res = ForkExecvp(cmd, output, untrusted ? sBlkidUntrustedContext : sBlkidContext); |
| 232 | if (res != OK) { |
| 233 | LOG(WARNING) << "blkid failed to identify " << path; |
| 234 | return res; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 235 | } |
| 236 | |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 237 | for (const auto& line : output) { |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 238 | // Extract values from blkid output, if defined |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 239 | FindValue(line, "TYPE", fsType); |
| 240 | FindValue(line, "UUID", fsUuid); |
| 241 | FindValue(line, "LABEL", fsLabel); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 242 | } |
| 243 | |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 244 | return OK; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 245 | } |
| 246 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 247 | status_t ReadMetadata(const std::string& path, std::string* fsType, |
| 248 | std::string* fsUuid, std::string* fsLabel) { |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 249 | return readMetadata(path, fsType, fsUuid, fsLabel, false); |
| 250 | } |
| 251 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 252 | status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, |
| 253 | std::string* fsUuid, std::string* fsLabel) { |
Jeff Sharkey | 95c87cc | 2015-04-01 11:54:32 -0700 | [diff] [blame] | 254 | return readMetadata(path, fsType, fsUuid, fsLabel, true); |
| 255 | } |
| 256 | |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 257 | status_t ForkExecvp(const std::vector<std::string>& args) { |
| 258 | return ForkExecvp(args, nullptr); |
| 259 | } |
| 260 | |
| 261 | status_t ForkExecvp(const std::vector<std::string>& args, security_context_t context) { |
Jeff Sharkey | ae4f85d | 2017-10-18 17:02:21 -0600 | [diff] [blame] | 262 | std::lock_guard<std::mutex> lock(kSecurityLock); |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 263 | size_t argc = args.size(); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 264 | char** argv = (char**) calloc(argc, sizeof(char*)); |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 265 | for (size_t i = 0; i < argc; i++) { |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 266 | argv[i] = (char*) args[i].c_str(); |
| 267 | if (i == 0) { |
| 268 | LOG(VERBOSE) << args[i]; |
| 269 | } else { |
| 270 | LOG(VERBOSE) << " " << args[i]; |
| 271 | } |
| 272 | } |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 273 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 274 | if (context) { |
| 275 | if (setexeccon(context)) { |
| 276 | LOG(ERROR) << "Failed to setexeccon"; |
| 277 | abort(); |
| 278 | } |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 279 | } |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 280 | status_t res = android_fork_execvp(argc, argv, NULL, false, true); |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 281 | if (context) { |
| 282 | if (setexeccon(nullptr)) { |
| 283 | LOG(ERROR) << "Failed to setexeccon"; |
| 284 | abort(); |
| 285 | } |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 288 | free(argv); |
| 289 | return res; |
| 290 | } |
| 291 | |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 292 | status_t ForkExecvp(const std::vector<std::string>& args, |
| 293 | std::vector<std::string>& output) { |
| 294 | return ForkExecvp(args, output, nullptr); |
| 295 | } |
| 296 | |
| 297 | status_t ForkExecvp(const std::vector<std::string>& args, |
| 298 | std::vector<std::string>& output, security_context_t context) { |
Jeff Sharkey | ae4f85d | 2017-10-18 17:02:21 -0600 | [diff] [blame] | 299 | std::lock_guard<std::mutex> lock(kSecurityLock); |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 300 | std::string cmd; |
| 301 | for (size_t i = 0; i < args.size(); i++) { |
| 302 | cmd += args[i] + " "; |
| 303 | if (i == 0) { |
| 304 | LOG(VERBOSE) << args[i]; |
| 305 | } else { |
| 306 | LOG(VERBOSE) << " " << args[i]; |
| 307 | } |
| 308 | } |
| 309 | output.clear(); |
| 310 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 311 | if (context) { |
| 312 | if (setexeccon(context)) { |
| 313 | LOG(ERROR) << "Failed to setexeccon"; |
| 314 | abort(); |
| 315 | } |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 316 | } |
Jeff Sharkey | 32ebb73 | 2017-03-27 16:18:50 -0600 | [diff] [blame] | 317 | FILE* fp = popen(cmd.c_str(), "r"); // NOLINT |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 318 | if (context) { |
| 319 | if (setexeccon(nullptr)) { |
| 320 | LOG(ERROR) << "Failed to setexeccon"; |
| 321 | abort(); |
| 322 | } |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | if (!fp) { |
| 326 | PLOG(ERROR) << "Failed to popen " << cmd; |
| 327 | return -errno; |
| 328 | } |
| 329 | char line[1024]; |
| 330 | while (fgets(line, sizeof(line), fp) != nullptr) { |
| 331 | LOG(VERBOSE) << line; |
| 332 | output.push_back(std::string(line)); |
| 333 | } |
| 334 | if (pclose(fp) != 0) { |
| 335 | PLOG(ERROR) << "Failed to pclose " << cmd; |
| 336 | return -errno; |
| 337 | } |
| 338 | |
| 339 | return OK; |
| 340 | } |
| 341 | |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 342 | pid_t ForkExecvpAsync(const std::vector<std::string>& args) { |
| 343 | size_t argc = args.size(); |
| 344 | char** argv = (char**) calloc(argc + 1, sizeof(char*)); |
| 345 | for (size_t i = 0; i < argc; i++) { |
| 346 | argv[i] = (char*) args[i].c_str(); |
| 347 | if (i == 0) { |
| 348 | LOG(VERBOSE) << args[i]; |
| 349 | } else { |
| 350 | LOG(VERBOSE) << " " << args[i]; |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | pid_t pid = fork(); |
| 355 | if (pid == 0) { |
| 356 | close(STDIN_FILENO); |
| 357 | close(STDOUT_FILENO); |
| 358 | close(STDERR_FILENO); |
| 359 | |
| 360 | if (execvp(argv[0], argv)) { |
| 361 | PLOG(ERROR) << "Failed to exec"; |
| 362 | } |
| 363 | |
| 364 | _exit(1); |
| 365 | } |
| 366 | |
| 367 | if (pid == -1) { |
| 368 | PLOG(ERROR) << "Failed to exec"; |
| 369 | } |
| 370 | |
| 371 | free(argv); |
| 372 | return pid; |
| 373 | } |
| 374 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 375 | status_t ReadRandomBytes(size_t bytes, std::string& out) { |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 376 | out.resize(bytes); |
| 377 | return ReadRandomBytes(bytes, &out[0]); |
| 378 | } |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 379 | |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 380 | status_t ReadRandomBytes(size_t bytes, char* buf) { |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 381 | int fd = TEMP_FAILURE_RETRY(open("/dev/urandom", O_RDONLY | O_CLOEXEC | O_NOFOLLOW)); |
| 382 | if (fd == -1) { |
| 383 | return -errno; |
| 384 | } |
| 385 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 386 | size_t n; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 387 | while ((n = TEMP_FAILURE_RETRY(read(fd, &buf[0], bytes))) > 0) { |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 388 | bytes -= n; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 389 | buf += n; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 390 | } |
Elliott Hughes | a623108 | 2015-05-15 18:34:24 -0700 | [diff] [blame] | 391 | close(fd); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 392 | |
| 393 | if (bytes == 0) { |
| 394 | return OK; |
| 395 | } else { |
| 396 | return -EIO; |
| 397 | } |
| 398 | } |
| 399 | |
Jeff Sharkey | 46bb69f | 2017-06-21 13:52:23 -0600 | [diff] [blame] | 400 | status_t GenerateRandomUuid(std::string& out) { |
| 401 | status_t res = ReadRandomBytes(16, out); |
| 402 | if (res == OK) { |
| 403 | out[6] &= 0x0f; /* clear version */ |
| 404 | out[6] |= 0x40; /* set to version 4 */ |
| 405 | out[8] &= 0x3f; /* clear variant */ |
| 406 | out[8] |= 0x80; /* set to IETF variant */ |
| 407 | } |
| 408 | return res; |
| 409 | } |
| 410 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 411 | status_t HexToStr(const std::string& hex, std::string& str) { |
| 412 | str.clear(); |
| 413 | bool even = true; |
| 414 | char cur = 0; |
| 415 | for (size_t i = 0; i < hex.size(); i++) { |
| 416 | int val = 0; |
| 417 | switch (hex[i]) { |
| 418 | case ' ': case '-': case ':': continue; |
| 419 | case 'f': case 'F': val = 15; break; |
| 420 | case 'e': case 'E': val = 14; break; |
| 421 | case 'd': case 'D': val = 13; break; |
| 422 | case 'c': case 'C': val = 12; break; |
| 423 | case 'b': case 'B': val = 11; break; |
| 424 | case 'a': case 'A': val = 10; break; |
| 425 | case '9': val = 9; break; |
| 426 | case '8': val = 8; break; |
| 427 | case '7': val = 7; break; |
| 428 | case '6': val = 6; break; |
| 429 | case '5': val = 5; break; |
| 430 | case '4': val = 4; break; |
| 431 | case '3': val = 3; break; |
| 432 | case '2': val = 2; break; |
| 433 | case '1': val = 1; break; |
| 434 | case '0': val = 0; break; |
| 435 | default: return -EINVAL; |
| 436 | } |
| 437 | |
| 438 | if (even) { |
| 439 | cur = val << 4; |
| 440 | } else { |
| 441 | cur += val; |
| 442 | str.push_back(cur); |
| 443 | cur = 0; |
| 444 | } |
| 445 | even = !even; |
| 446 | } |
| 447 | return even ? OK : -EINVAL; |
| 448 | } |
| 449 | |
| 450 | static const char* kLookup = "0123456789abcdef"; |
| 451 | |
| 452 | status_t StrToHex(const std::string& str, std::string& hex) { |
| 453 | hex.clear(); |
| 454 | for (size_t i = 0; i < str.size(); i++) { |
Jeff Sharkey | ef36975 | 2015-04-29 15:57:48 -0700 | [diff] [blame] | 455 | hex.push_back(kLookup[(str[i] & 0xF0) >> 4]); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 456 | hex.push_back(kLookup[str[i] & 0x0F]); |
| 457 | } |
| 458 | return OK; |
| 459 | } |
| 460 | |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 461 | status_t StrToHex(const KeyBuffer& str, KeyBuffer& hex) { |
| 462 | hex.clear(); |
| 463 | for (size_t i = 0; i < str.size(); i++) { |
| 464 | hex.push_back(kLookup[(str.data()[i] & 0xF0) >> 4]); |
| 465 | hex.push_back(kLookup[str.data()[i] & 0x0F]); |
| 466 | } |
| 467 | return OK; |
| 468 | } |
| 469 | |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 470 | status_t NormalizeHex(const std::string& in, std::string& out) { |
| 471 | std::string tmp; |
| 472 | if (HexToStr(in, tmp)) { |
| 473 | return -EINVAL; |
| 474 | } |
| 475 | return StrToHex(tmp, out); |
| 476 | } |
| 477 | |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 478 | uint64_t GetFreeBytes(const std::string& path) { |
| 479 | struct statvfs sb; |
| 480 | if (statvfs(path.c_str(), &sb) == 0) { |
Jeff Sharkey | a0220a5 | 2017-04-03 17:11:45 -0600 | [diff] [blame] | 481 | return (uint64_t) sb.f_bavail * sb.f_frsize; |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 482 | } else { |
| 483 | return -1; |
| 484 | } |
| 485 | } |
| 486 | |
| 487 | // TODO: borrowed from frameworks/native/libs/diskusage/ which should |
| 488 | // eventually be migrated into system/ |
| 489 | static int64_t stat_size(struct stat *s) { |
| 490 | int64_t blksize = s->st_blksize; |
| 491 | // count actual blocks used instead of nominal file size |
| 492 | int64_t size = s->st_blocks * 512; |
| 493 | |
| 494 | if (blksize) { |
| 495 | /* round up to filesystem block size */ |
| 496 | size = (size + blksize - 1) & (~(blksize - 1)); |
| 497 | } |
| 498 | |
| 499 | return size; |
| 500 | } |
| 501 | |
| 502 | // TODO: borrowed from frameworks/native/libs/diskusage/ which should |
| 503 | // eventually be migrated into system/ |
| 504 | int64_t calculate_dir_size(int dfd) { |
| 505 | int64_t size = 0; |
| 506 | struct stat s; |
| 507 | DIR *d; |
| 508 | struct dirent *de; |
| 509 | |
| 510 | d = fdopendir(dfd); |
| 511 | if (d == NULL) { |
| 512 | close(dfd); |
| 513 | return 0; |
| 514 | } |
| 515 | |
| 516 | while ((de = readdir(d))) { |
| 517 | const char *name = de->d_name; |
| 518 | if (fstatat(dfd, name, &s, AT_SYMLINK_NOFOLLOW) == 0) { |
| 519 | size += stat_size(&s); |
| 520 | } |
| 521 | if (de->d_type == DT_DIR) { |
| 522 | int subfd; |
| 523 | |
| 524 | /* always skip "." and ".." */ |
| 525 | if (name[0] == '.') { |
| 526 | if (name[1] == 0) |
| 527 | continue; |
| 528 | if ((name[1] == '.') && (name[2] == 0)) |
| 529 | continue; |
| 530 | } |
| 531 | |
Jeff Sharkey | fd3dc3c | 2017-03-27 10:49:21 -0600 | [diff] [blame] | 532 | subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_CLOEXEC); |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 533 | if (subfd >= 0) { |
| 534 | size += calculate_dir_size(subfd); |
| 535 | } |
| 536 | } |
| 537 | } |
| 538 | closedir(d); |
| 539 | return size; |
| 540 | } |
| 541 | |
| 542 | uint64_t GetTreeBytes(const std::string& path) { |
Jeff Sharkey | fd3dc3c | 2017-03-27 10:49:21 -0600 | [diff] [blame] | 543 | int dirfd = open(path.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC); |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 544 | if (dirfd < 0) { |
| 545 | PLOG(WARNING) << "Failed to open " << path; |
| 546 | return -1; |
| 547 | } else { |
Josh Gao | 72fb1a6 | 2018-05-29 19:05:16 -0700 | [diff] [blame] | 548 | return calculate_dir_size(dirfd); |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 549 | } |
| 550 | } |
| 551 | |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 552 | bool IsFilesystemSupported(const std::string& fsType) { |
| 553 | std::string supported; |
| 554 | if (!ReadFileToString(kProcFilesystems, &supported)) { |
| 555 | PLOG(ERROR) << "Failed to read supported filesystems"; |
| 556 | return false; |
| 557 | } |
| 558 | return supported.find(fsType + "\n") != std::string::npos; |
| 559 | } |
| 560 | |
| 561 | status_t WipeBlockDevice(const std::string& path) { |
| 562 | status_t res = -1; |
| 563 | const char* c_path = path.c_str(); |
| 564 | unsigned long nr_sec = 0; |
| 565 | unsigned long long range[2]; |
| 566 | |
| 567 | int fd = TEMP_FAILURE_RETRY(open(c_path, O_RDWR | O_CLOEXEC)); |
| 568 | if (fd == -1) { |
| 569 | PLOG(ERROR) << "Failed to open " << path; |
| 570 | goto done; |
| 571 | } |
| 572 | |
caozhiyuan | 9102b0b | 2015-10-29 16:39:00 +0800 | [diff] [blame] | 573 | if ((ioctl(fd, BLKGETSIZE, &nr_sec)) == -1) { |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 574 | PLOG(ERROR) << "Failed to determine size of " << path; |
| 575 | goto done; |
| 576 | } |
| 577 | |
| 578 | range[0] = 0; |
| 579 | range[1] = (unsigned long long) nr_sec * 512; |
| 580 | |
| 581 | LOG(INFO) << "About to discard " << range[1] << " on " << path; |
| 582 | if (ioctl(fd, BLKDISCARD, &range) == 0) { |
| 583 | LOG(INFO) << "Discard success on " << path; |
| 584 | res = 0; |
| 585 | } else { |
| 586 | PLOG(ERROR) << "Discard failure on " << path; |
| 587 | } |
| 588 | |
| 589 | done: |
| 590 | close(fd); |
| 591 | return res; |
| 592 | } |
| 593 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 594 | static bool isValidFilename(const std::string& name) { |
| 595 | if (name.empty() || (name == ".") || (name == "..") |
| 596 | || (name.find('/') != std::string::npos)) { |
| 597 | return false; |
| 598 | } else { |
| 599 | return true; |
| 600 | } |
| 601 | } |
| 602 | |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 603 | std::string BuildKeyPath(const std::string& partGuid) { |
| 604 | return StringPrintf("%s/expand_%s.key", kKeyPath, partGuid.c_str()); |
| 605 | } |
| 606 | |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 607 | std::string BuildDataSystemLegacyPath(userid_t userId) { |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 608 | return StringPrintf("%s/system/users/%u", BuildDataPath("").c_str(), userId); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 609 | } |
| 610 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 611 | std::string BuildDataSystemCePath(userid_t userId) { |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 612 | return StringPrintf("%s/system_ce/%u", BuildDataPath("").c_str(), userId); |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 613 | } |
| 614 | |
| 615 | std::string BuildDataSystemDePath(userid_t userId) { |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 616 | return StringPrintf("%s/system_de/%u", BuildDataPath("").c_str(), userId); |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 617 | } |
| 618 | |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 619 | std::string BuildDataMiscLegacyPath(userid_t userId) { |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 620 | return StringPrintf("%s/misc/user/%u", BuildDataPath("").c_str(), userId); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 621 | } |
| 622 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 623 | std::string BuildDataMiscCePath(userid_t userId) { |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 624 | return StringPrintf("%s/misc_ce/%u", BuildDataPath("").c_str(), userId); |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | std::string BuildDataMiscDePath(userid_t userId) { |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 628 | return StringPrintf("%s/misc_de/%u", BuildDataPath("").c_str(), userId); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 629 | } |
| 630 | |
Calin Juravle | 79f55a4 | 2016-02-17 20:14:46 +0000 | [diff] [blame] | 631 | // Keep in sync with installd (frameworks/native/cmds/installd/utils.h) |
| 632 | std::string BuildDataProfilesDePath(userid_t userId) { |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 633 | return StringPrintf("%s/misc/profiles/cur/%u", BuildDataPath("").c_str(), userId); |
Calin Juravle | 79f55a4 | 2016-02-17 20:14:46 +0000 | [diff] [blame] | 634 | } |
| 635 | |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 636 | std::string BuildDataVendorCePath(userid_t userId) { |
| 637 | return StringPrintf("%s/vendor_ce/%u", BuildDataPath("").c_str(), userId); |
| 638 | } |
| 639 | |
| 640 | std::string BuildDataVendorDePath(userid_t userId) { |
| 641 | return StringPrintf("%s/vendor_de/%u", BuildDataPath("").c_str(), userId); |
| 642 | } |
| 643 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 644 | std::string BuildDataPath(const std::string& volumeUuid) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 645 | // TODO: unify with installd path generation logic |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 646 | if (volumeUuid.empty()) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 647 | return "/data"; |
| 648 | } else { |
| 649 | CHECK(isValidFilename(volumeUuid)); |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 650 | return StringPrintf("/mnt/expand/%s", volumeUuid.c_str()); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 651 | } |
| 652 | } |
| 653 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 654 | std::string BuildDataMediaCePath(const std::string& volumeUuid, userid_t userId) { |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 655 | // TODO: unify with installd path generation logic |
| 656 | std::string data(BuildDataPath(volumeUuid)); |
| 657 | return StringPrintf("%s/media/%u", data.c_str(), userId); |
| 658 | } |
| 659 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 660 | std::string BuildDataUserCePath(const std::string& volumeUuid, userid_t userId) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 661 | // TODO: unify with installd path generation logic |
| 662 | std::string data(BuildDataPath(volumeUuid)); |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 663 | if (volumeUuid.empty() && userId == 0) { |
cjbao | eb50114 | 2017-04-12 00:09:00 +0800 | [diff] [blame] | 664 | std::string legacy = StringPrintf("%s/data", data.c_str()); |
| 665 | struct stat sb; |
| 666 | if (lstat(legacy.c_str(), &sb) == 0 && S_ISDIR(sb.st_mode)) { |
| 667 | /* /data/data is dir, return /data/data for legacy system */ |
| 668 | return legacy; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 669 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 670 | } |
cjbao | eb50114 | 2017-04-12 00:09:00 +0800 | [diff] [blame] | 671 | return StringPrintf("%s/user/%u", data.c_str(), userId); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 672 | } |
| 673 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 674 | std::string BuildDataUserDePath(const std::string& volumeUuid, userid_t userId) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 675 | // TODO: unify with installd path generation logic |
| 676 | std::string data(BuildDataPath(volumeUuid)); |
| 677 | return StringPrintf("%s/user_de/%u", data.c_str(), userId); |
| 678 | } |
| 679 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 680 | dev_t GetDevice(const std::string& path) { |
| 681 | struct stat sb; |
| 682 | if (stat(path.c_str(), &sb)) { |
| 683 | PLOG(WARNING) << "Failed to stat " << path; |
| 684 | return 0; |
| 685 | } else { |
| 686 | return sb.st_dev; |
| 687 | } |
| 688 | } |
| 689 | |
Jeff Sharkey | d24aeda | 2016-07-15 16:20:22 -0600 | [diff] [blame] | 690 | status_t RestoreconRecursive(const std::string& path) { |
| 691 | LOG(VERBOSE) << "Starting restorecon of " << path; |
| 692 | |
Tom Cherry | d6127ef | 2017-06-15 17:13:56 -0700 | [diff] [blame] | 693 | static constexpr const char* kRestoreconString = "selinux.restorecon_recursive"; |
Jeff Sharkey | d24aeda | 2016-07-15 16:20:22 -0600 | [diff] [blame] | 694 | |
Tom Cherry | d6127ef | 2017-06-15 17:13:56 -0700 | [diff] [blame] | 695 | android::base::SetProperty(kRestoreconString, ""); |
| 696 | android::base::SetProperty(kRestoreconString, path); |
| 697 | |
| 698 | android::base::WaitForProperty(kRestoreconString, path); |
Jeff Sharkey | d24aeda | 2016-07-15 16:20:22 -0600 | [diff] [blame] | 699 | |
| 700 | LOG(VERBOSE) << "Finished restorecon of " << path; |
| 701 | return OK; |
| 702 | } |
| 703 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 704 | bool Readlinkat(int dirfd, const std::string& path, std::string* result) { |
| 705 | // Shamelessly borrowed from android::base::Readlink() |
| 706 | result->clear(); |
| 707 | |
| 708 | // Most Linux file systems (ext2 and ext4, say) limit symbolic links to |
| 709 | // 4095 bytes. Since we'll copy out into the string anyway, it doesn't |
| 710 | // waste memory to just start there. We add 1 so that we can recognize |
| 711 | // whether it actually fit (rather than being truncated to 4095). |
| 712 | std::vector<char> buf(4095 + 1); |
| 713 | while (true) { |
| 714 | ssize_t size = readlinkat(dirfd, path.c_str(), &buf[0], buf.size()); |
| 715 | // Unrecoverable error? |
| 716 | if (size == -1) |
| 717 | return false; |
| 718 | // It fit! (If size == buf.size(), it may have been truncated.) |
| 719 | if (static_cast<size_t>(size) < buf.size()) { |
| 720 | result->assign(&buf[0], size); |
| 721 | return true; |
| 722 | } |
| 723 | // Double our buffer and try again. |
| 724 | buf.resize(buf.size() * 2); |
Daichi Hirono | 10d3488 | 2016-01-29 14:33:51 +0900 | [diff] [blame] | 725 | } |
| 726 | } |
| 727 | |
Yu Ning | 942d4e8 | 2016-01-08 17:36:47 +0800 | [diff] [blame] | 728 | bool IsRunningInEmulator() { |
Tom Cherry | d6127ef | 2017-06-15 17:13:56 -0700 | [diff] [blame] | 729 | return android::base::GetBoolProperty("ro.kernel.qemu", false); |
Yu Ning | 942d4e8 | 2016-01-08 17:36:47 +0800 | [diff] [blame] | 730 | } |
| 731 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 732 | } // namespace vold |
| 733 | } // namespace android |