blob: 04bafed627cdeea0a6b7770dcc129a0ac495a4b2 [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 Sharkeyd0640f62015-05-21 22:35:42 -070017#include "fs/Vfat.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080018#include "PublicVolume.h"
19#include "Utils.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070020#include "VolumeManager.h"
21#include "ResponseCode.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080022
Elliott Hughes7e128fb2015-12-04 15:50:53 -080023#include <android-base/stringprintf.h>
24#include <android-base/logging.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080025#include <cutils/fs.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080026#include <private/android_filesystem_config.h>
27
28#include <fcntl.h>
29#include <stdlib.h>
30#include <sys/mount.h>
31#include <sys/stat.h>
32#include <sys/types.h>
Elliott Hughes0e08e842017-05-18 09:08:24 -070033#include <sys/sysmacros.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080034#include <sys/wait.h>
35
Dan Albertae9e8902015-03-16 10:35:17 -070036using android::base::StringPrintf;
37
Jeff Sharkeydeb24052015-03-02 21:01:40 -080038namespace android {
39namespace vold {
40
Jeff Sharkeydeb24052015-03-02 21:01:40 -080041static const char* kFusePath = "/system/bin/sdcard";
42
Jeff Sharkey36801cc2015-03-13 16:09:20 -070043static const char* kAsecPath = "/mnt/secure/asec";
Jeff Sharkeydeb24052015-03-02 21:01:40 -080044
45PublicVolume::PublicVolume(dev_t device) :
Jeff Sharkey36801cc2015-03-13 16:09:20 -070046 VolumeBase(Type::kPublic), mDevice(device), mFusePid(0) {
47 setId(StringPrintf("public:%u,%u", major(device), minor(device)));
48 mDevPath = StringPrintf("/dev/block/vold/%s", getId().c_str());
Jeff Sharkeydeb24052015-03-02 21:01:40 -080049}
50
51PublicVolume::~PublicVolume() {
Jeff Sharkeydeb24052015-03-02 21:01:40 -080052}
53
54status_t PublicVolume::readMetadata() {
Jeff Sharkey95c87cc2015-04-01 11:54:32 -070055 status_t res = ReadMetadataUntrusted(mDevPath, mFsType, mFsUuid, mFsLabel);
Jeff Sharkey814e9d32017-09-13 11:49:44 -060056#if ENABLE_BINDER
57 auto listener = getListener();
58 if (listener) listener->onVolumeMetadataChanged(getId(), mFsType, mFsUuid, mFsLabel);
59#else
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070060 notifyEvent(ResponseCode::VolumeFsTypeChanged, mFsType);
61 notifyEvent(ResponseCode::VolumeFsUuidChanged, mFsUuid);
62 notifyEvent(ResponseCode::VolumeFsLabelChanged, mFsLabel);
Jeff Sharkey814e9d32017-09-13 11:49:44 -060063#endif
Jeff Sharkey36801cc2015-03-13 16:09:20 -070064 return res;
Jeff Sharkeydeb24052015-03-02 21:01:40 -080065}
66
67status_t PublicVolume::initAsecStage() {
68 std::string legacyPath(mRawPath + "/android_secure");
69 std::string securePath(mRawPath + "/.android_secure");
70
71 // Recover legacy secure path
72 if (!access(legacyPath.c_str(), R_OK | X_OK)
73 && access(securePath.c_str(), R_OK | X_OK)) {
74 if (rename(legacyPath.c_str(), securePath.c_str())) {
Jeff Sharkey9c484982015-03-31 10:35:33 -070075 PLOG(WARNING) << getId() << " failed to rename legacy ASEC dir";
Jeff Sharkeydeb24052015-03-02 21:01:40 -080076 }
77 }
78
Jeff Sharkey36801cc2015-03-13 16:09:20 -070079 if (TEMP_FAILURE_RETRY(mkdir(securePath.c_str(), 0700))) {
80 if (errno != EEXIST) {
Jeff Sharkey9c484982015-03-31 10:35:33 -070081 PLOG(WARNING) << getId() << " creating ASEC stage failed";
Jeff Sharkey36801cc2015-03-13 16:09:20 -070082 return -errno;
83 }
Jeff Sharkeydeb24052015-03-02 21:01:40 -080084 }
85
Jeff Sharkey36801cc2015-03-13 16:09:20 -070086 BindMount(securePath, kAsecPath);
87
Jeff Sharkeydeb24052015-03-02 21:01:40 -080088 return OK;
89}
90
Jeff Sharkey9c484982015-03-31 10:35:33 -070091status_t PublicVolume::doCreate() {
92 return CreateDeviceNode(mDevPath, mDevice);
93}
94
95status_t PublicVolume::doDestroy() {
96 return DestroyDeviceNode(mDevPath);
97}
98
Jeff Sharkeydeb24052015-03-02 21:01:40 -080099status_t PublicVolume::doMount() {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700100 // TODO: expand to support mounting other filesystems
Jeff Sharkey9c484982015-03-31 10:35:33 -0700101 readMetadata();
102
Makoto Onukic82c9ce2015-06-24 13:30:45 -0700103 if (mFsType != "vfat") {
104 LOG(ERROR) << getId() << " unsupported filesystem " << mFsType;
105 return -EIO;
106 }
107
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700108 if (vfat::Check(mDevPath)) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700109 LOG(ERROR) << getId() << " failed filesystem check";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800110 return -EIO;
111 }
112
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700113 // Use UUID as stable name, if available
114 std::string stableName = getId();
115 if (!mFsUuid.empty()) {
Jeff Sharkeyf0121c52015-04-06 14:08:45 -0700116 stableName = mFsUuid;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700117 }
118
119 mRawPath = StringPrintf("/mnt/media_rw/%s", stableName.c_str());
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700120
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700121 mFuseDefault = StringPrintf("/mnt/runtime/default/%s", stableName.c_str());
122 mFuseRead = StringPrintf("/mnt/runtime/read/%s", stableName.c_str());
123 mFuseWrite = StringPrintf("/mnt/runtime/write/%s", stableName.c_str());
Jeff Sharkey66270a22015-06-24 11:49:24 -0700124
125 setInternalPath(mRawPath);
Jeff Sharkey8474ee32015-07-30 16:54:23 -0700126 if (getMountFlags() & MountFlags::kVisible) {
127 setPath(StringPrintf("/storage/%s", stableName.c_str()));
128 } else {
129 setPath(mRawPath);
130 }
Jeff Sharkey66270a22015-06-24 11:49:24 -0700131
Qin Chaoe0074f12015-12-15 15:20:41 +0800132 if (fs_prepare_dir(mRawPath.c_str(), 0700, AID_ROOT, AID_ROOT)) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700133 PLOG(ERROR) << getId() << " failed to create mount points";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800134 return -errno;
135 }
136
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700137 if (vfat::Mount(mDevPath, mRawPath, false, false, false,
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800138 AID_MEDIA_RW, AID_MEDIA_RW, 0007, true)) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700139 PLOG(ERROR) << getId() << " failed to mount " << mDevPath;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800140 return -EIO;
141 }
142
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700143 if (getMountFlags() & MountFlags::kPrimary) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700144 initAsecStage();
145 }
146
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700147 if (!(getMountFlags() & MountFlags::kVisible)) {
148 // Not visible to apps, so no need to spin up FUSE
149 return OK;
150 }
151
Qin Chaoe0074f12015-12-15 15:20:41 +0800152 if (fs_prepare_dir(mFuseDefault.c_str(), 0700, AID_ROOT, AID_ROOT) ||
153 fs_prepare_dir(mFuseRead.c_str(), 0700, AID_ROOT, AID_ROOT) ||
154 fs_prepare_dir(mFuseWrite.c_str(), 0700, AID_ROOT, AID_ROOT)) {
155 PLOG(ERROR) << getId() << " failed to create FUSE mount points";
156 return -errno;
157 }
158
Jeff Sharkey66270a22015-06-24 11:49:24 -0700159 dev_t before = GetDevice(mFuseWrite);
160
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800161 if (!(mFusePid = fork())) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700162 if (getMountFlags() & MountFlags::kPrimary) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700163 if (execl(kFusePath, kFusePath,
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800164 "-u", "1023", // AID_MEDIA_RW
165 "-g", "1023", // AID_MEDIA_RW
Jeff Sharkey20642ae2015-07-28 10:57:29 -0700166 "-U", std::to_string(getMountUserId()).c_str(),
Jeff Sharkey66270a22015-06-24 11:49:24 -0700167 "-w",
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800168 mRawPath.c_str(),
Jeff Sharkey66270a22015-06-24 11:49:24 -0700169 stableName.c_str(),
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700170 NULL)) {
171 PLOG(ERROR) << "Failed to exec";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800172 }
173 } else {
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 Sharkeydeb24052015-03-02 21:01:40 -0800178 mRawPath.c_str(),
Jeff Sharkey66270a22015-06-24 11:49:24 -0700179 stableName.c_str(),
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700180 NULL)) {
181 PLOG(ERROR) << "Failed to exec";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800182 }
183 }
184
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700185 LOG(ERROR) << "FUSE exiting";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800186 _exit(1);
187 }
188
189 if (mFusePid == -1) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700190 PLOG(ERROR) << getId() << " failed to fork";
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800191 return -errno;
192 }
193
Jeff Sharkey66270a22015-06-24 11:49:24 -0700194 while (before == GetDevice(mFuseWrite)) {
195 LOG(VERBOSE) << "Waiting for FUSE to spin up...";
196 usleep(50000); // 50ms
197 }
Daniel Rosenberg1d79d102017-07-11 17:59:55 -0700198 /* sdcardfs will have exited already. FUSE will still be running */
199 TEMP_FAILURE_RETRY(waitpid(mFusePid, nullptr, WNOHANG));
Jeff Sharkey66270a22015-06-24 11:49:24 -0700200
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800201 return OK;
202}
203
204status_t PublicVolume::doUnmount() {
John Cormie25cc7e32016-04-18 14:23:29 -0700205 // Unmount the storage before we kill the FUSE process. If we kill
206 // the FUSE process first, most file system operations will return
207 // ENOTCONN until the unmount completes. This is an exotic and unusual
208 // error code and might cause broken behaviour in applications.
Jeff Sharkey8aff8542016-03-30 20:37:28 -0600209 KillProcessesUsingPath(getPath());
210
Jeff Sharkey48d81d32015-04-12 21:50:32 -0700211 ForceUnmount(kAsecPath);
Jeff Sharkey66270a22015-06-24 11:49:24 -0700212
213 ForceUnmount(mFuseDefault);
214 ForceUnmount(mFuseRead);
215 ForceUnmount(mFuseWrite);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800216 ForceUnmount(mRawPath);
217
John Cormie25cc7e32016-04-18 14:23:29 -0700218 if (mFusePid > 0) {
219 kill(mFusePid, SIGTERM);
220 TEMP_FAILURE_RETRY(waitpid(mFusePid, nullptr, 0));
221 mFusePid = 0;
222 }
223
Jeff Sharkey66270a22015-06-24 11:49:24 -0700224 rmdir(mFuseDefault.c_str());
225 rmdir(mFuseRead.c_str());
226 rmdir(mFuseWrite.c_str());
227 rmdir(mRawPath.c_str());
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700228
Jeff Sharkey66270a22015-06-24 11:49:24 -0700229 mFuseDefault.clear();
230 mFuseRead.clear();
231 mFuseWrite.clear();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700232 mRawPath.clear();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800233
234 return OK;
235}
236
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700237status_t PublicVolume::doFormat(const std::string& fsType) {
238 if (fsType == "vfat" || fsType == "auto") {
239 if (WipeBlockDevice(mDevPath) != OK) {
240 LOG(WARNING) << getId() << " failed to wipe";
241 }
242 if (vfat::Format(mDevPath, 0)) {
243 LOG(ERROR) << getId() << " failed to format";
244 return -errno;
245 }
246 } else {
247 LOG(ERROR) << "Unsupported filesystem " << fsType;
248 return -EINVAL;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800249 }
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700250
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800251 return OK;
252}
253
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800254} // namespace vold
255} // namespace android