blob: 77a156c106fac3f8307a33963ff92c1d57331b92 [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"
18#include "Utils.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070019#include "VolumeManager.h"
Jeff Sharkey37ba1252018-01-19 10:55:18 +090020#include "fs/Exfat.h"
21#include "fs/Vfat.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080022
Elliott Hughes7e128fb2015-12-04 15:50:53 -080023#include <android-base/logging.h>
Sudheer Shanka40ab6742018-09-18 13:07:45 -070024#include <android-base/properties.h>
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070025#include <android-base/stringprintf.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080026#include <cutils/fs.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080027#include <private/android_filesystem_config.h>
Jeff Sharkey7bdf4d52017-09-18 14:47:10 -060028#include <utils/Timers.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080029
30#include <fcntl.h>
31#include <stdlib.h>
32#include <sys/mount.h>
33#include <sys/stat.h>
Elliott Hughes0e08e842017-05-18 09:08:24 -070034#include <sys/sysmacros.h>
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070035#include <sys/types.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080036#include <sys/wait.h>
37
Sudheer Shanka40ab6742018-09-18 13:07:45 -070038using android::base::GetBoolProperty;
Dan Albertae9e8902015-03-16 10:35:17 -070039using android::base::StringPrintf;
40
Jeff Sharkeydeb24052015-03-02 21:01:40 -080041namespace android {
42namespace vold {
43
Jeff Sharkeydeb24052015-03-02 21:01:40 -080044static const char* kFusePath = "/system/bin/sdcard";
45
Jeff Sharkey36801cc2015-03-13 16:09:20 -070046static const char* kAsecPath = "/mnt/secure/asec";
Jeff Sharkeydeb24052015-03-02 21:01:40 -080047
Sudheer Shanka40ab6742018-09-18 13:07:45 -070048static const char* kIsolatedStorage = "persist.sys.isolated_storage";
49
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070050PublicVolume::PublicVolume(dev_t device) : VolumeBase(Type::kPublic), mDevice(device), mFusePid(0) {
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
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700123 mFuseDefault = StringPrintf("/mnt/runtime/default/%s", stableName.c_str());
124 mFuseRead = StringPrintf("/mnt/runtime/read/%s", stableName.c_str());
125 mFuseWrite = StringPrintf("/mnt/runtime/write/%s", stableName.c_str());
Jeff Sharkey66270a22015-06-24 11:49:24 -0700126
127 setInternalPath(mRawPath);
Jeff Sharkey8474ee32015-07-30 16:54:23 -0700128 if (getMountFlags() & MountFlags::kVisible) {
129 setPath(StringPrintf("/storage/%s", stableName.c_str()));
130 } else {
131 setPath(mRawPath);
132 }
Sudheer Shanka53947a32018-08-01 10:24:13 -0700133 setLabel(stableName);
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)) {
158 // Not visible to apps, so no need to spin up FUSE
159 return OK;
160 }
161
Qin Chaoe0074f12015-12-15 15:20:41 +0800162 if (fs_prepare_dir(mFuseDefault.c_str(), 0700, AID_ROOT, AID_ROOT) ||
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700163 fs_prepare_dir(mFuseRead.c_str(), 0700, AID_ROOT, AID_ROOT) ||
164 fs_prepare_dir(mFuseWrite.c_str(), 0700, AID_ROOT, AID_ROOT)) {
Qin Chaoe0074f12015-12-15 15:20:41 +0800165 PLOG(ERROR) << getId() << " failed to create FUSE mount points";
166 return -errno;
167 }
168
Jeff Sharkey66270a22015-06-24 11:49:24 -0700169 dev_t before = GetDevice(mFuseWrite);
170
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800171 if (!(mFusePid = fork())) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700172 if (getMountFlags() & MountFlags::kPrimary) {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700173 // clang-format off
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700174 if (execl(kFusePath, kFusePath,
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800175 "-u", "1023", // AID_MEDIA_RW
176 "-g", "1023", // AID_MEDIA_RW
Jeff Sharkey20642ae2015-07-28 10:57:29 -0700177 "-U", std::to_string(getMountUserId()).c_str(),
Jeff Sharkey66270a22015-06-24 11:49:24 -0700178 "-w",
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800179 mRawPath.c_str(),
Jeff Sharkey66270a22015-06-24 11:49:24 -0700180 stableName.c_str(),
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700181 NULL)) {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700182 // clang-format on
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700183 PLOG(ERROR) << "Failed to exec";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800184 }
185 } else {
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700186 // In Pre-Q, apps have full read access to secondary storage devices but only
187 // write access for their package specific directories. In Q, they only have access
188 // to their own sandboxes and they can write anywhere inside the sandbox. Instead of
189 // updating sdcardfs to allow packages writing into their own sandboxes, we could
190 // just allow them to write anywhere by passing "-w".
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700191 // clang-format off
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700192 if (GetBoolProperty(kIsolatedStorage, false)) {
193 if (execl(kFusePath, kFusePath,
194 "-u", "1023", // AID_MEDIA_RW
195 "-g", "1023", // AID_MEDIA_RW
196 "-U", std::to_string(getMountUserId()).c_str(),
197 "-w",
198 mRawPath.c_str(),
199 stableName.c_str(),
200 NULL)) {
201 // clang-format on
202 PLOG(ERROR) << "Failed to exec";
203 }
204 } else {
205 // clang-format off
206 if (execl(kFusePath, kFusePath,
207 "-u", "1023", // AID_MEDIA_RW
208 "-g", "1023", // AID_MEDIA_RW
209 "-U", std::to_string(getMountUserId()).c_str(),
210 mRawPath.c_str(),
211 stableName.c_str(),
212 NULL)) {
213 // clang-format on
214 PLOG(ERROR) << "Failed to exec";
215 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800216 }
217 }
218
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700219 LOG(ERROR) << "FUSE exiting";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800220 _exit(1);
221 }
222
223 if (mFusePid == -1) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700224 PLOG(ERROR) << getId() << " failed to fork";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800225 return -errno;
226 }
227
Jeff Sharkey7bdf4d52017-09-18 14:47:10 -0600228 nsecs_t start = systemTime(SYSTEM_TIME_BOOTTIME);
Jeff Sharkey66270a22015-06-24 11:49:24 -0700229 while (before == GetDevice(mFuseWrite)) {
Sudheer Shanka4b6ca4e2018-09-21 10:54:54 -0700230 LOG(DEBUG) << "Waiting for FUSE to spin up...";
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700231 usleep(50000); // 50ms
Jeff Sharkey7bdf4d52017-09-18 14:47:10 -0600232
233 nsecs_t now = systemTime(SYSTEM_TIME_BOOTTIME);
234 if (nanoseconds_to_milliseconds(now - start) > 5000) {
235 LOG(WARNING) << "Timed out while waiting for FUSE to spin up";
236 return -ETIMEDOUT;
237 }
Jeff Sharkey66270a22015-06-24 11:49:24 -0700238 }
Daniel Rosenberg1d79d102017-07-11 17:59:55 -0700239 /* sdcardfs will have exited already. FUSE will still be running */
Daniel Rosenberg8b9a5b32018-03-12 15:47:23 -0700240 TEMP_FAILURE_RETRY(waitpid(mFusePid, nullptr, 0));
241 mFusePid = 0;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700242
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800243 return OK;
244}
245
246status_t PublicVolume::doUnmount() {
John Cormie25cc7e32016-04-18 14:23:29 -0700247 // Unmount the storage before we kill the FUSE process. If we kill
248 // the FUSE process first, most file system operations will return
249 // ENOTCONN until the unmount completes. This is an exotic and unusual
250 // error code and might cause broken behaviour in applications.
Jeff Sharkey8aff8542016-03-30 20:37:28 -0600251 KillProcessesUsingPath(getPath());
252
Jeff Sharkey48d81d32015-04-12 21:50:32 -0700253 ForceUnmount(kAsecPath);
Jeff Sharkey66270a22015-06-24 11:49:24 -0700254
255 ForceUnmount(mFuseDefault);
256 ForceUnmount(mFuseRead);
257 ForceUnmount(mFuseWrite);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800258 ForceUnmount(mRawPath);
259
Jeff Sharkey66270a22015-06-24 11:49:24 -0700260 rmdir(mFuseDefault.c_str());
261 rmdir(mFuseRead.c_str());
262 rmdir(mFuseWrite.c_str());
263 rmdir(mRawPath.c_str());
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700264
Jeff Sharkey66270a22015-06-24 11:49:24 -0700265 mFuseDefault.clear();
266 mFuseRead.clear();
267 mFuseWrite.clear();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700268 mRawPath.clear();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800269
270 return OK;
271}
272
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700273status_t PublicVolume::doFormat(const std::string& fsType) {
Oleksiy Avramchenko4cff06d2018-05-23 18:59:48 +0200274 bool useVfat = vfat::IsSupported();
275 bool useExfat = exfat::IsSupported();
276 status_t res = OK;
277
278 // Resolve the target filesystem type
279 if (fsType == "auto" && useVfat && useExfat) {
280 uint64_t size = 0;
281
282 res = GetBlockDevSize(mDevPath, &size);
283 if (res != OK) {
284 LOG(ERROR) << "Couldn't get device size " << mDevPath;
285 return res;
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700286 }
Oleksiy Avramchenko4cff06d2018-05-23 18:59:48 +0200287
288 // If both vfat & exfat are supported use exfat for SDXC (>~32GiB) cards
289 if (size > 32896LL * 1024 * 1024) {
290 useVfat = false;
291 } else {
292 useExfat = false;
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700293 }
Oleksiy Avramchenko4cff06d2018-05-23 18:59:48 +0200294 } else if (fsType == "vfat") {
295 useExfat = false;
296 } else if (fsType == "exfat") {
297 useVfat = false;
298 }
299
300 if (!useVfat && !useExfat) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700301 LOG(ERROR) << "Unsupported filesystem " << fsType;
302 return -EINVAL;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800303 }
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700304
Oleksiy Avramchenko4cff06d2018-05-23 18:59:48 +0200305 if (WipeBlockDevice(mDevPath) != OK) {
306 LOG(WARNING) << getId() << " failed to wipe";
307 }
308
309 if (useVfat) {
310 res = vfat::Format(mDevPath, 0);
311 } else if (useExfat) {
312 res = exfat::Format(mDevPath);
313 }
314
315 if (res != OK) {
316 LOG(ERROR) << getId() << " failed to format";
317 res = -errno;
318 }
319
320 return res;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800321}
322
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800323} // namespace vold
324} // namespace android