OSDN Git Service

Check if sdcard daemon exited.
[android-x86/system-vold.git] / EmulatedVolume.cpp
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
17 #include "EmulatedVolume.h"
18 #include "Utils.h"
19
20 #include <android-base/stringprintf.h>
21 #include <android-base/logging.h>
22 #include <cutils/fs.h>
23 #include <private/android_filesystem_config.h>
24
25 #include <fcntl.h>
26 #include <stdlib.h>
27 #include <sys/mount.h>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <sys/sysmacros.h>
31 #include <sys/wait.h>
32
33 using android::base::StringPrintf;
34
35 namespace android {
36 namespace vold {
37
38 static const char* kFusePath = "/system/bin/sdcard";
39
40 EmulatedVolume::EmulatedVolume(const std::string& rawPath) :
41         VolumeBase(Type::kEmulated), mFusePid(0) {
42     setId("emulated");
43     mRawPath = rawPath;
44     mLabel = "emulated";
45 }
46
47 EmulatedVolume::EmulatedVolume(const std::string& rawPath, dev_t device,
48         const std::string& fsUuid) : VolumeBase(Type::kEmulated), mFusePid(0) {
49     setId(StringPrintf("emulated:%u,%u", major(device), minor(device)));
50     mRawPath = rawPath;
51     mLabel = fsUuid;
52 }
53
54 EmulatedVolume::~EmulatedVolume() {
55 }
56
57 status_t EmulatedVolume::doMount() {
58     // We could have migrated storage to an adopted private volume, so always
59     // call primary storage "emulated" to avoid media rescans.
60     std::string label = mLabel;
61     if (getMountFlags() & MountFlags::kPrimary) {
62         label = "emulated";
63     }
64
65     mFuseDefault = StringPrintf("/mnt/runtime/default/%s", label.c_str());
66     mFuseRead = StringPrintf("/mnt/runtime/read/%s", label.c_str());
67     mFuseWrite = StringPrintf("/mnt/runtime/write/%s", label.c_str());
68
69     setInternalPath(mRawPath);
70     setPath(StringPrintf("/storage/%s", label.c_str()));
71
72     if (fs_prepare_dir(mFuseDefault.c_str(), 0700, AID_ROOT, AID_ROOT) ||
73             fs_prepare_dir(mFuseRead.c_str(), 0700, AID_ROOT, AID_ROOT) ||
74             fs_prepare_dir(mFuseWrite.c_str(), 0700, AID_ROOT, AID_ROOT)) {
75         PLOG(ERROR) << getId() << " failed to create mount points";
76         return -errno;
77     }
78
79     dev_t before = GetDevice(mFuseWrite);
80
81     if (!(mFusePid = fork())) {
82         if (execl(kFusePath, kFusePath,
83                 "-u", "1023", // AID_MEDIA_RW
84                 "-g", "1023", // AID_MEDIA_RW
85                 "-m",
86                 "-w",
87                 mRawPath.c_str(),
88                 label.c_str(),
89                 NULL)) {
90             PLOG(ERROR) << "Failed to exec";
91         }
92
93         LOG(ERROR) << "FUSE exiting";
94         _exit(1);
95     }
96
97     if (mFusePid == -1) {
98         PLOG(ERROR) << getId() << " failed to fork";
99         return -errno;
100     }
101
102     while (before == GetDevice(mFuseWrite)) {
103         LOG(VERBOSE) << "Waiting for FUSE to spin up...";
104         usleep(50000); // 50ms
105     }
106     /* sdcardfs will have exited already. FUSE will still be running */
107     TEMP_FAILURE_RETRY(waitpid(mFusePid, nullptr, WNOHANG));
108
109     return OK;
110 }
111
112 status_t EmulatedVolume::doUnmount() {
113     // Unmount the storage before we kill the FUSE process. If we kill
114     // the FUSE process first, most file system operations will return
115     // ENOTCONN until the unmount completes. This is an exotic and unusual
116     // error code and might cause broken behaviour in applications.
117     KillProcessesUsingPath(getPath());
118     ForceUnmount(mFuseDefault);
119     ForceUnmount(mFuseRead);
120     ForceUnmount(mFuseWrite);
121
122     if (mFusePid > 0) {
123         kill(mFusePid, SIGTERM);
124         TEMP_FAILURE_RETRY(waitpid(mFusePid, nullptr, 0));
125         mFusePid = 0;
126     }
127
128     rmdir(mFuseDefault.c_str());
129     rmdir(mFuseRead.c_str());
130     rmdir(mFuseWrite.c_str());
131
132     mFuseDefault.clear();
133     mFuseRead.clear();
134     mFuseWrite.clear();
135
136     return OK;
137 }
138
139 }  // namespace vold
140 }  // namespace android