blob: 38edcb3bdba3eee97dfc859e4c9306022c9a523f [file] [log] [blame]
Jeff Sharkeydeb24052015-03-02 21:01:40 -08001/*
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 Sharkeydeb24052015-03-02 21:01:40 -080017#include "Utils.h"
Paul Crowley56292ef2017-10-20 08:07:53 -070018
Jeff Sharkeydeb24052015-03-02 21:01:40 -080019#include "Process.h"
Paul Crowley56292ef2017-10-20 08:07:53 -070020#include "sehandle.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080021
Elliott Hughes7e128fb2015-12-04 15:50:53 -080022#include <android-base/file.h>
23#include <android-base/logging.h>
Tom Cherryd6127ef2017-06-15 17:13:56 -070024#include <android-base/properties.h>
Jeff Sharkey3472e522017-10-06 18:02:53 -060025#include <android-base/strings.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080026#include <android-base/stringprintf.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080027#include <cutils/fs.h>
Jeff Sharkey9c484982015-03-31 10:35:33 -070028#include <logwrap/logwrap.h>
Tom Cherryd6127ef2017-06-15 17:13:56 -070029#include <private/android_filesystem_config.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080030
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070031#include <mutex>
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070032#include <dirent.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080033#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 Hughes0e08e842017-05-18 09:08:24 -070039#include <sys/sysmacros.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080040#include <sys/wait.h>
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -070041#include <sys/statvfs.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080042
43#ifndef UMOUNT_NOFOLLOW
44#define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */
45#endif
46
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070047using android::base::ReadFileToString;
Jeff Sharkey9c484982015-03-31 10:35:33 -070048using android::base::StringPrintf;
49
Jeff Sharkeydeb24052015-03-02 21:01:40 -080050namespace android {
51namespace vold {
52
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070053security_context_t sBlkidContext = nullptr;
54security_context_t sBlkidUntrustedContext = nullptr;
55security_context_t sFsckContext = nullptr;
56security_context_t sFsckUntrustedContext = nullptr;
57
Paul Crowley56292ef2017-10-20 08:07:53 -070058bool sSleepOnUnmount = true;
59
Jeff Sharkey9c484982015-03-31 10:35:33 -070060static const char* kBlkidPath = "/system/bin/blkid";
Jeff Sharkeybc40cc82015-06-18 14:25:08 -070061static const char* kKeyPath = "/data/misc/vold";
Jeff Sharkey9c484982015-03-31 10:35:33 -070062
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070063static const char* kProcFilesystems = "/proc/filesystems";
64
Jeff Sharkeyae4f85d2017-10-18 17:02:21 -060065// Lock used to protect process-level SELinux changes from racing with each
66// other between multiple threads.
67static std::mutex kSecurityLock;
68
Jeff Sharkeydeb24052015-03-02 21:01:40 -080069status_t CreateDeviceNode(const std::string& path, dev_t dev) {
Jeff Sharkeyae4f85d2017-10-18 17:02:21 -060070 std::lock_guard<std::mutex> lock(kSecurityLock);
Jeff Sharkeydeb24052015-03-02 21:01:40 -080071 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 Sharkey36801cc2015-03-13 16:09:20 -070084 PLOG(ERROR) << "Failed to create device node for " << major(dev)
85 << ":" << minor(dev) << " at " << path;
Jeff Sharkeydeb24052015-03-02 21:01:40 -080086 res = -errno;
87 }
88 }
89
90 if (secontext) {
91 setfscreatecon(nullptr);
92 freecon(secontext);
93 }
94
95 return res;
96}
97
98status_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 Sharkeyf0121c52015-04-06 14:08:45 -0700107status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid) {
Jeff Sharkeyae4f85d2017-10-18 17:02:21 -0600108 std::lock_guard<std::mutex> lock(kSecurityLock);
Jeff Sharkeyf0121c52015-04-06 14:08:45 -0700109 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 Sharkeydeb24052015-03-02 21:01:40 -0800132status_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 Sharkey89f74fb2015-10-21 12:16:12 -0700137 // Apps might still be handling eject request, so wait before
138 // we start sending signals
Paul Crowley56292ef2017-10-20 08:07:53 -0700139 if (sSleepOnUnmount) sleep(5);
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700140
Jeff Sharkey3472e522017-10-06 18:02:53 -0600141 KillProcessesWithOpenFiles(path, SIGINT);
Paul Crowley56292ef2017-10-20 08:07:53 -0700142 if (sSleepOnUnmount) sleep(5);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700143 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) {
144 return OK;
145 }
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700146
Jeff Sharkey3472e522017-10-06 18:02:53 -0600147 KillProcessesWithOpenFiles(path, SIGTERM);
Paul Crowley56292ef2017-10-20 08:07:53 -0700148 if (sSleepOnUnmount) sleep(5);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800149 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) {
150 return OK;
151 }
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700152
Jeff Sharkey3472e522017-10-06 18:02:53 -0600153 KillProcessesWithOpenFiles(path, SIGKILL);
Paul Crowley56292ef2017-10-20 08:07:53 -0700154 if (sSleepOnUnmount) sleep(5);
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700155 if (!umount2(cpath, UMOUNT_NOFOLLOW) || errno == EINVAL || errno == ENOENT) {
156 return OK;
157 }
Jeff Sharkeyf0121c52015-04-06 14:08:45 -0700158
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800159 return -errno;
160}
161
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700162status_t KillProcessesUsingPath(const std::string& path) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600163 if (KillProcessesWithOpenFiles(path, SIGINT) == 0) {
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700164 return OK;
165 }
Paul Crowley56292ef2017-10-20 08:07:53 -0700166 if (sSleepOnUnmount) sleep(5);
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700167
Jeff Sharkey3472e522017-10-06 18:02:53 -0600168 if (KillProcessesWithOpenFiles(path, SIGTERM) == 0) {
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700169 return OK;
170 }
Paul Crowley56292ef2017-10-20 08:07:53 -0700171 if (sSleepOnUnmount) sleep(5);
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700172
Jeff Sharkey3472e522017-10-06 18:02:53 -0600173 if (KillProcessesWithOpenFiles(path, SIGKILL) == 0) {
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700174 return OK;
175 }
Paul Crowley56292ef2017-10-20 08:07:53 -0700176 if (sSleepOnUnmount) sleep(5);
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700177
178 // Send SIGKILL a second time to determine if we've
179 // actually killed everyone with open files
Jeff Sharkey3472e522017-10-06 18:02:53 -0600180 if (KillProcessesWithOpenFiles(path, SIGKILL) == 0) {
Jeff Sharkey89f74fb2015-10-21 12:16:12 -0700181 return OK;
182 }
183 PLOG(ERROR) << "Failed to kill processes using " << path;
184 return -EBUSY;
185}
186
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700187status_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 Sharkey3472e522017-10-06 18:02:53 -0600195bool 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
212static 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 Sharkey9c484982015-03-31 10:35:33 -0700217
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700218 std::vector<std::string> cmd;
219 cmd.push_back(kBlkidPath);
220 cmd.push_back("-c");
221 cmd.push_back("/dev/null");
Jeff Sharkeyeddf9bd2015-08-12 16:04:35 -0700222 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 Sharkeyce6a9132015-04-08 21:07:21 -0700228 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 Sharkey9c484982015-03-31 10:35:33 -0700235 }
236
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700237 for (const auto& line : output) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700238 // Extract values from blkid output, if defined
Jeff Sharkey3472e522017-10-06 18:02:53 -0600239 FindValue(line, "TYPE", fsType);
240 FindValue(line, "UUID", fsUuid);
241 FindValue(line, "LABEL", fsLabel);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700242 }
243
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700244 return OK;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700245}
246
Jeff Sharkey3472e522017-10-06 18:02:53 -0600247status_t ReadMetadata(const std::string& path, std::string* fsType,
248 std::string* fsUuid, std::string* fsLabel) {
Jeff Sharkey95c87cc2015-04-01 11:54:32 -0700249 return readMetadata(path, fsType, fsUuid, fsLabel, false);
250}
251
Jeff Sharkey3472e522017-10-06 18:02:53 -0600252status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType,
253 std::string* fsUuid, std::string* fsLabel) {
Jeff Sharkey95c87cc2015-04-01 11:54:32 -0700254 return readMetadata(path, fsType, fsUuid, fsLabel, true);
255}
256
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700257status_t ForkExecvp(const std::vector<std::string>& args) {
258 return ForkExecvp(args, nullptr);
259}
260
261status_t ForkExecvp(const std::vector<std::string>& args, security_context_t context) {
Jeff Sharkeyae4f85d2017-10-18 17:02:21 -0600262 std::lock_guard<std::mutex> lock(kSecurityLock);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700263 size_t argc = args.size();
Jeff Sharkey9c484982015-03-31 10:35:33 -0700264 char** argv = (char**) calloc(argc, sizeof(char*));
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700265 for (size_t i = 0; i < argc; i++) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700266 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 Sharkeyce6a9132015-04-08 21:07:21 -0700273
Paul Crowley82b41ff2017-10-20 08:17:54 -0700274 if (context) {
275 if (setexeccon(context)) {
276 LOG(ERROR) << "Failed to setexeccon";
277 abort();
278 }
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700279 }
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700280 status_t res = android_fork_execvp(argc, argv, NULL, false, true);
Paul Crowley82b41ff2017-10-20 08:17:54 -0700281 if (context) {
282 if (setexeccon(nullptr)) {
283 LOG(ERROR) << "Failed to setexeccon";
284 abort();
285 }
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700286 }
287
Jeff Sharkey9c484982015-03-31 10:35:33 -0700288 free(argv);
289 return res;
290}
291
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700292status_t ForkExecvp(const std::vector<std::string>& args,
293 std::vector<std::string>& output) {
294 return ForkExecvp(args, output, nullptr);
295}
296
297status_t ForkExecvp(const std::vector<std::string>& args,
298 std::vector<std::string>& output, security_context_t context) {
Jeff Sharkeyae4f85d2017-10-18 17:02:21 -0600299 std::lock_guard<std::mutex> lock(kSecurityLock);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700300 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 Crowley82b41ff2017-10-20 08:17:54 -0700311 if (context) {
312 if (setexeccon(context)) {
313 LOG(ERROR) << "Failed to setexeccon";
314 abort();
315 }
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700316 }
Jeff Sharkey32ebb732017-03-27 16:18:50 -0600317 FILE* fp = popen(cmd.c_str(), "r"); // NOLINT
Paul Crowley82b41ff2017-10-20 08:17:54 -0700318 if (context) {
319 if (setexeccon(nullptr)) {
320 LOG(ERROR) << "Failed to setexeccon";
321 abort();
322 }
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700323 }
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 Sharkey1d6fbcc2015-04-24 16:00:03 -0700342pid_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 Sharkey9c484982015-03-31 10:35:33 -0700375status_t ReadRandomBytes(size_t bytes, std::string& out) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100376 out.resize(bytes);
377 return ReadRandomBytes(bytes, &out[0]);
378}
Jeff Sharkey9c484982015-03-31 10:35:33 -0700379
Pavel Grafove2e2d302017-08-01 17:15:53 +0100380status_t ReadRandomBytes(size_t bytes, char* buf) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700381 int fd = TEMP_FAILURE_RETRY(open("/dev/urandom", O_RDONLY | O_CLOEXEC | O_NOFOLLOW));
382 if (fd == -1) {
383 return -errno;
384 }
385
Jeff Sharkey9c484982015-03-31 10:35:33 -0700386 size_t n;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100387 while ((n = TEMP_FAILURE_RETRY(read(fd, &buf[0], bytes))) > 0) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700388 bytes -= n;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100389 buf += n;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700390 }
Elliott Hughesa6231082015-05-15 18:34:24 -0700391 close(fd);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700392
393 if (bytes == 0) {
394 return OK;
395 } else {
396 return -EIO;
397 }
398}
399
Jeff Sharkey46bb69f2017-06-21 13:52:23 -0600400status_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 Sharkey9c484982015-03-31 10:35:33 -0700411status_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
450static const char* kLookup = "0123456789abcdef";
451
452status_t StrToHex(const std::string& str, std::string& hex) {
453 hex.clear();
454 for (size_t i = 0; i < str.size(); i++) {
Jeff Sharkeyef369752015-04-29 15:57:48 -0700455 hex.push_back(kLookup[(str[i] & 0xF0) >> 4]);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700456 hex.push_back(kLookup[str[i] & 0x0F]);
457 }
458 return OK;
459}
460
Pavel Grafove2e2d302017-08-01 17:15:53 +0100461status_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 Sharkeybc40cc82015-06-18 14:25:08 -0700470status_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 Sharkey1d6fbcc2015-04-24 16:00:03 -0700478uint64_t GetFreeBytes(const std::string& path) {
479 struct statvfs sb;
480 if (statvfs(path.c_str(), &sb) == 0) {
Jeff Sharkeya0220a52017-04-03 17:11:45 -0600481 return (uint64_t) sb.f_bavail * sb.f_frsize;
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700482 } else {
483 return -1;
484 }
485}
486
487// TODO: borrowed from frameworks/native/libs/diskusage/ which should
488// eventually be migrated into system/
489static 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/
504int64_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 Sharkeyfd3dc3c2017-03-27 10:49:21 -0600532 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700533 if (subfd >= 0) {
534 size += calculate_dir_size(subfd);
535 }
536 }
537 }
538 closedir(d);
539 return size;
540}
541
542uint64_t GetTreeBytes(const std::string& path) {
Jeff Sharkeyfd3dc3c2017-03-27 10:49:21 -0600543 int dirfd = open(path.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700544 if (dirfd < 0) {
545 PLOG(WARNING) << "Failed to open " << path;
546 return -1;
547 } else {
548 uint64_t res = calculate_dir_size(dirfd);
549 close(dirfd);
550 return res;
551 }
552}
553
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700554bool IsFilesystemSupported(const std::string& fsType) {
555 std::string supported;
556 if (!ReadFileToString(kProcFilesystems, &supported)) {
557 PLOG(ERROR) << "Failed to read supported filesystems";
558 return false;
559 }
560 return supported.find(fsType + "\n") != std::string::npos;
561}
562
563status_t WipeBlockDevice(const std::string& path) {
564 status_t res = -1;
565 const char* c_path = path.c_str();
566 unsigned long nr_sec = 0;
567 unsigned long long range[2];
568
569 int fd = TEMP_FAILURE_RETRY(open(c_path, O_RDWR | O_CLOEXEC));
570 if (fd == -1) {
571 PLOG(ERROR) << "Failed to open " << path;
572 goto done;
573 }
574
caozhiyuan9102b0b2015-10-29 16:39:00 +0800575 if ((ioctl(fd, BLKGETSIZE, &nr_sec)) == -1) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700576 PLOG(ERROR) << "Failed to determine size of " << path;
577 goto done;
578 }
579
580 range[0] = 0;
581 range[1] = (unsigned long long) nr_sec * 512;
582
583 LOG(INFO) << "About to discard " << range[1] << " on " << path;
584 if (ioctl(fd, BLKDISCARD, &range) == 0) {
585 LOG(INFO) << "Discard success on " << path;
586 res = 0;
587 } else {
588 PLOG(ERROR) << "Discard failure on " << path;
589 }
590
591done:
592 close(fd);
593 return res;
594}
595
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800596static bool isValidFilename(const std::string& name) {
597 if (name.empty() || (name == ".") || (name == "..")
598 || (name.find('/') != std::string::npos)) {
599 return false;
600 } else {
601 return true;
602 }
603}
604
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700605std::string BuildKeyPath(const std::string& partGuid) {
606 return StringPrintf("%s/expand_%s.key", kKeyPath, partGuid.c_str());
607}
608
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600609std::string BuildDataSystemLegacyPath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -0700610 return StringPrintf("%s/system/users/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600611}
612
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800613std::string BuildDataSystemCePath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -0700614 return StringPrintf("%s/system_ce/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700615}
616
617std::string BuildDataSystemDePath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -0700618 return StringPrintf("%s/system_de/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700619}
620
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600621std::string BuildDataMiscLegacyPath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -0700622 return StringPrintf("%s/misc/user/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600623}
624
Jeff Sharkey47695b22016-02-01 17:02:29 -0700625std::string BuildDataMiscCePath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -0700626 return StringPrintf("%s/misc_ce/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700627}
628
629std::string BuildDataMiscDePath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -0700630 return StringPrintf("%s/misc_de/%u", BuildDataPath("").c_str(), userId);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800631}
632
Calin Juravle79f55a42016-02-17 20:14:46 +0000633// Keep in sync with installd (frameworks/native/cmds/installd/utils.h)
634std::string BuildDataProfilesDePath(userid_t userId) {
Paul Crowley3b71fc52017-10-09 10:55:21 -0700635 return StringPrintf("%s/misc/profiles/cur/%u", BuildDataPath("").c_str(), userId);
Calin Juravle79f55a42016-02-17 20:14:46 +0000636}
637
Paul Crowley3b71fc52017-10-09 10:55:21 -0700638std::string BuildDataPath(const std::string& volumeUuid) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800639 // TODO: unify with installd path generation logic
Paul Crowley3b71fc52017-10-09 10:55:21 -0700640 if (volumeUuid.empty()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800641 return "/data";
642 } else {
643 CHECK(isValidFilename(volumeUuid));
Paul Crowley3b71fc52017-10-09 10:55:21 -0700644 return StringPrintf("/mnt/expand/%s", volumeUuid.c_str());
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800645 }
646}
647
Paul Crowley3b71fc52017-10-09 10:55:21 -0700648std::string BuildDataMediaCePath(const std::string& volumeUuid, userid_t userId) {
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700649 // TODO: unify with installd path generation logic
650 std::string data(BuildDataPath(volumeUuid));
651 return StringPrintf("%s/media/%u", data.c_str(), userId);
652}
653
Paul Crowley3b71fc52017-10-09 10:55:21 -0700654std::string BuildDataUserCePath(const std::string& volumeUuid, userid_t userId) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800655 // TODO: unify with installd path generation logic
656 std::string data(BuildDataPath(volumeUuid));
Paul Crowley3b71fc52017-10-09 10:55:21 -0700657 if (volumeUuid.empty() && userId == 0) {
cjbaoeb501142017-04-12 00:09:00 +0800658 std::string legacy = StringPrintf("%s/data", data.c_str());
659 struct stat sb;
660 if (lstat(legacy.c_str(), &sb) == 0 && S_ISDIR(sb.st_mode)) {
661 /* /data/data is dir, return /data/data for legacy system */
662 return legacy;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800663 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800664 }
cjbaoeb501142017-04-12 00:09:00 +0800665 return StringPrintf("%s/user/%u", data.c_str(), userId);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800666}
667
Paul Crowley3b71fc52017-10-09 10:55:21 -0700668std::string BuildDataUserDePath(const std::string& volumeUuid, userid_t userId) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800669 // TODO: unify with installd path generation logic
670 std::string data(BuildDataPath(volumeUuid));
671 return StringPrintf("%s/user_de/%u", data.c_str(), userId);
672}
673
Jeff Sharkey66270a22015-06-24 11:49:24 -0700674dev_t GetDevice(const std::string& path) {
675 struct stat sb;
676 if (stat(path.c_str(), &sb)) {
677 PLOG(WARNING) << "Failed to stat " << path;
678 return 0;
679 } else {
680 return sb.st_dev;
681 }
682}
683
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -0600684status_t RestoreconRecursive(const std::string& path) {
685 LOG(VERBOSE) << "Starting restorecon of " << path;
686
Tom Cherryd6127ef2017-06-15 17:13:56 -0700687 static constexpr const char* kRestoreconString = "selinux.restorecon_recursive";
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -0600688
Tom Cherryd6127ef2017-06-15 17:13:56 -0700689 android::base::SetProperty(kRestoreconString, "");
690 android::base::SetProperty(kRestoreconString, path);
691
692 android::base::WaitForProperty(kRestoreconString, path);
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -0600693
694 LOG(VERBOSE) << "Finished restorecon of " << path;
695 return OK;
696}
697
Jeff Sharkey3472e522017-10-06 18:02:53 -0600698bool Readlinkat(int dirfd, const std::string& path, std::string* result) {
699 // Shamelessly borrowed from android::base::Readlink()
700 result->clear();
701
702 // Most Linux file systems (ext2 and ext4, say) limit symbolic links to
703 // 4095 bytes. Since we'll copy out into the string anyway, it doesn't
704 // waste memory to just start there. We add 1 so that we can recognize
705 // whether it actually fit (rather than being truncated to 4095).
706 std::vector<char> buf(4095 + 1);
707 while (true) {
708 ssize_t size = readlinkat(dirfd, path.c_str(), &buf[0], buf.size());
709 // Unrecoverable error?
710 if (size == -1)
711 return false;
712 // It fit! (If size == buf.size(), it may have been truncated.)
713 if (static_cast<size_t>(size) < buf.size()) {
714 result->assign(&buf[0], size);
715 return true;
716 }
717 // Double our buffer and try again.
718 buf.resize(buf.size() * 2);
Daichi Hirono10d34882016-01-29 14:33:51 +0900719 }
720}
721
Yu Ning942d4e82016-01-08 17:36:47 +0800722bool IsRunningInEmulator() {
Tom Cherryd6127ef2017-06-15 17:13:56 -0700723 return android::base::GetBoolProperty("ro.kernel.qemu", false);
Yu Ning942d4e82016-01-08 17:36:47 +0800724}
725
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800726} // namespace vold
727} // namespace android