blob: 007fd60f8fd549b8c0c81262ac4139296fbf7d07 [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 "PublicVolume.h"
Zim3623a212019-07-19 16:46:53 +010018
19#include "AppFuseUtil.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080020#include "Utils.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070021#include "VolumeManager.h"
Jeff Sharkey37ba1252018-01-19 10:55:18 +090022#include "fs/Exfat.h"
23#include "fs/Vfat.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080024
Elliott Hughes7e128fb2015-12-04 15:50:53 -080025#include <android-base/logging.h>
Sudheer Shanka40ab6742018-09-18 13:07:45 -070026#include <android-base/properties.h>
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070027#include <android-base/stringprintf.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080028#include <cutils/fs.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080029#include <private/android_filesystem_config.h>
Jeff Sharkey7bdf4d52017-09-18 14:47:10 -060030#include <utils/Timers.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080031
32#include <fcntl.h>
33#include <stdlib.h>
34#include <sys/mount.h>
35#include <sys/stat.h>
Elliott Hughes0e08e842017-05-18 09:08:24 -070036#include <sys/sysmacros.h>
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070037#include <sys/types.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080038#include <sys/wait.h>
39
Sudheer Shanka40ab6742018-09-18 13:07:45 -070040using android::base::GetBoolProperty;
Dan Albertae9e8902015-03-16 10:35:17 -070041using android::base::StringPrintf;
42
Jeff Sharkeydeb24052015-03-02 21:01:40 -080043namespace android {
44namespace vold {
45
Martijn Coenenadcc8452019-12-09 14:18:01 +010046static const char* kSdcardFsPath = "/system/bin/sdcard";
Jeff Sharkeydeb24052015-03-02 21:01:40 -080047
Jeff Sharkey36801cc2015-03-13 16:09:20 -070048static const char* kAsecPath = "/mnt/secure/asec";
Jeff Sharkeydeb24052015-03-02 21:01:40 -080049
Martijn Coenenadcc8452019-12-09 14:18:01 +010050PublicVolume::PublicVolume(dev_t device) : VolumeBase(Type::kPublic), mDevice(device) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -070051 setId(StringPrintf("public:%u,%u", major(device), minor(device)));
52 mDevPath = StringPrintf("/dev/block/vold/%s", getId().c_str());
Jeff Sharkeydeb24052015-03-02 21:01:40 -080053}
54
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070055PublicVolume::~PublicVolume() {}
Jeff Sharkeydeb24052015-03-02 21:01:40 -080056
57status_t PublicVolume::readMetadata() {
Jeff Sharkey3472e522017-10-06 18:02:53 -060058 status_t res = ReadMetadataUntrusted(mDevPath, &mFsType, &mFsUuid, &mFsLabel);
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -060059
Jeff Sharkey814e9d32017-09-13 11:49:44 -060060 auto listener = getListener();
61 if (listener) listener->onVolumeMetadataChanged(getId(), mFsType, mFsUuid, mFsLabel);
Jeff Sharkeycbe69fc2017-09-15 16:50:28 -060062
Jeff Sharkey36801cc2015-03-13 16:09:20 -070063 return res;
Jeff Sharkeydeb24052015-03-02 21:01:40 -080064}
65
66status_t PublicVolume::initAsecStage() {
67 std::string legacyPath(mRawPath + "/android_secure");
68 std::string securePath(mRawPath + "/.android_secure");
69
70 // Recover legacy secure path
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070071 if (!access(legacyPath.c_str(), R_OK | X_OK) && access(securePath.c_str(), R_OK | X_OK)) {
Jeff Sharkeydeb24052015-03-02 21:01:40 -080072 if (rename(legacyPath.c_str(), securePath.c_str())) {
Jeff Sharkey9c484982015-03-31 10:35:33 -070073 PLOG(WARNING) << getId() << " failed to rename legacy ASEC dir";
Jeff Sharkeydeb24052015-03-02 21:01:40 -080074 }
75 }
76
Jeff Sharkey36801cc2015-03-13 16:09:20 -070077 if (TEMP_FAILURE_RETRY(mkdir(securePath.c_str(), 0700))) {
78 if (errno != EEXIST) {
Jeff Sharkey9c484982015-03-31 10:35:33 -070079 PLOG(WARNING) << getId() << " creating ASEC stage failed";
Jeff Sharkey36801cc2015-03-13 16:09:20 -070080 return -errno;
81 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -080082 }
83
Jeff Sharkey36801cc2015-03-13 16:09:20 -070084 BindMount(securePath, kAsecPath);
85
Jeff Sharkeydeb24052015-03-02 21:01:40 -080086 return OK;
87}
88
Jeff Sharkey9c484982015-03-31 10:35:33 -070089status_t PublicVolume::doCreate() {
90 return CreateDeviceNode(mDevPath, mDevice);
91}
92
93status_t PublicVolume::doDestroy() {
94 return DestroyDeviceNode(mDevPath);
95}
96
Jeff Sharkeydeb24052015-03-02 21:01:40 -080097status_t PublicVolume::doMount() {
Jeff Sharkey9c484982015-03-31 10:35:33 -070098 readMetadata();
99
Jeff Sharkey37ba1252018-01-19 10:55:18 +0900100 if (mFsType == "vfat" && vfat::IsSupported()) {
101 if (vfat::Check(mDevPath)) {
102 LOG(ERROR) << getId() << " failed filesystem check";
103 return -EIO;
104 }
105 } else if (mFsType == "exfat" && exfat::IsSupported()) {
106 if (exfat::Check(mDevPath)) {
107 LOG(ERROR) << getId() << " failed filesystem check";
108 return -EIO;
109 }
110 } else {
Makoto Onukic82c9ce2015-06-24 13:30:45 -0700111 LOG(ERROR) << getId() << " unsupported filesystem " << mFsType;
112 return -EIO;
113 }
114
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700115 // Use UUID as stable name, if available
116 std::string stableName = getId();
117 if (!mFsUuid.empty()) {
Jeff Sharkeyf0121c52015-04-06 14:08:45 -0700118 stableName = mFsUuid;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700119 }
120
121 mRawPath = StringPrintf("/mnt/media_rw/%s", stableName.c_str());
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700122
Martijn Coenenadcc8452019-12-09 14:18:01 +0100123 mSdcardFsDefault = StringPrintf("/mnt/runtime/default/%s", stableName.c_str());
124 mSdcardFsRead = StringPrintf("/mnt/runtime/read/%s", stableName.c_str());
125 mSdcardFsWrite = StringPrintf("/mnt/runtime/write/%s", stableName.c_str());
126 mSdcardFsFull = StringPrintf("/mnt/runtime/full/%s", stableName.c_str());
Jeff Sharkey66270a22015-06-24 11:49:24 -0700127
128 setInternalPath(mRawPath);
Jeff Sharkey8474ee32015-07-30 16:54:23 -0700129 if (getMountFlags() & MountFlags::kVisible) {
130 setPath(StringPrintf("/storage/%s", stableName.c_str()));
131 } else {
132 setPath(mRawPath);
133 }
Jeff Sharkey66270a22015-06-24 11:49:24 -0700134
Qin Chaoe0074f12015-12-15 15:20:41 +0800135 if (fs_prepare_dir(mRawPath.c_str(), 0700, AID_ROOT, AID_ROOT)) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700136 PLOG(ERROR) << getId() << " failed to create mount points";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800137 return -errno;
138 }
139
Jeff Sharkey37ba1252018-01-19 10:55:18 +0900140 if (mFsType == "vfat") {
141 if (vfat::Mount(mDevPath, mRawPath, false, false, false, AID_MEDIA_RW, AID_MEDIA_RW, 0007,
142 true)) {
143 PLOG(ERROR) << getId() << " failed to mount " << mDevPath;
144 return -EIO;
145 }
146 } else if (mFsType == "exfat") {
147 if (exfat::Mount(mDevPath, mRawPath, AID_MEDIA_RW, AID_MEDIA_RW, 0007)) {
148 PLOG(ERROR) << getId() << " failed to mount " << mDevPath;
149 return -EIO;
150 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800151 }
152
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700153 if (getMountFlags() & MountFlags::kPrimary) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700154 initAsecStage();
155 }
156
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700157 if (!(getMountFlags() & MountFlags::kVisible)) {
Martijn Coenenadcc8452019-12-09 14:18:01 +0100158 // Not visible to apps, so no need to spin up sdcardfs or FUSE
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700159 return OK;
160 }
161
Martijn Coenenadcc8452019-12-09 14:18:01 +0100162 if (fs_prepare_dir(mSdcardFsDefault.c_str(), 0700, AID_ROOT, AID_ROOT) ||
163 fs_prepare_dir(mSdcardFsRead.c_str(), 0700, AID_ROOT, AID_ROOT) ||
164 fs_prepare_dir(mSdcardFsWrite.c_str(), 0700, AID_ROOT, AID_ROOT) ||
165 fs_prepare_dir(mSdcardFsFull.c_str(), 0700, AID_ROOT, AID_ROOT)) {
166 PLOG(ERROR) << getId() << " failed to create sdcardfs mount points";
Qin Chaoe0074f12015-12-15 15:20:41 +0800167 return -errno;
168 }
169
Martijn Coenenadcc8452019-12-09 14:18:01 +0100170 dev_t before = GetDevice(mSdcardFsFull);
Jeff Sharkey66270a22015-06-24 11:49:24 -0700171
shafik5cf32b52019-09-25 13:56:01 +0100172 bool isFuse = base::GetBoolProperty(kPropFuseSnapshot, false);
Zim3623a212019-07-19 16:46:53 +0100173 if (isFuse) {
174 LOG(INFO) << "Mounting public fuse volume";
Nandana Dutta914cc72019-08-29 15:22:42 +0100175 android::base::unique_fd fd;
Zim981222f2019-09-09 10:24:44 +0100176 int user_id = getMountUserId();
Zima438b242019-09-25 14:37:38 +0100177 int result = MountUserFuse(user_id, getInternalPath(), stableName, &fd);
Zim981222f2019-09-09 10:24:44 +0100178
Zim3623a212019-07-19 16:46:53 +0100179 if (result != 0) {
180 LOG(ERROR) << "Failed to mount public fuse volume";
181 return -result;
182 }
Zim5048b4b2019-11-19 09:16:03 +0000183
184 auto callback = getMountCallback();
185 if (callback) {
186 bool is_ready = false;
187 callback->onVolumeChecking(std::move(fd), getPath(), getInternalPath(), &is_ready);
188 if (!is_ready) {
189 return -EIO;
190 }
191 }
192
Zima438b242019-09-25 14:37:38 +0100193 return OK;
Zim3623a212019-07-19 16:46:53 +0100194 }
195
Martijn Coenenadcc8452019-12-09 14:18:01 +0100196 int sdcardFsPid;
197 if (!(sdcardFsPid = fork())) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700198 if (getMountFlags() & MountFlags::kPrimary) {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700199 // clang-format off
Martijn Coenenadcc8452019-12-09 14:18:01 +0100200 if (execl(kSdcardFsPath, kSdcardFsPath,
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800201 "-u", "1023", // AID_MEDIA_RW
202 "-g", "1023", // AID_MEDIA_RW
Jeff Sharkey20642ae2015-07-28 10:57:29 -0700203 "-U", std::to_string(getMountUserId()).c_str(),
Jeff Sharkey66270a22015-06-24 11:49:24 -0700204 "-w",
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800205 mRawPath.c_str(),
Jeff Sharkey66270a22015-06-24 11:49:24 -0700206 stableName.c_str(),
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700207 NULL)) {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700208 // clang-format on
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700209 PLOG(ERROR) << "Failed to exec";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800210 }
211 } else {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700212 // clang-format off
Martijn Coenenadcc8452019-12-09 14:18:01 +0100213 if (execl(kSdcardFsPath, kSdcardFsPath,
Sudheer Shanka55049012019-01-09 12:15:15 -0800214 "-u", "1023", // AID_MEDIA_RW
215 "-g", "1023", // AID_MEDIA_RW
216 "-U", std::to_string(getMountUserId()).c_str(),
217 mRawPath.c_str(),
218 stableName.c_str(),
219 NULL)) {
220 // clang-format on
221 PLOG(ERROR) << "Failed to exec";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800222 }
223 }
224
Martijn Coenenadcc8452019-12-09 14:18:01 +0100225 LOG(ERROR) << "sdcardfs exiting";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800226 _exit(1);
227 }
228
Martijn Coenenadcc8452019-12-09 14:18:01 +0100229 if (sdcardFsPid == -1) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700230 PLOG(ERROR) << getId() << " failed to fork";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800231 return -errno;
232 }
233
Jeff Sharkey7bdf4d52017-09-18 14:47:10 -0600234 nsecs_t start = systemTime(SYSTEM_TIME_BOOTTIME);
Martijn Coenenadcc8452019-12-09 14:18:01 +0100235 while (before == GetDevice(mSdcardFsFull)) {
236 LOG(DEBUG) << "Waiting for sdcardfs to spin up...";
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700237 usleep(50000); // 50ms
Jeff Sharkey7bdf4d52017-09-18 14:47:10 -0600238
239 nsecs_t now = systemTime(SYSTEM_TIME_BOOTTIME);
240 if (nanoseconds_to_milliseconds(now - start) > 5000) {
Martijn Coenenadcc8452019-12-09 14:18:01 +0100241 LOG(WARNING) << "Timed out while waiting for sdcardfs to spin up";
Jeff Sharkey7bdf4d52017-09-18 14:47:10 -0600242 return -ETIMEDOUT;
243 }
Jeff Sharkey66270a22015-06-24 11:49:24 -0700244 }
Martijn Coenenadcc8452019-12-09 14:18:01 +0100245 /* sdcardfs will have exited already. The filesystem will still be running */
246 TEMP_FAILURE_RETRY(waitpid(sdcardFsPid, nullptr, 0));
Jeff Sharkey66270a22015-06-24 11:49:24 -0700247
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800248 return OK;
249}
250
251status_t PublicVolume::doUnmount() {
John Cormie25cc7e32016-04-18 14:23:29 -0700252 // Unmount the storage before we kill the FUSE process. If we kill
253 // the FUSE process first, most file system operations will return
254 // ENOTCONN until the unmount completes. This is an exotic and unusual
255 // error code and might cause broken behaviour in applications.
Jeff Sharkey8aff8542016-03-30 20:37:28 -0600256 KillProcessesUsingPath(getPath());
257
shafik5cf32b52019-09-25 13:56:01 +0100258 bool isFuse = base::GetBoolProperty(kPropFuseSnapshot, false);
Zim3623a212019-07-19 16:46:53 +0100259 if (isFuse) {
260 // Use UUID as stable name, if available
261 std::string stableName = getId();
262 if (!mFsUuid.empty()) {
263 stableName = mFsUuid;
264 }
265
Zima438b242019-09-25 14:37:38 +0100266 std::string fuse_path(
267 StringPrintf("/mnt/user/%d/%s", getMountUserId(), stableName.c_str()));
268 std::string pass_through_path(
269 StringPrintf("/mnt/pass_through/%d/%s", getMountUserId(), stableName.c_str()));
270 if (UnmountUserFuse(pass_through_path, fuse_path) != OK) {
271 PLOG(INFO) << "UnmountUserFuse failed on public fuse volume";
272 return -errno;
Zim3623a212019-07-19 16:46:53 +0100273 }
Zima438b242019-09-25 14:37:38 +0100274 ForceUnmount(kAsecPath);
275 ForceUnmount(mRawPath);
Zim3623a212019-07-19 16:46:53 +0100276
Zima438b242019-09-25 14:37:38 +0100277 rmdir(fuse_path.c_str());
278 rmdir(pass_through_path.c_str());
279 rmdir(mRawPath.c_str());
280 mRawPath.clear();
Zim3623a212019-07-19 16:46:53 +0100281 return OK;
282 }
283
Jeff Sharkey48d81d32015-04-12 21:50:32 -0700284 ForceUnmount(kAsecPath);
Jeff Sharkey66270a22015-06-24 11:49:24 -0700285
Martijn Coenenadcc8452019-12-09 14:18:01 +0100286 ForceUnmount(mSdcardFsDefault);
287 ForceUnmount(mSdcardFsRead);
288 ForceUnmount(mSdcardFsWrite);
289 ForceUnmount(mSdcardFsFull);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800290 ForceUnmount(mRawPath);
291
Martijn Coenenadcc8452019-12-09 14:18:01 +0100292 rmdir(mSdcardFsDefault.c_str());
293 rmdir(mSdcardFsRead.c_str());
294 rmdir(mSdcardFsWrite.c_str());
295 rmdir(mSdcardFsFull.c_str());
Jeff Sharkey66270a22015-06-24 11:49:24 -0700296 rmdir(mRawPath.c_str());
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700297
Martijn Coenenadcc8452019-12-09 14:18:01 +0100298 mSdcardFsDefault.clear();
299 mSdcardFsRead.clear();
300 mSdcardFsWrite.clear();
301 mSdcardFsFull.clear();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700302 mRawPath.clear();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800303
304 return OK;
305}
306
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700307status_t PublicVolume::doFormat(const std::string& fsType) {
Oleksiy Avramchenko4cff06d2018-05-23 18:59:48 +0200308 bool useVfat = vfat::IsSupported();
309 bool useExfat = exfat::IsSupported();
310 status_t res = OK;
311
312 // Resolve the target filesystem type
313 if (fsType == "auto" && useVfat && useExfat) {
314 uint64_t size = 0;
315
316 res = GetBlockDevSize(mDevPath, &size);
317 if (res != OK) {
318 LOG(ERROR) << "Couldn't get device size " << mDevPath;
319 return res;
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700320 }
Oleksiy Avramchenko4cff06d2018-05-23 18:59:48 +0200321
322 // If both vfat & exfat are supported use exfat for SDXC (>~32GiB) cards
323 if (size > 32896LL * 1024 * 1024) {
324 useVfat = false;
325 } else {
326 useExfat = false;
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700327 }
Oleksiy Avramchenko4cff06d2018-05-23 18:59:48 +0200328 } else if (fsType == "vfat") {
329 useExfat = false;
330 } else if (fsType == "exfat") {
331 useVfat = false;
332 }
333
334 if (!useVfat && !useExfat) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700335 LOG(ERROR) << "Unsupported filesystem " << fsType;
336 return -EINVAL;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800337 }
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700338
Oleksiy Avramchenko4cff06d2018-05-23 18:59:48 +0200339 if (WipeBlockDevice(mDevPath) != OK) {
340 LOG(WARNING) << getId() << " failed to wipe";
341 }
342
343 if (useVfat) {
344 res = vfat::Format(mDevPath, 0);
345 } else if (useExfat) {
346 res = exfat::Format(mDevPath);
347 }
348
349 if (res != OK) {
350 LOG(ERROR) << getId() << " failed to format";
351 res = -errno;
352 }
353
354 return res;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800355}
356
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800357} // namespace vold
358} // namespace android