blob: 3de89abdbd071afb7ded9160a95e0d48f2c4a931 [file] [log] [blame]
San Mehatf1b736b2009-10-10 17:22:08 -07001/*
2 * Copyright (C) 2008 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 Sharkey67b8c492017-09-21 17:08:43 -060017#define ATRACE_TAG ATRACE_TAG_PACKAGE_MANAGER
18
Yabin Cuid1104f72015-01-02 13:28:28 -080019#include <dirent.h>
San Mehatf1b736b2009-10-10 17:22:08 -070020#include <errno.h>
San Mehata2677e42009-12-13 10:40:18 -080021#include <fcntl.h>
Yabin Cuid1104f72015-01-02 13:28:28 -080022#include <mntent.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <sys/ioctl.h>
27#include <sys/mount.h>
San Mehata19b2502010-01-06 10:33:53 -080028#include <sys/stat.h>
Elliott Hughes0e08e842017-05-18 09:08:24 -070029#include <sys/sysmacros.h>
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070030#include <sys/types.h>
Jeff Sharkey66270a22015-06-24 11:49:24 -070031#include <sys/wait.h>
Yabin Cuid1104f72015-01-02 13:28:28 -080032#include <unistd.h>
Sudheer Shanka40ab6742018-09-18 13:07:45 -070033#include <array>
San Mehata19b2502010-01-06 10:33:53 -080034
San Mehata2677e42009-12-13 10:40:18 -080035#include <linux/kdev_t.h>
San Mehatf1b736b2009-10-10 17:22:08 -070036
Jiyong Park8d21c922019-01-04 13:35:25 +090037#include <ApexProperties.sysprop.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080038#include <android-base/logging.h>
Jeff Vander Stoep58890832017-10-23 17:12:31 -070039#include <android-base/parseint.h>
Jeff Sharkey3472e522017-10-06 18:02:53 -060040#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080041#include <android-base/stringprintf.h>
Jeff Vander Stoep58890832017-10-23 17:12:31 -070042#include <android-base/strings.h>
Narayan Kamath02efdf52019-11-27 10:53:51 +000043#include <async_safe/log.h>
Jeff Vander Stoep58890832017-10-23 17:12:31 -070044
Jeff Sharkey71ebe152013-09-17 17:24:38 -070045#include <cutils/fs.h>
Jeff Sharkey67b8c492017-09-21 17:08:43 -060046#include <utils/Trace.h>
San Mehatf1b736b2009-10-10 17:22:08 -070047
Robert Craigb9e3ba52014-02-04 10:53:00 -050048#include <selinux/android.h>
49
San Mehatfd7f5872009-10-12 11:32:47 -070050#include <sysutils/NetlinkEvent.h>
51
Kenny Root344ca102012-04-03 17:23:01 -070052#include <private/android_filesystem_config.h>
53
Eric Biggersa701c452018-10-23 13:06:55 -070054#include <fscrypt/fscrypt.h>
Paul Crowleyc6433a22017-10-24 14:54:43 -070055
Risanac02a482018-10-31 21:59:47 -060056#include "AppFuseUtil.h"
Paul Crowleyc6433a22017-10-24 14:54:43 -070057#include "Devmapper.h"
Eric Biggersa701c452018-10-23 13:06:55 -070058#include "FsCrypt.h"
San Mehata19b2502010-01-06 10:33:53 -080059#include "Loop.h"
Paul Crowleyc6433a22017-10-24 14:54:43 -070060#include "NetlinkManager.h"
61#include "Process.h"
62#include "Utils.h"
Sudheer Shanka40ab6742018-09-18 13:07:45 -070063#include "VoldNativeService.h"
Paul Crowleyc6433a22017-10-24 14:54:43 -070064#include "VoldUtil.h"
65#include "VolumeManager.h"
66#include "cryptfs.h"
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070067#include "fs/Ext4.h"
68#include "fs/Vfat.h"
Paul Crowleyc6433a22017-10-24 14:54:43 -070069#include "model/EmulatedVolume.h"
70#include "model/ObbVolume.h"
Zima438b242019-09-25 14:37:38 +010071#include "model/PrivateVolume.h"
Risan8c9f3322018-10-29 08:52:56 +090072#include "model/StubVolume.h"
San Mehat23969932010-01-09 07:08:06 -080073
Sudheer Shankaf9b38a52019-02-14 19:09:51 +000074using android::OK;
Sudheer Shanka53947a32018-08-01 10:24:13 -070075using android::base::GetBoolProperty;
Mark Salyzyn86e81e72018-09-20 10:09:27 -070076using android::base::StartsWith;
Sudheer Shanka53947a32018-08-01 10:24:13 -070077using android::base::StringAppendF;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070078using android::base::StringPrintf;
Jeff Sharkey11c2d382017-09-11 10:32:01 -060079using android::base::unique_fd;
Sudheer Shanka023b5392019-02-06 12:39:19 -080080using android::vold::BindMount;
Sudheer Shankaf9b38a52019-02-14 19:09:51 +000081using android::vold::CreateDir;
Sudheer Shanka30df1c62019-02-22 17:03:02 -080082using android::vold::DeleteDirContents;
Sudheer Shanka023b5392019-02-06 12:39:19 -080083using android::vold::DeleteDirContentsAndDir;
Martijn Coenen13ff6682019-12-24 12:57:16 +010084using android::vold::PrepareDirsFromRoot;
Zima438b242019-09-25 14:37:38 +010085using android::vold::PrivateVolume;
Sudheer Shanka023b5392019-02-06 12:39:19 -080086using android::vold::Symlink;
87using android::vold::Unlink;
88using android::vold::UnmountTree;
Sudheer Shanka03992e32018-12-12 12:43:38 -080089using android::vold::VoldNativeService;
Zima438b242019-09-25 14:37:38 +010090using android::vold::VolumeBase;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070091
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060092static const char* kPathUserMount = "/mnt/user";
93static const char* kPathVirtualDisk = "/data/misc/vold/virtual_disk";
94
95static const char* kPropVirtualDisk = "persist.sys.virtual_disk";
96
Sudheer Shanka53947a32018-08-01 10:24:13 -070097static const std::string kEmptyString("");
98
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060099/* 512MiB is large enough for testing purposes */
100static const unsigned int kSizeVirtualDisk = 536870912;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700101
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700102static const unsigned int kMajorBlockMmc = 179;
Yu Ning942d4e82016-01-08 17:36:47 +0800103static const unsigned int kMajorBlockExperimentalMin = 240;
104static const unsigned int kMajorBlockExperimentalMax = 254;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700105
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700106VolumeManager* VolumeManager::sInstance = NULL;
San Mehatf1b736b2009-10-10 17:22:08 -0700107
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700108VolumeManager* VolumeManager::Instance() {
109 if (!sInstance) sInstance = new VolumeManager();
San Mehatf1b736b2009-10-10 17:22:08 -0700110 return sInstance;
111}
112
113VolumeManager::VolumeManager() {
San Mehatd9a4e352010-03-12 13:32:47 -0800114 mDebug = false;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600115 mNextObbId = 0;
Risan8c9f3322018-10-29 08:52:56 +0900116 mNextStubVolumeId = 0;
Jeff Sharkey401b2602017-12-14 22:15:20 -0700117 // For security reasons, assume that a secure keyguard is
118 // showing until we hear otherwise
119 mSecureKeyguardShowing = true;
San Mehatf1b736b2009-10-10 17:22:08 -0700120}
121
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700122VolumeManager::~VolumeManager() {}
San Mehatd9a4e352010-03-12 13:32:47 -0800123
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600124int VolumeManager::updateVirtualDisk() {
Jeff Sharkey67b8c492017-09-21 17:08:43 -0600125 ATRACE_NAME("VolumeManager::updateVirtualDisk");
Mark Salyzyn86e81e72018-09-20 10:09:27 -0700126 if (GetBoolProperty(kPropVirtualDisk, false)) {
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600127 if (access(kPathVirtualDisk, F_OK) != 0) {
128 Loop::createImageFile(kPathVirtualDisk, kSizeVirtualDisk / 512);
129 }
130
131 if (mVirtualDisk == nullptr) {
132 if (Loop::create(kPathVirtualDisk, mVirtualDiskPath) != 0) {
133 LOG(ERROR) << "Failed to create virtual disk";
134 return -1;
135 }
136
137 struct stat buf;
138 if (stat(mVirtualDiskPath.c_str(), &buf) < 0) {
139 PLOG(ERROR) << "Failed to stat " << mVirtualDiskPath;
140 return -1;
141 }
142
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700143 auto disk = new android::vold::Disk(
144 "virtual", buf.st_rdev, "virtual",
145 android::vold::Disk::Flags::kAdoptable | android::vold::Disk::Flags::kSd);
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600146 mVirtualDisk = std::shared_ptr<android::vold::Disk>(disk);
Jeff Sharkey401b2602017-12-14 22:15:20 -0700147 handleDiskAdded(mVirtualDisk);
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600148 }
149 } else {
150 if (mVirtualDisk != nullptr) {
151 dev_t device = mVirtualDisk->getDevice();
Jeff Sharkey401b2602017-12-14 22:15:20 -0700152 handleDiskRemoved(device);
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600153
154 Loop::destroyByDevice(mVirtualDiskPath.c_str());
155 mVirtualDisk = nullptr;
156 }
157
158 if (access(kPathVirtualDisk, F_OK) == 0) {
159 unlink(kPathVirtualDisk);
160 }
161 }
162 return 0;
163}
164
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700165int VolumeManager::setDebug(bool enable) {
San Mehatd9a4e352010-03-12 13:32:47 -0800166 mDebug = enable;
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700167 return 0;
San Mehatd9a4e352010-03-12 13:32:47 -0800168}
169
San Mehatf1b736b2009-10-10 17:22:08 -0700170int VolumeManager::start() {
Jeff Sharkey67b8c492017-09-21 17:08:43 -0600171 ATRACE_NAME("VolumeManager::start");
172
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700173 // Always start from a clean slate by unmounting everything in
174 // directories that we own, in case we crashed.
Jeff Sharkey9c484982015-03-31 10:35:33 -0700175 unmountAll();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700176
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600177 Devmapper::destroyAll();
178 Loop::destroyAll();
179
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700180 // Assume that we always have an emulated volume on internal
181 // storage; the framework will decide if it should be mounted.
Zima438b242019-09-25 14:37:38 +0100182 CHECK(mInternalEmulatedVolumes.empty());
183
184 auto vol = std::shared_ptr<android::vold::VolumeBase>(
185 new android::vold::EmulatedVolume("/data/media", 0));
186 vol->setMountUserId(0);
187 vol->create();
188 mInternalEmulatedVolumes.push_back(vol);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700189
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600190 // Consider creating a virtual disk
191 updateVirtualDisk();
192
San Mehatf1b736b2009-10-10 17:22:08 -0700193 return 0;
194}
195
196int VolumeManager::stop() {
Zima438b242019-09-25 14:37:38 +0100197 CHECK(!mInternalEmulatedVolumes.empty());
198 for (const auto& vol : mInternalEmulatedVolumes) {
199 vol->destroy();
200 }
201 mInternalEmulatedVolumes.clear();
202
San Mehatf1b736b2009-10-10 17:22:08 -0700203 return 0;
204}
205
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700206void VolumeManager::handleBlockEvent(NetlinkEvent* evt) {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700207 std::lock_guard<std::mutex> lock(mLock);
208
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700209 if (mDebug) {
Sudheer Shanka4b6ca4e2018-09-21 10:54:54 -0700210 LOG(DEBUG) << "----------------";
211 LOG(DEBUG) << "handleBlockEvent with action " << (int)evt->getAction();
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700212 evt->dump();
213 }
San Mehatf1b736b2009-10-10 17:22:08 -0700214
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700215 std::string eventPath(evt->findParam("DEVPATH") ? evt->findParam("DEVPATH") : "");
216 std::string devType(evt->findParam("DEVTYPE") ? evt->findParam("DEVTYPE") : "");
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700217
218 if (devType != "disk") return;
219
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600220 int major = std::stoi(evt->findParam("MAJOR"));
221 int minor = std::stoi(evt->findParam("MINOR"));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700222 dev_t device = makedev(major, minor);
223
224 switch (evt->getAction()) {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700225 case NetlinkEvent::Action::kAdd: {
226 for (const auto& source : mDiskSources) {
227 if (source->matches(eventPath)) {
228 // For now, assume that MMC and virtio-blk (the latter is
229 // emulator-specific; see Disk.cpp for details) devices are SD,
230 // and that everything else is USB
231 int flags = source->getFlags();
232 if (major == kMajorBlockMmc || (android::vold::IsRunningInEmulator() &&
233 major >= (int)kMajorBlockExperimentalMin &&
234 major <= (int)kMajorBlockExperimentalMax)) {
235 flags |= android::vold::Disk::Flags::kSd;
236 } else {
237 flags |= android::vold::Disk::Flags::kUsb;
238 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700239
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700240 auto disk =
241 new android::vold::Disk(eventPath, device, source->getNickname(), flags);
242 handleDiskAdded(std::shared_ptr<android::vold::Disk>(disk));
243 break;
244 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700245 }
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700246 break;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700247 }
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700248 case NetlinkEvent::Action::kChange: {
249 LOG(DEBUG) << "Disk at " << major << ":" << minor << " changed";
250 handleDiskChanged(device);
251 break;
252 }
253 case NetlinkEvent::Action::kRemove: {
254 handleDiskRemoved(device);
255 break;
256 }
257 default: {
258 LOG(WARNING) << "Unexpected block event action " << (int)evt->getAction();
259 break;
260 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700261 }
262}
263
Jeff Sharkey401b2602017-12-14 22:15:20 -0700264void VolumeManager::handleDiskAdded(const std::shared_ptr<android::vold::Disk>& disk) {
265 // For security reasons, if secure keyguard is showing, wait
266 // until the user unlocks the device to actually touch it
Martijn Coenencf5916f2020-01-03 14:36:45 +0100267 // Additionally, wait until user 0 is actually started, since we need
268 // the user to be up before we can mount a FUSE daemon to handle the disk.
269 bool userZeroStarted = mStartedUsers.find(0) != mStartedUsers.end();
Jeff Sharkey401b2602017-12-14 22:15:20 -0700270 if (mSecureKeyguardShowing) {
271 LOG(INFO) << "Found disk at " << disk->getEventPath()
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700272 << " but delaying scan due to secure keyguard";
Jeff Sharkey401b2602017-12-14 22:15:20 -0700273 mPendingDisks.push_back(disk);
Martijn Coenencf5916f2020-01-03 14:36:45 +0100274 } else if (!userZeroStarted) {
275 LOG(INFO) << "Found disk at " << disk->getEventPath()
276 << " but delaying scan due to user zero not having started";
277 mPendingDisks.push_back(disk);
Jeff Sharkey401b2602017-12-14 22:15:20 -0700278 } else {
279 disk->create();
280 mDisks.push_back(disk);
281 }
282}
283
284void VolumeManager::handleDiskChanged(dev_t device) {
285 for (const auto& disk : mDisks) {
286 if (disk->getDevice() == device) {
287 disk->readMetadata();
288 disk->readPartitions();
289 }
290 }
291
292 // For security reasons, we ignore all pending disks, since
293 // we'll scan them once the device is unlocked
294}
295
296void VolumeManager::handleDiskRemoved(dev_t device) {
297 auto i = mDisks.begin();
298 while (i != mDisks.end()) {
299 if ((*i)->getDevice() == device) {
300 (*i)->destroy();
301 i = mDisks.erase(i);
302 } else {
303 ++i;
304 }
305 }
306 auto j = mPendingDisks.begin();
307 while (j != mPendingDisks.end()) {
308 if ((*j)->getDevice() == device) {
309 j = mPendingDisks.erase(j);
310 } else {
311 ++j;
312 }
313 }
314}
315
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700316void VolumeManager::addDiskSource(const std::shared_ptr<DiskSource>& diskSource) {
Wei Wang6b455c22017-01-20 11:52:33 -0800317 std::lock_guard<std::mutex> lock(mLock);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700318 mDiskSources.push_back(diskSource);
319}
320
321std::shared_ptr<android::vold::Disk> VolumeManager::findDisk(const std::string& id) {
322 for (auto disk : mDisks) {
323 if (disk->getId() == id) {
324 return disk;
San Mehatf1b736b2009-10-10 17:22:08 -0700325 }
326 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700327 return nullptr;
328}
San Mehatf1b736b2009-10-10 17:22:08 -0700329
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700330std::shared_ptr<android::vold::VolumeBase> VolumeManager::findVolume(const std::string& id) {
Zima438b242019-09-25 14:37:38 +0100331 for (const auto& vol : mInternalEmulatedVolumes) {
332 if (vol->getId() == id) {
333 return vol;
334 }
San Mehatf1b736b2009-10-10 17:22:08 -0700335 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700336 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700337 auto vol = disk->findVolume(id);
338 if (vol != nullptr) {
339 return vol;
340 }
341 }
Risan8c9f3322018-10-29 08:52:56 +0900342 for (const auto& vol : mStubVolumes) {
343 if (vol->getId() == id) {
344 return vol;
345 }
346 }
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600347 for (const auto& vol : mObbVolumes) {
348 if (vol->getId() == id) {
349 return vol;
350 }
351 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700352 return nullptr;
353}
354
Greg Kaiser2bc201e2018-12-18 08:42:08 -0800355void VolumeManager::listVolumes(android::vold::VolumeBase::Type type,
356 std::list<std::string>& list) const {
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700357 list.clear();
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700358 for (const auto& disk : mDisks) {
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700359 disk->listVolumes(type, list);
360 }
361}
362
Jeff Sharkey3ce18252017-10-24 11:08:45 -0600363int VolumeManager::forgetPartition(const std::string& partGuid, const std::string& fsUuid) {
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700364 std::string normalizedGuid;
365 if (android::vold::NormalizeHex(partGuid, normalizedGuid)) {
366 LOG(WARNING) << "Invalid GUID " << partGuid;
367 return -1;
368 }
369
Paul Crowleyc6433a22017-10-24 14:54:43 -0700370 bool success = true;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700371 std::string keyPath = android::vold::BuildKeyPath(normalizedGuid);
372 if (unlink(keyPath.c_str()) != 0) {
373 LOG(ERROR) << "Failed to unlink " << keyPath;
Paul Crowleyc6433a22017-10-24 14:54:43 -0700374 success = false;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700375 }
Eric Biggersa701c452018-10-23 13:06:55 -0700376 if (fscrypt_is_native()) {
377 if (!fscrypt_destroy_volume_keys(fsUuid)) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700378 success = false;
379 }
380 }
381 return success ? 0 : -1;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700382}
383
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700384int VolumeManager::linkPrimary(userid_t userId) {
Abhijeet Kaur01fa0e02019-12-13 10:26:32 +0000385 if (!GetBoolProperty(android::vold::kPropFuse, false)) {
Zima438b242019-09-25 14:37:38 +0100386 std::string source(mPrimary->getPath());
387 if (mPrimary->isEmulated()) {
388 source = StringPrintf("%s/%d", source.c_str(), userId);
389 fs_prepare_dir(source.c_str(), 0755, AID_ROOT, AID_ROOT);
390 }
Zim3623a212019-07-19 16:46:53 +0100391
Zima438b242019-09-25 14:37:38 +0100392 std::string target(StringPrintf("/mnt/user/%d/primary", userId));
393 LOG(DEBUG) << "Linking " << source << " to " << target;
394 Symlink(source, target);
Zim3623a212019-07-19 16:46:53 +0100395 }
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700396 return 0;
397}
398
Zima438b242019-09-25 14:37:38 +0100399void VolumeManager::destroyEmulatedVolumesForUser(userid_t userId) {
400 // Destroy and remove all unstacked EmulatedVolumes for the user
401 auto i = mInternalEmulatedVolumes.begin();
402 while (i != mInternalEmulatedVolumes.end()) {
403 auto vol = *i;
404 if (vol->getMountUserId() == userId) {
405 vol->destroy();
406 i = mInternalEmulatedVolumes.erase(i);
407 } else {
408 i++;
409 }
410 }
411
412 // Destroy and remove all stacked EmulatedVolumes for the user on each mounted private volume
413 std::list<std::string> private_vols;
414 listVolumes(VolumeBase::Type::kPrivate, private_vols);
415 for (const std::string& id : private_vols) {
416 PrivateVolume* pvol = static_cast<PrivateVolume*>(findVolume(id).get());
417 std::list<std::shared_ptr<VolumeBase>> vols_to_remove;
418 if (pvol->getState() == VolumeBase::State::kMounted) {
419 for (const auto& vol : pvol->getVolumes()) {
420 if (vol->getMountUserId() == userId) {
421 vols_to_remove.push_back(vol);
422 }
423 }
424 for (const auto& vol : vols_to_remove) {
425 vol->destroy();
426 pvol->removeVolume(vol);
427 }
428 } // else EmulatedVolumes will be destroyed on VolumeBase#unmount
429 }
430}
431
432void VolumeManager::createEmulatedVolumesForUser(userid_t userId) {
433 // Create unstacked EmulatedVolumes for the user
434 auto vol = std::shared_ptr<android::vold::VolumeBase>(
435 new android::vold::EmulatedVolume("/data/media", userId));
436 vol->setMountUserId(userId);
437 mInternalEmulatedVolumes.push_back(vol);
438 vol->create();
439
440 // Create stacked EmulatedVolumes for the user on each PrivateVolume
441 std::list<std::string> private_vols;
442 listVolumes(VolumeBase::Type::kPrivate, private_vols);
443 for (const std::string& id : private_vols) {
444 PrivateVolume* pvol = static_cast<PrivateVolume*>(findVolume(id).get());
445 if (pvol->getState() == VolumeBase::State::kMounted) {
446 auto evol =
447 std::shared_ptr<android::vold::VolumeBase>(new android::vold::EmulatedVolume(
448 pvol->getPath() + "/media", pvol->getRawDevice(), pvol->getFsUuid(),
449 userId));
450 evol->setMountUserId(userId);
451 pvol->addVolume(evol);
452 evol->create();
453 } // else EmulatedVolumes will be created per user when on PrivateVolume#doMount
454 }
455}
456
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700457int VolumeManager::onUserAdded(userid_t userId, int userSerialNumber) {
Zima438b242019-09-25 14:37:38 +0100458 LOG(INFO) << "onUserAdded: " << userId;
459
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700460 mAddedUsers[userId] = userSerialNumber;
461 return 0;
462}
463
464int VolumeManager::onUserRemoved(userid_t userId) {
Zima438b242019-09-25 14:37:38 +0100465 LOG(INFO) << "onUserRemoved: " << userId;
466
Zim2d45d9b2019-11-14 16:19:05 +0000467 onUserStopped(userId);
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700468 mAddedUsers.erase(userId);
469 return 0;
470}
471
Sudheer Shankaebce4cc2019-04-29 10:46:35 -0700472int VolumeManager::onUserStarted(userid_t userId) {
Zima438b242019-09-25 14:37:38 +0100473 LOG(INFO) << "onUserStarted: " << userId;
474
Zim2d45d9b2019-11-14 16:19:05 +0000475 if (mStartedUsers.find(userId) == mStartedUsers.end()) {
476 createEmulatedVolumesForUser(userId);
477 }
478
Abhijeet Kaur01fa0e02019-12-13 10:26:32 +0000479 if (!GetBoolProperty(android::vold::kPropFuse, false)) {
Zima438b242019-09-25 14:37:38 +0100480 // Note that sometimes the system will spin up processes from Zygote
481 // before actually starting the user, so we're okay if Zygote
482 // already created this directory.
483 std::string path(StringPrintf("%s/%d", kPathUserMount, userId));
484 fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT);
485
486 if (mPrimary) {
487 linkPrimary(userId);
488 }
489 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700490
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700491 mStartedUsers.insert(userId);
Martijn Coenencf5916f2020-01-03 14:36:45 +0100492
493 createPendingDisksIfNeeded();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700494 return 0;
495}
496
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700497int VolumeManager::onUserStopped(userid_t userId) {
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700498 LOG(VERBOSE) << "onUserStopped: " << userId;
Zima438b242019-09-25 14:37:38 +0100499
Zim2d45d9b2019-11-14 16:19:05 +0000500 if (mStartedUsers.find(userId) != mStartedUsers.end()) {
Zima438b242019-09-25 14:37:38 +0100501 destroyEmulatedVolumesForUser(userId);
502 }
503
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700504 mStartedUsers.erase(userId);
Sudheer Shankafa6a1742018-10-04 16:26:22 -0700505 return 0;
506}
507
Martijn Coenencf5916f2020-01-03 14:36:45 +0100508void VolumeManager::createPendingDisksIfNeeded() {
509 bool userZeroStarted = mStartedUsers.find(0) != mStartedUsers.end();
510 if (!mSecureKeyguardShowing && userZeroStarted) {
511 // Now that secure keyguard has been dismissed and user 0 has
512 // started, process any pending disks
Jeff Sharkey401b2602017-12-14 22:15:20 -0700513 for (const auto& disk : mPendingDisks) {
514 disk->create();
515 mDisks.push_back(disk);
516 }
517 mPendingDisks.clear();
518 }
Martijn Coenencf5916f2020-01-03 14:36:45 +0100519}
520
521int VolumeManager::onSecureKeyguardStateChanged(bool isShowing) {
522 mSecureKeyguardShowing = isShowing;
523 createPendingDisksIfNeeded();
Jeff Sharkey401b2602017-12-14 22:15:20 -0700524 return 0;
525}
526
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700527int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol) {
528 mPrimary = vol;
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700529 for (userid_t userId : mStartedUsers) {
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700530 linkPrimary(userId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700531 }
532 return 0;
533}
534
Narayan Kamath02efdf52019-11-27 10:53:51 +0000535// This code is executed after a fork so it's very important that the set of
536// methods we call here is strictly limited.
537//
538// TODO: Get rid of this guesswork altogether and instead exec a process
539// immediately after fork to do our bindding for us.
540static bool childProcess(const char* storageSource, const char* userSource, int nsFd,
541 struct dirent* de) {
542 if (setns(nsFd, CLONE_NEWNS) != 0) {
543 async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to setns for %s :%s", de->d_name,
544 strerror(errno));
545 return false;
546 }
547
548 // NOTE: Inlined from vold::UnmountTree here to avoid using PLOG methods and
549 // to also protect against future changes that may cause issues across a
550 // fork.
551 if (TEMP_FAILURE_RETRY(umount2("/storage/", MNT_DETACH)) < 0 && errno != EINVAL &&
552 errno != ENOENT) {
553 async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to unmount /storage/ :%s",
554 strerror(errno));
555 return false;
556 }
557
558 if (TEMP_FAILURE_RETRY(mount(storageSource, "/storage", NULL, MS_BIND | MS_REC, NULL)) == -1) {
559 async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to mount %s for %s :%s",
560 storageSource, de->d_name, strerror(errno));
561 return false;
562 }
563
564 if (TEMP_FAILURE_RETRY(mount(NULL, "/storage", NULL, MS_REC | MS_SLAVE, NULL)) == -1) {
565 async_safe_format_log(ANDROID_LOG_ERROR, "vold",
566 "Failed to set MS_SLAVE to /storage for %s :%s", de->d_name,
567 strerror(errno));
568 return false;
569 }
570
571 if (TEMP_FAILURE_RETRY(mount(userSource, "/storage/self", NULL, MS_BIND, NULL)) == -1) {
572 async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to mount %s for %s :%s",
573 userSource, de->d_name, strerror(errno));
574 return false;
575 }
576
577 return true;
578}
579
Sudheer Shanka817b9112018-12-13 17:40:28 -0800580int VolumeManager::remountUid(uid_t uid, int32_t mountMode) {
Abhijeet Kaur01fa0e02019-12-13 10:26:32 +0000581 if (GetBoolProperty(android::vold::kPropFuse, false)) {
Zim3623a212019-07-19 16:46:53 +0100582 // TODO(135341433): Implement fuse specific logic.
583 return 0;
584 }
Sudheer Shanka817b9112018-12-13 17:40:28 -0800585 std::string mode;
586 switch (mountMode) {
587 case VoldNativeService::REMOUNT_MODE_NONE:
588 mode = "none";
589 break;
590 case VoldNativeService::REMOUNT_MODE_DEFAULT:
591 mode = "default";
592 break;
593 case VoldNativeService::REMOUNT_MODE_READ:
594 mode = "read";
595 break;
596 case VoldNativeService::REMOUNT_MODE_WRITE:
Sudheer Shankaa05ea742019-04-12 13:55:28 -0700597 case VoldNativeService::REMOUNT_MODE_LEGACY:
598 case VoldNativeService::REMOUNT_MODE_INSTALLER:
Sudheer Shanka817b9112018-12-13 17:40:28 -0800599 mode = "write";
600 break;
Sudheer Shanka36bdf7a2019-04-18 15:18:30 -0700601 case VoldNativeService::REMOUNT_MODE_FULL:
602 mode = "full";
603 break;
Zim981222f2019-09-09 10:24:44 +0100604 case VoldNativeService::REMOUNT_MODE_PASS_THROUGH:
605 mode = "pass_through";
606 break;
Sudheer Shanka817b9112018-12-13 17:40:28 -0800607 default:
608 PLOG(ERROR) << "Unknown mode " << std::to_string(mountMode);
609 return -1;
610 }
Jeff Sharkey66270a22015-06-24 11:49:24 -0700611 LOG(DEBUG) << "Remounting " << uid << " as mode " << mode;
612
613 DIR* dir;
614 struct dirent* de;
Jeff Sharkey3472e522017-10-06 18:02:53 -0600615 std::string rootName;
616 std::string pidName;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700617 int pidFd;
618 int nsFd;
619 struct stat sb;
620 pid_t child;
Narayan Kamath02efdf52019-11-27 10:53:51 +0000621 std::string userSource;
622 std::string storageSource;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700623
Jiyong Park8d21c922019-01-04 13:35:25 +0900624 static bool apexUpdatable = android::sysprop::ApexProperties::updatable().value_or(false);
625
Jeff Sharkey66270a22015-06-24 11:49:24 -0700626 if (!(dir = opendir("/proc"))) {
627 PLOG(ERROR) << "Failed to opendir";
628 return -1;
629 }
630
631 // Figure out root namespace to compare against below
Jeff Sharkey3472e522017-10-06 18:02:53 -0600632 if (!android::vold::Readlinkat(dirfd(dir), "1/ns/mnt", &rootName)) {
633 PLOG(ERROR) << "Failed to read root namespace";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700634 closedir(dir);
635 return -1;
636 }
637
638 // Poke through all running PIDs look for apps running as UID
639 while ((de = readdir(dir))) {
Jeff Vander Stoep58890832017-10-23 17:12:31 -0700640 pid_t pid;
641 if (de->d_type != DT_DIR) continue;
642 if (!android::base::ParseInt(de->d_name, &pid)) continue;
643
Jeff Sharkey66270a22015-06-24 11:49:24 -0700644 pidFd = -1;
645 nsFd = -1;
646
647 pidFd = openat(dirfd(dir), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
648 if (pidFd < 0) {
649 goto next;
650 }
651 if (fstat(pidFd, &sb) != 0) {
652 PLOG(WARNING) << "Failed to stat " << de->d_name;
653 goto next;
654 }
655 if (sb.st_uid != uid) {
656 goto next;
657 }
658
659 // Matches so far, but refuse to touch if in root namespace
660 LOG(DEBUG) << "Found matching PID " << de->d_name;
Jeff Sharkey3472e522017-10-06 18:02:53 -0600661 if (!android::vold::Readlinkat(pidFd, "ns/mnt", &pidName)) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700662 PLOG(WARNING) << "Failed to read namespace for " << de->d_name;
663 goto next;
664 }
Jeff Sharkey3472e522017-10-06 18:02:53 -0600665 if (rootName == pidName) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700666 LOG(WARNING) << "Skipping due to root namespace";
667 goto next;
668 }
669
Jiyong Park8d21c922019-01-04 13:35:25 +0900670 if (apexUpdatable) {
671 std::string exeName;
672 // When ro.apex.bionic_updatable is set to true,
673 // some early native processes have mount namespaces that are different
674 // from that of the init. Therefore, above check can't filter them out.
675 // Since the propagation type of / is 'shared', unmounting /storage
676 // for the early native processes affects other processes including
677 // init. Filter out such processes by skipping if a process is a
678 // non-Java process whose UID is < AID_APP_START. (The UID condition
679 // is required to not filter out child processes spawned by apps.)
680 if (!android::vold::Readlinkat(pidFd, "exe", &exeName)) {
681 PLOG(WARNING) << "Failed to read exe name for " << de->d_name;
682 goto next;
683 }
684 if (!StartsWith(exeName, "/system/bin/app_process") && sb.st_uid < AID_APP_START) {
685 LOG(WARNING) << "Skipping due to native system process";
686 goto next;
687 }
688 }
689
Jeff Sharkey66270a22015-06-24 11:49:24 -0700690 // We purposefully leave the namespace open across the fork
Nick Kraleviche7e89ac2019-03-29 16:03:51 -0700691 // NOLINTNEXTLINE(android-cloexec-open): Deliberately not O_CLOEXEC
692 nsFd = openat(pidFd, "ns/mnt", O_RDONLY);
Jeff Sharkey66270a22015-06-24 11:49:24 -0700693 if (nsFd < 0) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700694 PLOG(WARNING) << "Failed to open namespace for " << de->d_name;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700695 goto next;
696 }
697
Narayan Kamath02efdf52019-11-27 10:53:51 +0000698 if (mode == "default") {
699 storageSource = "/mnt/runtime/default";
700 } else if (mode == "read") {
701 storageSource = "/mnt/runtime/read";
702 } else if (mode == "write") {
703 storageSource = "/mnt/runtime/write";
704 } else if (mode == "full") {
705 storageSource = "/mnt/runtime/full";
706 } else {
707 // Sane default of no storage visible. No need to fork a child
708 // to remount uid.
709 goto next;
710 }
711
712 // Mount user-specific symlink helper into place
713 userSource = StringPrintf("/mnt/user/%d", multiuser_get_user_id(uid));
Jeff Sharkey66270a22015-06-24 11:49:24 -0700714 if (!(child = fork())) {
Narayan Kamath02efdf52019-11-27 10:53:51 +0000715 if (childProcess(storageSource.c_str(), userSource.c_str(), nsFd, de)) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700716 _exit(0);
Narayan Kamath02efdf52019-11-27 10:53:51 +0000717 } else {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700718 _exit(1);
Jeff Sharkey66270a22015-06-24 11:49:24 -0700719 }
Jeff Sharkey66270a22015-06-24 11:49:24 -0700720 }
721
722 if (child == -1) {
723 PLOG(ERROR) << "Failed to fork";
724 goto next;
725 } else {
726 TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0));
727 }
728
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700729 next:
Jeff Sharkey66270a22015-06-24 11:49:24 -0700730 close(nsFd);
731 close(pidFd);
732 }
733 closedir(dir);
734 return 0;
735}
736
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700737int VolumeManager::reset() {
738 // Tear down all existing disks/volumes and start from a blank slate so
739 // newly connected framework hears all events.
Zima438b242019-09-25 14:37:38 +0100740 for (const auto& vol : mInternalEmulatedVolumes) {
741 vol->destroy();
Gao Xiangd263da82017-08-14 11:32:13 +0800742 }
Zima438b242019-09-25 14:37:38 +0100743 mInternalEmulatedVolumes.clear();
Zima438b242019-09-25 14:37:38 +0100744
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700745 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700746 disk->destroy();
747 disk->create();
748 }
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600749 updateVirtualDisk();
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700750 mAddedUsers.clear();
Sudheer Shanka023b5392019-02-06 12:39:19 -0800751 mStartedUsers.clear();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700752 return 0;
753}
754
Keun-young Parka5bbb5e2017-03-13 18:02:50 -0700755// Can be called twice (sequentially) during shutdown. should be safe for that.
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700756int VolumeManager::shutdown() {
Zima438b242019-09-25 14:37:38 +0100757 if (mInternalEmulatedVolumes.empty()) {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700758 return 0; // already shutdown
Keun-young Parka5bbb5e2017-03-13 18:02:50 -0700759 }
Paul Crowley56292ef2017-10-20 08:07:53 -0700760 android::vold::sSleepOnUnmount = false;
Zima438b242019-09-25 14:37:38 +0100761 for (const auto& vol : mInternalEmulatedVolumes) {
762 vol->destroy();
763 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700764 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700765 disk->destroy();
766 }
Zima438b242019-09-25 14:37:38 +0100767
768 mInternalEmulatedVolumes.clear();
Risan8c9f3322018-10-29 08:52:56 +0900769 mStubVolumes.clear();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700770 mDisks.clear();
Jeff Sharkey401b2602017-12-14 22:15:20 -0700771 mPendingDisks.clear();
Paul Crowley56292ef2017-10-20 08:07:53 -0700772 android::vold::sSleepOnUnmount = true;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700773 return 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700774}
775
Jeff Sharkey9c484982015-03-31 10:35:33 -0700776int VolumeManager::unmountAll() {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700777 std::lock_guard<std::mutex> lock(mLock);
Jeff Sharkey67b8c492017-09-21 17:08:43 -0600778 ATRACE_NAME("VolumeManager::unmountAll()");
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700779
Jeff Sharkey9c484982015-03-31 10:35:33 -0700780 // First, try gracefully unmounting all known devices
Zima438b242019-09-25 14:37:38 +0100781 for (const auto& vol : mInternalEmulatedVolumes) {
782 vol->unmount();
Jeff Sharkey9c484982015-03-31 10:35:33 -0700783 }
Risan8c9f3322018-10-29 08:52:56 +0900784 for (const auto& stub : mStubVolumes) {
785 stub->unmount();
786 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700787 for (const auto& disk : mDisks) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700788 disk->unmountAll();
789 }
790
791 // Worst case we might have some stale mounts lurking around, so
792 // force unmount those just to be safe.
LongPing.WEI4f046062018-11-23 19:27:35 +0800793 FILE* fp = setmntent("/proc/mounts", "re");
Jeff Sharkey9c484982015-03-31 10:35:33 -0700794 if (fp == NULL) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600795 PLOG(ERROR) << "Failed to open /proc/mounts";
Jeff Sharkey9c484982015-03-31 10:35:33 -0700796 return -errno;
797 }
798
799 // Some volumes can be stacked on each other, so force unmount in
800 // reverse order to give us the best chance of success.
801 std::list<std::string> toUnmount;
802 mntent* mentry;
803 while ((mentry = getmntent(fp)) != NULL) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600804 auto test = std::string(mentry->mnt_dir);
Mark Salyzyn86e81e72018-09-20 10:09:27 -0700805 if ((StartsWith(test, "/mnt/") &&
806#ifdef __ANDROID_DEBUGGABLE__
807 !StartsWith(test, "/mnt/scratch") &&
808#endif
Martijn Coenenb0e977a2020-01-11 19:24:26 +0100809 !StartsWith(test, "/mnt/vendor") && !StartsWith(test, "/mnt/product") &&
810 !StartsWith(test, "/mnt/installer")) ||
Mark Salyzyn86e81e72018-09-20 10:09:27 -0700811 StartsWith(test, "/storage/")) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600812 toUnmount.push_front(test);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700813 }
814 }
815 endmntent(fp);
816
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700817 for (const auto& path : toUnmount) {
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600818 LOG(DEBUG) << "Tearing down stale mount " << path;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700819 android::vold::ForceUnmount(path);
820 }
821
822 return 0;
823}
824
Martijn Coenen13ff6682019-12-24 12:57:16 +0100825int VolumeManager::setupAppDir(const std::string& path, const std::string& appDirRoot,
826 int32_t appUid) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700827 // Only offer to create directories for paths managed by vold
Martijn Coenen13ff6682019-12-24 12:57:16 +0100828 if (!StartsWith(path, "/storage/")) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600829 LOG(ERROR) << "Failed to find mounted volume for " << path;
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700830 return -EINVAL;
831 }
Martijn Coenen13ff6682019-12-24 12:57:16 +0100832
Martijn Coenen0a7e9922020-01-24 16:17:32 +0100833 // Find the volume it belongs to
834 auto filter_fn = [&](const VolumeBase& vol) {
835 if (vol.getState() != VolumeBase::State::kMounted) {
836 // The volume must be mounted
837 return false;
838 }
839 if ((vol.getMountFlags() & VolumeBase::MountFlags::kVisible) == 0) {
840 // and visible
841 return false;
842 }
843 if (vol.getInternalPath().empty()) {
844 return false;
845 }
846 if (vol.getMountUserId() != USER_UNKNOWN &&
847 vol.getMountUserId() != multiuser_get_user_id(appUid)) {
848 // The app dir must be created on a volume with the same user-id
849 return false;
850 }
851 if (!path.empty() && StartsWith(path, vol.getPath())) {
852 return true;
853 }
854
855 return false;
856 };
857 auto volume = findVolumeWithFilter(filter_fn);
858 if (volume == nullptr) {
859 LOG(ERROR) << "Failed to find mounted volume for " << path;
860 return -EINVAL;
861 }
Zimc59d7742020-01-06 21:48:16 +0000862 // Convert paths to lower filesystem paths to avoid making FUSE requests for these reasons:
863 // 1. A FUSE request from vold puts vold at risk of hanging if the FUSE daemon is down
864 // 2. The FUSE daemon prevents requests on /mnt/user/0/emulated/<userid != 0> and a request
865 // on /storage/emulated/10 means /mnt/user/0/emulated/10
Martijn Coenen0a7e9922020-01-24 16:17:32 +0100866 const std::string lowerPath =
867 volume->getInternalPath() + path.substr(volume->getPath().length());
868 const std::string lowerAppDirRoot =
869 volume->getInternalPath() + appDirRoot.substr(volume->getPath().length());
Zimc59d7742020-01-06 21:48:16 +0000870
Martijn Coenen13ff6682019-12-24 12:57:16 +0100871 // First create the root which holds app dirs, if needed.
Martijn Coenen0a7e9922020-01-24 16:17:32 +0100872 int ret = PrepareDirsFromRoot(lowerAppDirRoot, volume->getInternalPath(), 0771, AID_MEDIA_RW,
873 AID_MEDIA_RW);
Martijn Coenen13ff6682019-12-24 12:57:16 +0100874 if (ret != 0) {
875 return ret;
876 }
877 // Then, create app-specific dirs with the correct UID/GID
Zimc59d7742020-01-06 21:48:16 +0000878 return PrepareDirsFromRoot(lowerPath, lowerAppDirRoot, 0770, appUid, AID_MEDIA_RW);
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700879}
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600880
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600881int VolumeManager::createObb(const std::string& sourcePath, const std::string& sourceKey,
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700882 int32_t ownerGid, std::string* outVolId) {
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600883 int id = mNextObbId++;
884
885 auto vol = std::shared_ptr<android::vold::VolumeBase>(
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700886 new android::vold::ObbVolume(id, sourcePath, sourceKey, ownerGid));
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600887 vol->create();
888
889 mObbVolumes.push_back(vol);
890 *outVolId = vol->getId();
891 return android::OK;
892}
893
894int VolumeManager::destroyObb(const std::string& volId) {
895 auto i = mObbVolumes.begin();
896 while (i != mObbVolumes.end()) {
897 if ((*i)->getId() == volId) {
898 (*i)->destroy();
899 i = mObbVolumes.erase(i);
900 } else {
901 ++i;
902 }
903 }
904 return android::OK;
905}
906
Risan8c9f3322018-10-29 08:52:56 +0900907int VolumeManager::createStubVolume(const std::string& sourcePath, const std::string& mountPath,
908 const std::string& fsType, const std::string& fsUuid,
909 const std::string& fsLabel, std::string* outVolId) {
910 int id = mNextStubVolumeId++;
911 auto vol = std::shared_ptr<android::vold::VolumeBase>(
912 new android::vold::StubVolume(id, sourcePath, mountPath, fsType, fsUuid, fsLabel));
913 vol->create();
914
915 mStubVolumes.push_back(vol);
916 *outVolId = vol->getId();
917 return android::OK;
918}
919
920int VolumeManager::destroyStubVolume(const std::string& volId) {
921 auto i = mStubVolumes.begin();
922 while (i != mStubVolumes.end()) {
923 if ((*i)->getId() == volId) {
924 (*i)->destroy();
925 i = mStubVolumes.erase(i);
926 } else {
927 ++i;
928 }
929 }
930 return android::OK;
931}
932
Risan8f6198d2018-10-26 20:56:45 -0600933int VolumeManager::mountAppFuse(uid_t uid, int mountId, unique_fd* device_fd) {
Risanac02a482018-10-31 21:59:47 -0600934 return android::vold::MountAppFuse(uid, mountId, device_fd);
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600935}
936
Risan8f6198d2018-10-26 20:56:45 -0600937int VolumeManager::unmountAppFuse(uid_t uid, int mountId) {
Risanac02a482018-10-31 21:59:47 -0600938 return android::vold::UnmountAppFuse(uid, mountId);
Risan8f6198d2018-10-26 20:56:45 -0600939}
940
941int VolumeManager::openAppFuseFile(uid_t uid, int mountId, int fileId, int flags) {
Risanac02a482018-10-31 21:59:47 -0600942 return android::vold::OpenAppFuseFile(uid, mountId, fileId, flags);
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600943}