blob: bcc65701e60c00b5d38845a040ad324ba47f88ea [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
Elliott Hughes7e128fb2015-12-04 15:50:53 -080037#include <android-base/logging.h>
Jeff Vander Stoep58890832017-10-23 17:12:31 -070038#include <android-base/parseint.h>
Jeff Sharkey3472e522017-10-06 18:02:53 -060039#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080040#include <android-base/stringprintf.h>
Jeff Vander Stoep58890832017-10-23 17:12:31 -070041#include <android-base/strings.h>
42
Jeff Sharkey71ebe152013-09-17 17:24:38 -070043#include <cutils/fs.h>
Jeff Sharkey67b8c492017-09-21 17:08:43 -060044#include <utils/Trace.h>
San Mehatf1b736b2009-10-10 17:22:08 -070045
Robert Craigb9e3ba52014-02-04 10:53:00 -050046#include <selinux/android.h>
47
San Mehatfd7f5872009-10-12 11:32:47 -070048#include <sysutils/NetlinkEvent.h>
49
Kenny Root344ca102012-04-03 17:23:01 -070050#include <private/android_filesystem_config.h>
51
Eric Biggersa701c452018-10-23 13:06:55 -070052#include <fscrypt/fscrypt.h>
Paul Crowleyc6433a22017-10-24 14:54:43 -070053
Risanac02a482018-10-31 21:59:47 -060054#include "AppFuseUtil.h"
Paul Crowleyc6433a22017-10-24 14:54:43 -070055#include "Devmapper.h"
Eric Biggersa701c452018-10-23 13:06:55 -070056#include "FsCrypt.h"
San Mehata19b2502010-01-06 10:33:53 -080057#include "Loop.h"
Paul Crowleyc6433a22017-10-24 14:54:43 -070058#include "NetlinkManager.h"
59#include "Process.h"
60#include "Utils.h"
Sudheer Shanka40ab6742018-09-18 13:07:45 -070061#include "VoldNativeService.h"
Paul Crowleyc6433a22017-10-24 14:54:43 -070062#include "VoldUtil.h"
63#include "VolumeManager.h"
64#include "cryptfs.h"
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070065#include "fs/Ext4.h"
66#include "fs/Vfat.h"
Paul Crowleyc6433a22017-10-24 14:54:43 -070067#include "model/EmulatedVolume.h"
68#include "model/ObbVolume.h"
Risan8c9f3322018-10-29 08:52:56 +090069#include "model/StubVolume.h"
San Mehat23969932010-01-09 07:08:06 -080070
Sudheer Shanka53947a32018-08-01 10:24:13 -070071using android::base::GetBoolProperty;
Mark Salyzyn86e81e72018-09-20 10:09:27 -070072using android::base::StartsWith;
Sudheer Shanka53947a32018-08-01 10:24:13 -070073using android::base::StringAppendF;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070074using android::base::StringPrintf;
Jeff Sharkey11c2d382017-09-11 10:32:01 -060075using android::base::unique_fd;
Sudheer Shanka03992e32018-12-12 12:43:38 -080076using android::vold::VoldNativeService;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070077
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060078static const char* kPathUserMount = "/mnt/user";
79static const char* kPathVirtualDisk = "/data/misc/vold/virtual_disk";
80
Sudheer Shanka53947a32018-08-01 10:24:13 -070081static const char* kIsolatedStorage = "persist.sys.isolated_storage";
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060082static const char* kPropVirtualDisk = "persist.sys.virtual_disk";
83
Sudheer Shanka53947a32018-08-01 10:24:13 -070084static const std::string kEmptyString("");
85
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060086/* 512MiB is large enough for testing purposes */
87static const unsigned int kSizeVirtualDisk = 536870912;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070088
Jeff Sharkey36801cc2015-03-13 16:09:20 -070089static const unsigned int kMajorBlockMmc = 179;
Yu Ning942d4e82016-01-08 17:36:47 +080090static const unsigned int kMajorBlockExperimentalMin = 240;
91static const unsigned int kMajorBlockExperimentalMax = 254;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070092
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070093VolumeManager* VolumeManager::sInstance = NULL;
San Mehatf1b736b2009-10-10 17:22:08 -070094
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070095VolumeManager* VolumeManager::Instance() {
96 if (!sInstance) sInstance = new VolumeManager();
San Mehatf1b736b2009-10-10 17:22:08 -070097 return sInstance;
98}
99
100VolumeManager::VolumeManager() {
San Mehatd9a4e352010-03-12 13:32:47 -0800101 mDebug = false;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600102 mNextObbId = 0;
Risan8c9f3322018-10-29 08:52:56 +0900103 mNextStubVolumeId = 0;
Jeff Sharkey401b2602017-12-14 22:15:20 -0700104 // For security reasons, assume that a secure keyguard is
105 // showing until we hear otherwise
106 mSecureKeyguardShowing = true;
San Mehatf1b736b2009-10-10 17:22:08 -0700107}
108
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700109VolumeManager::~VolumeManager() {}
San Mehatd9a4e352010-03-12 13:32:47 -0800110
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600111int VolumeManager::updateVirtualDisk() {
Jeff Sharkey67b8c492017-09-21 17:08:43 -0600112 ATRACE_NAME("VolumeManager::updateVirtualDisk");
Mark Salyzyn86e81e72018-09-20 10:09:27 -0700113 if (GetBoolProperty(kPropVirtualDisk, false)) {
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600114 if (access(kPathVirtualDisk, F_OK) != 0) {
115 Loop::createImageFile(kPathVirtualDisk, kSizeVirtualDisk / 512);
116 }
117
118 if (mVirtualDisk == nullptr) {
119 if (Loop::create(kPathVirtualDisk, mVirtualDiskPath) != 0) {
120 LOG(ERROR) << "Failed to create virtual disk";
121 return -1;
122 }
123
124 struct stat buf;
125 if (stat(mVirtualDiskPath.c_str(), &buf) < 0) {
126 PLOG(ERROR) << "Failed to stat " << mVirtualDiskPath;
127 return -1;
128 }
129
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700130 auto disk = new android::vold::Disk(
131 "virtual", buf.st_rdev, "virtual",
132 android::vold::Disk::Flags::kAdoptable | android::vold::Disk::Flags::kSd);
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600133 mVirtualDisk = std::shared_ptr<android::vold::Disk>(disk);
Jeff Sharkey401b2602017-12-14 22:15:20 -0700134 handleDiskAdded(mVirtualDisk);
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600135 }
136 } else {
137 if (mVirtualDisk != nullptr) {
138 dev_t device = mVirtualDisk->getDevice();
Jeff Sharkey401b2602017-12-14 22:15:20 -0700139 handleDiskRemoved(device);
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600140
141 Loop::destroyByDevice(mVirtualDiskPath.c_str());
142 mVirtualDisk = nullptr;
143 }
144
145 if (access(kPathVirtualDisk, F_OK) == 0) {
146 unlink(kPathVirtualDisk);
147 }
148 }
149 return 0;
150}
151
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700152int VolumeManager::setDebug(bool enable) {
San Mehatd9a4e352010-03-12 13:32:47 -0800153 mDebug = enable;
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700154 return 0;
San Mehatd9a4e352010-03-12 13:32:47 -0800155}
156
San Mehatf1b736b2009-10-10 17:22:08 -0700157int VolumeManager::start() {
Jeff Sharkey67b8c492017-09-21 17:08:43 -0600158 ATRACE_NAME("VolumeManager::start");
159
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700160 // Always start from a clean slate by unmounting everything in
161 // directories that we own, in case we crashed.
Jeff Sharkey9c484982015-03-31 10:35:33 -0700162 unmountAll();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700163
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600164 Devmapper::destroyAll();
165 Loop::destroyAll();
166
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700167 // Assume that we always have an emulated volume on internal
168 // storage; the framework will decide if it should be mounted.
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700169 CHECK(mInternalEmulated == nullptr);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700170 mInternalEmulated = std::shared_ptr<android::vold::VolumeBase>(
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700171 new android::vold::EmulatedVolume("/data/media"));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700172 mInternalEmulated->create();
173
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600174 // Consider creating a virtual disk
175 updateVirtualDisk();
176
San Mehatf1b736b2009-10-10 17:22:08 -0700177 return 0;
178}
179
180int VolumeManager::stop() {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700181 CHECK(mInternalEmulated != nullptr);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700182 mInternalEmulated->destroy();
183 mInternalEmulated = nullptr;
San Mehatf1b736b2009-10-10 17:22:08 -0700184 return 0;
185}
186
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700187void VolumeManager::handleBlockEvent(NetlinkEvent* evt) {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700188 std::lock_guard<std::mutex> lock(mLock);
189
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700190 if (mDebug) {
Sudheer Shanka4b6ca4e2018-09-21 10:54:54 -0700191 LOG(DEBUG) << "----------------";
192 LOG(DEBUG) << "handleBlockEvent with action " << (int)evt->getAction();
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700193 evt->dump();
194 }
San Mehatf1b736b2009-10-10 17:22:08 -0700195
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700196 std::string eventPath(evt->findParam("DEVPATH") ? evt->findParam("DEVPATH") : "");
197 std::string devType(evt->findParam("DEVTYPE") ? evt->findParam("DEVTYPE") : "");
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700198
199 if (devType != "disk") return;
200
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600201 int major = std::stoi(evt->findParam("MAJOR"));
202 int minor = std::stoi(evt->findParam("MINOR"));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700203 dev_t device = makedev(major, minor);
204
205 switch (evt->getAction()) {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700206 case NetlinkEvent::Action::kAdd: {
207 for (const auto& source : mDiskSources) {
208 if (source->matches(eventPath)) {
209 // For now, assume that MMC and virtio-blk (the latter is
210 // emulator-specific; see Disk.cpp for details) devices are SD,
211 // and that everything else is USB
212 int flags = source->getFlags();
213 if (major == kMajorBlockMmc || (android::vold::IsRunningInEmulator() &&
214 major >= (int)kMajorBlockExperimentalMin &&
215 major <= (int)kMajorBlockExperimentalMax)) {
216 flags |= android::vold::Disk::Flags::kSd;
217 } else {
218 flags |= android::vold::Disk::Flags::kUsb;
219 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700220
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700221 auto disk =
222 new android::vold::Disk(eventPath, device, source->getNickname(), flags);
223 handleDiskAdded(std::shared_ptr<android::vold::Disk>(disk));
224 break;
225 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700226 }
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700227 break;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700228 }
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700229 case NetlinkEvent::Action::kChange: {
230 LOG(DEBUG) << "Disk at " << major << ":" << minor << " changed";
231 handleDiskChanged(device);
232 break;
233 }
234 case NetlinkEvent::Action::kRemove: {
235 handleDiskRemoved(device);
236 break;
237 }
238 default: {
239 LOG(WARNING) << "Unexpected block event action " << (int)evt->getAction();
240 break;
241 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700242 }
243}
244
Jeff Sharkey401b2602017-12-14 22:15:20 -0700245void VolumeManager::handleDiskAdded(const std::shared_ptr<android::vold::Disk>& disk) {
246 // For security reasons, if secure keyguard is showing, wait
247 // until the user unlocks the device to actually touch it
248 if (mSecureKeyguardShowing) {
249 LOG(INFO) << "Found disk at " << disk->getEventPath()
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700250 << " but delaying scan due to secure keyguard";
Jeff Sharkey401b2602017-12-14 22:15:20 -0700251 mPendingDisks.push_back(disk);
252 } else {
253 disk->create();
254 mDisks.push_back(disk);
255 }
256}
257
258void VolumeManager::handleDiskChanged(dev_t device) {
259 for (const auto& disk : mDisks) {
260 if (disk->getDevice() == device) {
261 disk->readMetadata();
262 disk->readPartitions();
263 }
264 }
265
266 // For security reasons, we ignore all pending disks, since
267 // we'll scan them once the device is unlocked
268}
269
270void VolumeManager::handleDiskRemoved(dev_t device) {
271 auto i = mDisks.begin();
272 while (i != mDisks.end()) {
273 if ((*i)->getDevice() == device) {
274 (*i)->destroy();
275 i = mDisks.erase(i);
276 } else {
277 ++i;
278 }
279 }
280 auto j = mPendingDisks.begin();
281 while (j != mPendingDisks.end()) {
282 if ((*j)->getDevice() == device) {
283 j = mPendingDisks.erase(j);
284 } else {
285 ++j;
286 }
287 }
288}
289
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700290void VolumeManager::addDiskSource(const std::shared_ptr<DiskSource>& diskSource) {
Wei Wang6b455c22017-01-20 11:52:33 -0800291 std::lock_guard<std::mutex> lock(mLock);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700292 mDiskSources.push_back(diskSource);
293}
294
295std::shared_ptr<android::vold::Disk> VolumeManager::findDisk(const std::string& id) {
296 for (auto disk : mDisks) {
297 if (disk->getId() == id) {
298 return disk;
San Mehatf1b736b2009-10-10 17:22:08 -0700299 }
300 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700301 return nullptr;
302}
San Mehatf1b736b2009-10-10 17:22:08 -0700303
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700304std::shared_ptr<android::vold::VolumeBase> VolumeManager::findVolume(const std::string& id) {
Gao Xiangd263da82017-08-14 11:32:13 +0800305 // Vold could receive "mount" after "shutdown" command in the extreme case.
306 // If this happens, mInternalEmulated will equal nullptr and
307 // we need to deal with it in order to avoid null pointer crash.
308 if (mInternalEmulated != nullptr && mInternalEmulated->getId() == id) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700309 return mInternalEmulated;
San Mehatf1b736b2009-10-10 17:22:08 -0700310 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700311 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700312 auto vol = disk->findVolume(id);
313 if (vol != nullptr) {
314 return vol;
315 }
316 }
Risan8c9f3322018-10-29 08:52:56 +0900317 for (const auto& vol : mStubVolumes) {
318 if (vol->getId() == id) {
319 return vol;
320 }
321 }
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600322 for (const auto& vol : mObbVolumes) {
323 if (vol->getId() == id) {
324 return vol;
325 }
326 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700327 return nullptr;
328}
329
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700330void VolumeManager::listVolumes(android::vold::VolumeBase::Type type, std::list<std::string>& list) {
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700331 list.clear();
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700332 for (const auto& disk : mDisks) {
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700333 disk->listVolumes(type, list);
334 }
335}
336
Jeff Sharkey3ce18252017-10-24 11:08:45 -0600337int VolumeManager::forgetPartition(const std::string& partGuid, const std::string& fsUuid) {
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700338 std::string normalizedGuid;
339 if (android::vold::NormalizeHex(partGuid, normalizedGuid)) {
340 LOG(WARNING) << "Invalid GUID " << partGuid;
341 return -1;
342 }
343
Paul Crowleyc6433a22017-10-24 14:54:43 -0700344 bool success = true;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700345 std::string keyPath = android::vold::BuildKeyPath(normalizedGuid);
346 if (unlink(keyPath.c_str()) != 0) {
347 LOG(ERROR) << "Failed to unlink " << keyPath;
Paul Crowleyc6433a22017-10-24 14:54:43 -0700348 success = false;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700349 }
Eric Biggersa701c452018-10-23 13:06:55 -0700350 if (fscrypt_is_native()) {
351 if (!fscrypt_destroy_volume_keys(fsUuid)) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700352 success = false;
353 }
354 }
355 return success ? 0 : -1;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700356}
357
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700358int VolumeManager::linkPrimary(userid_t userId) {
359 std::string source(mPrimary->getPath());
360 if (mPrimary->isEmulated()) {
361 source = StringPrintf("%s/%d", source.c_str(), userId);
362 fs_prepare_dir(source.c_str(), 0755, AID_ROOT, AID_ROOT);
363 }
364
365 std::string target(StringPrintf("/mnt/user/%d/primary", userId));
366 if (TEMP_FAILURE_RETRY(unlink(target.c_str()))) {
367 if (errno != ENOENT) {
368 PLOG(WARNING) << "Failed to unlink " << target;
369 }
370 }
371 LOG(DEBUG) << "Linking " << source << " to " << target;
372 if (TEMP_FAILURE_RETRY(symlink(source.c_str(), target.c_str()))) {
373 PLOG(WARNING) << "Failed to link";
Sudheer Shanka3a7ee5c2018-08-07 17:10:11 -0700374 return -errno;
375 }
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700376 return 0;
377}
378
379int VolumeManager::mountPkgSpecificDir(const std::string& mntSourceRoot,
380 const std::string& mntTargetRoot,
381 const std::string& packageName, const char* dirName) {
382 std::string mntSourceDir =
383 StringPrintf("%s/Android/%s/%s", mntSourceRoot.c_str(), dirName, packageName.c_str());
384 std::string mntTargetDir =
385 StringPrintf("%s/Android/%s/%s", mntTargetRoot.c_str(), dirName, packageName.c_str());
386 if (umount2(mntTargetDir.c_str(), MNT_DETACH) == -1 && errno != EINVAL && errno != ENOENT) {
387 PLOG(ERROR) << "Failed to unmount " << mntTargetDir;
388 return -1;
389 }
390 if (TEMP_FAILURE_RETRY(mount(mntSourceDir.c_str(), mntTargetDir.c_str(), nullptr,
391 MS_BIND | MS_REC, nullptr)) == -1) {
392 PLOG(ERROR) << "Failed to mount " << mntSourceDir << " to " << mntTargetDir;
393 return -1;
Sudheer Shanka3a7ee5c2018-08-07 17:10:11 -0700394 }
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700395 if (TEMP_FAILURE_RETRY(
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700396 mount(nullptr, mntTargetDir.c_str(), nullptr, MS_REC | MS_SLAVE, nullptr)) == -1) {
397 PLOG(ERROR) << "Failed to set MS_SLAVE at " << mntTargetDir;
398 return -1;
Sudheer Shanka3a7ee5c2018-08-07 17:10:11 -0700399 }
400 return 0;
401}
402
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700403int VolumeManager::mountPkgSpecificDirsForRunningProcs(
404 userid_t userId, const std::vector<std::string>& packageNames,
Sudheer Shanka817b9112018-12-13 17:40:28 -0800405 const std::vector<std::string>& visibleVolLabels, int remountMode) {
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700406 // TODO: New processes could be started while traversing over the existing
407 // processes which would end up not having the necessary bind mounts. This
408 // issue needs to be fixed, may be by doing multiple passes here?
409 std::unique_ptr<DIR, decltype(&closedir)> dirp(opendir("/proc"), closedir);
410 if (!dirp) {
411 PLOG(ERROR) << "Failed to opendir /proc";
412 return -1;
Sudheer Shankac7562092018-08-24 10:20:56 -0700413 }
Sudheer Shanka53947a32018-08-01 10:24:13 -0700414
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700415 std::string rootName;
416 // Figure out root namespace to compare against below
417 if (!android::vold::Readlinkat(dirfd(dirp.get()), "1/ns/mnt", &rootName)) {
418 PLOG(ERROR) << "Failed to read root namespace";
419 return -1;
Sudheer Shankaf768c272018-08-04 10:10:27 -0700420 }
Sudheer Shanka53947a32018-08-01 10:24:13 -0700421
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700422 struct stat fullWriteSb;
423 if (TEMP_FAILURE_RETRY(stat("/mnt/runtime/write", &fullWriteSb)) == -1) {
424 PLOG(ERROR) << "Failed to stat /mnt/runtime/write";
425 return -1;
Sudheer Shanka53947a32018-08-01 10:24:13 -0700426 }
427
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700428 std::unordered_set<appid_t> validAppIds;
429 for (auto& package : packageNames) {
430 validAppIds.insert(mAppIds[package]);
Sudheer Shankaa695f252018-08-03 18:07:52 -0700431 }
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700432 std::vector<std::string>& userPackages = mUserPackages[userId];
Sudheer Shanka53947a32018-08-01 10:24:13 -0700433
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700434 struct dirent* de;
435 // Poke through all running PIDs look for apps running in userId
436 while ((de = readdir(dirp.get()))) {
437 pid_t pid;
438 if (de->d_type != DT_DIR) continue;
439 if (!android::base::ParseInt(de->d_name, &pid)) continue;
440
441 const unique_fd pidFd(
442 openat(dirfd(dirp.get()), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC));
443 if (pidFd.get() < 0) {
444 PLOG(WARNING) << "Failed to open /proc/" << pid;
Sudheer Shanka53947a32018-08-01 10:24:13 -0700445 continue;
446 }
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700447 struct stat sb;
448 if (fstat(pidFd.get(), &sb) != 0) {
449 PLOG(WARNING) << "Failed to stat " << de->d_name;
450 continue;
451 }
452 if (multiuser_get_user_id(sb.st_uid) != userId) {
453 continue;
Sudheer Shanka53947a32018-08-01 10:24:13 -0700454 }
Sudheer Shanka53947a32018-08-01 10:24:13 -0700455
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700456 // Matches so far, but refuse to touch if in root namespace
457 LOG(VERBOSE) << "Found matching PID " << de->d_name;
458 std::string pidName;
459 if (!android::vold::Readlinkat(pidFd.get(), "ns/mnt", &pidName)) {
460 PLOG(WARNING) << "Failed to read namespace for " << de->d_name;
461 continue;
Sudheer Shanka53947a32018-08-01 10:24:13 -0700462 }
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700463 if (rootName == pidName) {
464 LOG(WARNING) << "Skipping due to root namespace";
465 continue;
Sudheer Shanka53947a32018-08-01 10:24:13 -0700466 }
467
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700468 // Only update the mount points of processes running with one of validAppIds.
469 // This should skip any isolated uids.
470 appid_t appId = multiuser_get_app_id(sb.st_uid);
471 if (validAppIds.find(appId) == validAppIds.end()) {
472 continue;
Sudheer Shanka3a7ee5c2018-08-07 17:10:11 -0700473 }
474
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700475 std::vector<std::string> packagesForUid;
476 for (auto& package : userPackages) {
477 if (mAppIds[package] == appId) {
478 packagesForUid.push_back(package);
479 }
480 }
481 if (packagesForUid.empty()) {
482 continue;
483 }
484 const std::string& sandboxId = mSandboxIds[appId];
485
486 // We purposefully leave the namespace open across the fork
487 unique_fd nsFd(openat(pidFd.get(), "ns/mnt", O_RDONLY)); // not O_CLOEXEC
488 if (nsFd.get() < 0) {
489 PLOG(WARNING) << "Failed to open namespace for " << de->d_name;
490 continue;
Sudheer Shanka3a7ee5c2018-08-07 17:10:11 -0700491 }
492
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700493 pid_t child;
494 if (!(child = fork())) {
495 if (setns(nsFd.get(), CLONE_NEWNS) != 0) {
496 PLOG(ERROR) << "Failed to setns for " << de->d_name;
497 _exit(1);
498 }
499
Sudheer Shanka817b9112018-12-13 17:40:28 -0800500 int mountMode;
501 if (remountMode == -1) {
502 mountMode = getMountModeForRunningProc(packagesForUid, userId, fullWriteSb);
503 if (mountMode == -1) {
504 _exit(1);
505 }
506 } else {
507 mountMode = remountMode;
508 std::string obbMountFile = StringPrintf("/mnt/user/%d/package/%s/obb_mount", userId,
509 packagesForUid[0].c_str());
510 if (mountMode == VoldNativeService::REMOUNT_MODE_INSTALLER) {
511 if (access(obbMountFile.c_str(), F_OK) != 0) {
512 const unique_fd fd(
513 TEMP_FAILURE_RETRY(open(obbMountFile.c_str(), O_RDWR | O_CREAT, 0660)));
514 }
515 } else {
516 if (access(obbMountFile.c_str(), F_OK) == 0) {
517 remove(obbMountFile.c_str());
518 }
519 }
520 }
521 if (mountMode == VoldNativeService::REMOUNT_MODE_FULL ||
522 mountMode == VoldNativeService::REMOUNT_MODE_NONE) {
523 // These mount modes are not going to change dynamically, so don't bother
524 // unmounting/remounting dirs.
525 _exit(0);
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700526 }
527
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700528 for (auto& volumeLabel : visibleVolLabels) {
529 std::string mntSource = StringPrintf("/mnt/runtime/write/%s", volumeLabel.c_str());
530 std::string mntTarget = StringPrintf("/storage/%s", volumeLabel.c_str());
531 if (volumeLabel == "emulated") {
532 StringAppendF(&mntSource, "/%d", userId);
533 StringAppendF(&mntTarget, "/%d", userId);
534 }
Sudheer Shanka817b9112018-12-13 17:40:28 -0800535 std::string obbSourceDir = StringPrintf("%s/Android/obb", mntSource.c_str());
536 std::string obbTargetDir = StringPrintf("%s/Android/obb", mntTarget.c_str());
537 if (umount2(obbTargetDir.c_str(), MNT_DETACH) == -1 && errno != EINVAL &&
538 errno != ENOENT) {
539 PLOG(ERROR) << "Failed to unmount " << obbTargetDir;
540 continue;
541 }
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700542 for (auto& package : packagesForUid) {
543 mountPkgSpecificDir(mntSource, mntTarget, package, "data");
544 mountPkgSpecificDir(mntSource, mntTarget, package, "media");
Sudheer Shanka03992e32018-12-12 12:43:38 -0800545 if (mountMode != VoldNativeService::REMOUNT_MODE_INSTALLER) {
546 mountPkgSpecificDir(mntSource, mntTarget, package, "obb");
547 }
548 }
549 if (mountMode == VoldNativeService::REMOUNT_MODE_INSTALLER) {
Sudheer Shanka817b9112018-12-13 17:40:28 -0800550 if (TEMP_FAILURE_RETRY(mount(obbSourceDir.c_str(), obbTargetDir.c_str(),
551 nullptr, MS_BIND | MS_REC, nullptr)) == -1) {
552 PLOG(ERROR) << "Failed to mount " << obbSourceDir << " to " << obbTargetDir;
Sudheer Shanka03992e32018-12-12 12:43:38 -0800553 continue;
554 }
Sudheer Shanka817b9112018-12-13 17:40:28 -0800555 if (TEMP_FAILURE_RETRY(mount(nullptr, obbTargetDir.c_str(), nullptr,
Sudheer Shanka03992e32018-12-12 12:43:38 -0800556 MS_REC | MS_SLAVE, nullptr)) == -1) {
Sudheer Shanka817b9112018-12-13 17:40:28 -0800557 PLOG(ERROR) << "Failed to set MS_SLAVE at " << obbTargetDir.c_str();
Sudheer Shanka03992e32018-12-12 12:43:38 -0800558 continue;
559 }
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700560 }
561 }
562 _exit(0);
Sudheer Shanka53947a32018-08-01 10:24:13 -0700563 }
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700564
565 if (child == -1) {
566 PLOG(ERROR) << "Failed to fork";
567 } else {
568 TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0));
Sudheer Shanka53947a32018-08-01 10:24:13 -0700569 }
570 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700571 return 0;
572}
573
Sudheer Shanka03992e32018-12-12 12:43:38 -0800574int VolumeManager::getMountModeForRunningProc(const std::vector<std::string>& packagesForUid,
575 userid_t userId, struct stat& mntWriteStat) {
576 struct stat storageSb;
577 if (TEMP_FAILURE_RETRY(stat("/storage", &storageSb)) == -1) {
578 PLOG(ERROR) << "Failed to stat /storage";
579 return -1;
580 }
581
582 // Some packages have access to full external storage, identify processes belonging
583 // to those packages by comparing inode no.s of /mnt/runtime/write and /storage
584 if (storageSb.st_dev == mntWriteStat.st_dev && storageSb.st_ino == mntWriteStat.st_ino) {
585 return VoldNativeService::REMOUNT_MODE_FULL;
586 }
587
588 std::string obbMountFile =
589 StringPrintf("/mnt/user/%d/package/%s/obb_mount", userId, packagesForUid[0].c_str());
590 if (access(obbMountFile.c_str(), F_OK) == 0) {
591 return VoldNativeService::REMOUNT_MODE_INSTALLER;
592 }
593
594 // Some packages don't have access to external storage and processes belonging to
595 // those packages don't have anything mounted at /storage. So, identify those
596 // processes by comparing inode no.s of /mnt/user/%d/package/%s
597 // and /storage
598 for (auto& package : packagesForUid) {
599 std::string sandbox = StringPrintf("/mnt/user/%d/package/%s", userId, package.c_str());
600 struct stat sandboxStat;
601 if (TEMP_FAILURE_RETRY(stat(sandbox.c_str(), &sandboxStat)) == -1) {
602 PLOG(ERROR) << "Failed to stat " << sandbox;
603 return -1;
604 }
605 if (storageSb.st_dev == sandboxStat.st_dev && storageSb.st_ino == sandboxStat.st_ino) {
606 return VoldNativeService::REMOUNT_MODE_WRITE;
607 }
608 }
609 return VoldNativeService::REMOUNT_MODE_NONE;
610}
611
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700612int VolumeManager::prepareSandboxes(userid_t userId, const std::vector<std::string>& packageNames,
613 const std::vector<std::string>& visibleVolLabels) {
614 if (visibleVolLabels.empty()) {
615 return 0;
616 }
617 for (auto& volumeLabel : visibleVolLabels) {
618 std::string volumeRoot(StringPrintf("/mnt/runtime/write/%s", volumeLabel.c_str()));
619 bool isVolPrimaryEmulated = (volumeLabel == mPrimary->getLabel() && mPrimary->isEmulated());
620 if (isVolPrimaryEmulated) {
621 StringAppendF(&volumeRoot, "/%d", userId);
622 if (fs_prepare_dir(volumeRoot.c_str(), 0755, AID_ROOT, AID_ROOT) != 0) {
623 PLOG(ERROR) << "fs_prepare_dir failed on " << volumeRoot;
624 return -errno;
625 }
626 }
627
628 std::string sandboxRoot =
629 prepareSubDirs(volumeRoot, "Android/sandbox/", 0700, AID_ROOT, AID_ROOT);
630 if (sandboxRoot.empty()) {
631 return -errno;
632 }
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700633
634 if (!createPkgSpecificDirRoots(volumeRoot)) {
635 return -errno;
636 }
637
638 std::string mntTargetRoot = StringPrintf("/mnt/user/%d", userId);
639 if (fs_prepare_dir(mntTargetRoot.c_str(), 0751, AID_ROOT, AID_ROOT) != 0) {
640 PLOG(ERROR) << "fs_prepare_dir failed on " << mntTargetRoot;
641 return -errno;
642 }
643 mntTargetRoot.append("/package");
644 if (fs_prepare_dir(mntTargetRoot.c_str(), 0700, AID_ROOT, AID_ROOT) != 0) {
645 PLOG(ERROR) << "fs_prepare_dir failed on " << mntTargetRoot;
646 return -errno;
647 }
648
649 for (auto& packageName : packageNames) {
650 const auto& it = mAppIds.find(packageName);
651 if (it == mAppIds.end()) {
652 PLOG(ERROR) << "appId is not available for " << packageName;
653 continue;
654 }
655 appid_t appId = it->second;
656 std::string sandboxId = mSandboxIds[appId];
657 uid_t uid = multiuser_get_uid(userId, appId);
658
659 // [1] Create /mnt/runtime/write/emulated/0/Android/sandbox/<sandboxId>
660 // [2] Create /mnt/user/0/package/<packageName>/emulated/0
661 // Mount [1] at [2]
662 std::string pkgSandboxSourceDir = prepareSandboxSource(uid, sandboxId, sandboxRoot);
663 if (pkgSandboxSourceDir.empty()) {
664 return -errno;
665 }
666 std::string pkgSandboxTargetDir = prepareSandboxTarget(
667 packageName, uid, volumeLabel, mntTargetRoot, isVolPrimaryEmulated);
668 if (pkgSandboxTargetDir.empty()) {
669 return -errno;
670 }
671 if (umount2(pkgSandboxTargetDir.c_str(), MNT_DETACH) == -1 && errno != EINVAL &&
672 errno != ENOENT) {
673 PLOG(ERROR) << "Failed to unmount " << pkgSandboxTargetDir;
674 return -errno;
675 }
676 if (TEMP_FAILURE_RETRY(mount(pkgSandboxSourceDir.c_str(), pkgSandboxTargetDir.c_str(),
677 nullptr, MS_BIND | MS_REC, nullptr)) == -1) {
678 PLOG(ERROR) << "Failed to mount " << pkgSandboxSourceDir << " at "
679 << pkgSandboxTargetDir;
680 return -errno;
681 }
682 if (TEMP_FAILURE_RETRY(mount(nullptr, pkgSandboxTargetDir.c_str(), nullptr,
683 MS_SLAVE | MS_REC, nullptr)) == -1) {
684 PLOG(ERROR) << "Failed to mount " << pkgSandboxSourceDir << " at "
685 << pkgSandboxTargetDir;
686 return -errno;
687 }
688
689 // Create Android/{data,media,obb}/<packageName> segments at
690 // [1] /mnt/runtime/write/emulated/0/ and
691 // [2] /mnt/runtime/write/emulated/0/Android/sandbox/<sandboxId>/emulated/0/
692 if (!createPkgSpecificDirs(packageName, uid, volumeRoot, pkgSandboxSourceDir)) {
693 return -errno;
694 }
695
696 if (volumeLabel == mPrimary->getLabel()) {
697 // Create [1] /mnt/user/0/package/<packageName>/self/
698 // Already created [2] /mnt/user/0/package/<packageName>/emulated/0
699 // Mount [2] at [1]
700 std::string pkgPrimaryTargetDir =
701 StringPrintf("%s/%s/self", mntTargetRoot.c_str(), packageName.c_str());
702 if (fs_prepare_dir(pkgPrimaryTargetDir.c_str(), 0755, uid, uid) != 0) {
703 PLOG(ERROR) << "Failed to fs_prepare_dir on " << pkgPrimaryTargetDir;
704 return -errno;
705 }
706 StringAppendF(&pkgPrimaryTargetDir, "/primary");
707 std::string primarySource(mPrimary->getPath());
708 if (isVolPrimaryEmulated) {
709 StringAppendF(&primarySource, "/%d", userId);
710 }
711 if (TEMP_FAILURE_RETRY(unlink(pkgPrimaryTargetDir.c_str()))) {
712 if (errno != ENOENT) {
713 PLOG(ERROR) << "Failed to unlink " << pkgPrimaryTargetDir;
714 }
715 }
716 if (TEMP_FAILURE_RETRY(symlink(primarySource.c_str(), pkgPrimaryTargetDir.c_str()))) {
717 PLOG(ERROR) << "Failed to link " << primarySource << " at "
718 << pkgPrimaryTargetDir;
719 return -errno;
720 }
721 }
722 }
723 }
Sudheer Shanka817b9112018-12-13 17:40:28 -0800724 mountPkgSpecificDirsForRunningProcs(userId, packageNames, visibleVolLabels, -1);
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700725 return 0;
726}
727
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700728std::string VolumeManager::prepareSubDirs(const std::string& pathPrefix, const std::string& subDirs,
729 mode_t mode, uid_t uid, gid_t gid) {
Sudheer Shanka53947a32018-08-01 10:24:13 -0700730 std::string path(pathPrefix);
731 std::vector<std::string> subDirList = android::base::Split(subDirs, "/");
732 for (size_t i = 0; i < subDirList.size(); ++i) {
733 std::string subDir = subDirList[i];
734 if (subDir.empty()) {
735 continue;
736 }
737 StringAppendF(&path, "/%s", subDir.c_str());
738 if (fs_prepare_dir(path.c_str(), mode, uid, gid) != 0) {
739 PLOG(ERROR) << "fs_prepare_dir failed on " << path;
740 return kEmptyString;
741 }
742 }
743 return path;
744}
745
746std::string VolumeManager::prepareSandboxSource(uid_t uid, const std::string& sandboxId,
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700747 const std::string& sandboxRootDir) {
Sudheer Shankaf768c272018-08-04 10:10:27 -0700748 std::string sandboxSourceDir(sandboxRootDir);
Sudheer Shanka51a38da2018-10-18 08:51:31 -0700749 StringAppendF(&sandboxSourceDir, "/%s", sandboxId.c_str());
Sudheer Shanka53947a32018-08-01 10:24:13 -0700750 if (fs_prepare_dir(sandboxSourceDir.c_str(), 0755, uid, uid) != 0) {
751 PLOG(ERROR) << "fs_prepare_dir failed on " << sandboxSourceDir;
752 return kEmptyString;
753 }
754 return sandboxSourceDir;
755}
756
757std::string VolumeManager::prepareSandboxTarget(const std::string& packageName, uid_t uid,
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700758 const std::string& volumeLabel,
759 const std::string& mntTargetRootDir,
760 bool isUserDependent) {
Sudheer Shanka53947a32018-08-01 10:24:13 -0700761 std::string segment;
762 if (isUserDependent) {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700763 segment = StringPrintf("%s/%s/%d/", packageName.c_str(), volumeLabel.c_str(),
764 multiuser_get_user_id(uid));
Sudheer Shanka53947a32018-08-01 10:24:13 -0700765 } else {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700766 segment = StringPrintf("%s/%s/", packageName.c_str(), volumeLabel.c_str());
Sudheer Shanka53947a32018-08-01 10:24:13 -0700767 }
768 return prepareSubDirs(mntTargetRootDir, segment.c_str(), 0755, uid, uid);
769}
770
771std::string VolumeManager::preparePkgDataSource(const std::string& packageName, uid_t uid,
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700772 const std::string& dataRootDir) {
Sudheer Shanka53947a32018-08-01 10:24:13 -0700773 std::string dataSourceDir = StringPrintf("%s/%s", dataRootDir.c_str(), packageName.c_str());
774 if (fs_prepare_dir(dataSourceDir.c_str(), 0755, uid, uid) != 0) {
775 PLOG(ERROR) << "fs_prepare_dir failed on " << dataSourceDir;
776 return kEmptyString;
777 }
778 return dataSourceDir;
779}
780
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700781bool VolumeManager::createPkgSpecificDirRoots(const std::string& volumeRoot) {
782 std::string volumeAndroidRoot = StringPrintf("%s/Android", volumeRoot.c_str());
783 if (fs_prepare_dir(volumeAndroidRoot.c_str(), 0700, AID_ROOT, AID_ROOT) != 0) {
784 PLOG(ERROR) << "fs_prepare_dir failed on " << volumeAndroidRoot;
785 return false;
786 }
787 std::array<std::string, 3> dirs = {"data", "media", "obb"};
788 for (auto& dir : dirs) {
789 std::string path = StringPrintf("%s/%s", volumeAndroidRoot.c_str(), dir.c_str());
790 if (fs_prepare_dir(path.c_str(), 0700, AID_ROOT, AID_ROOT) != 0) {
791 PLOG(ERROR) << "fs_prepare_dir failed on " << path;
792 return false;
793 }
794 }
795 return true;
796}
797
798bool VolumeManager::createPkgSpecificDirs(const std::string& packageName, uid_t uid,
799 const std::string& volumeRoot,
800 const std::string& sandboxDirRoot) {
801 std::array<std::string, 3> dirs = {"data", "media", "obb"};
802 for (auto& dir : dirs) {
803 std::string sourceDir = StringPrintf("%s/Android/%s", volumeRoot.c_str(), dir.c_str());
804 if (prepareSubDirs(sourceDir, packageName, 0755, uid, uid).empty()) {
805 return false;
806 }
807 std::string sandboxSegment =
808 StringPrintf("Android/%s/%s/", dir.c_str(), packageName.c_str());
809 if (prepareSubDirs(sandboxDirRoot, sandboxSegment, 0755, uid, uid).empty()) {
810 return false;
811 }
812 }
813 return true;
Sudheer Shanka53947a32018-08-01 10:24:13 -0700814}
815
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700816int VolumeManager::onUserAdded(userid_t userId, int userSerialNumber) {
817 mAddedUsers[userId] = userSerialNumber;
818 return 0;
819}
820
821int VolumeManager::onUserRemoved(userid_t userId) {
822 mAddedUsers.erase(userId);
823 return 0;
824}
825
Sudheer Shanka69bc40f2018-10-25 11:06:55 -0700826int VolumeManager::onUserStarted(userid_t userId, const std::vector<std::string>& packageNames,
827 const std::vector<int>& appIds,
828 const std::vector<std::string>& sandboxIds) {
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700829 LOG(VERBOSE) << "onUserStarted: " << userId;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700830 // Note that sometimes the system will spin up processes from Zygote
831 // before actually starting the user, so we're okay if Zygote
832 // already created this directory.
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600833 std::string path(StringPrintf("%s/%d", kPathUserMount, userId));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700834 fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT);
835
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700836 mStartedUsers.insert(userId);
Sudheer Shanka62bbb2b2018-08-01 01:09:10 -0700837 mUserPackages[userId] = packageNames;
Sudheer Shanka69bc40f2018-10-25 11:06:55 -0700838 for (size_t i = 0; i < packageNames.size(); ++i) {
839 mAppIds[packageNames[i]] = appIds[i];
840 mSandboxIds[appIds[i]] = sandboxIds[i];
841 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700842 if (mPrimary) {
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700843 linkPrimary(userId);
844 }
845 if (GetBoolProperty(kIsolatedStorage, false)) {
846 std::vector<std::string> visibleVolLabels;
847 for (auto& volId : mVisibleVolumeIds) {
848 auto vol = findVolume(volId);
849 userid_t mountUserId = vol->getMountUserId();
850 if (mountUserId == userId || vol->isEmulated()) {
851 visibleVolLabels.push_back(vol->getLabel());
852 }
853 }
854 if (prepareSandboxes(userId, packageNames, visibleVolLabels) != 0) {
855 return -errno;
856 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700857 }
858 return 0;
859}
860
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700861int VolumeManager::onUserStopped(userid_t userId) {
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700862 LOG(VERBOSE) << "onUserStopped: " << userId;
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700863 mStartedUsers.erase(userId);
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700864
Sudheer Shanka9acc6d42018-10-06 19:03:02 -0700865 if (GetBoolProperty(kIsolatedStorage, false)) {
866 mUserPackages.erase(userId);
867 std::string mntTargetDir = StringPrintf("/mnt/user/%d", userId);
868 if (android::vold::UnmountTree(mntTargetDir) != 0) {
869 PLOG(ERROR) << "unmountTree on " << mntTargetDir << " failed";
870 return -errno;
871 }
872 if (android::vold::DeleteDirContentsAndDir(mntTargetDir) < 0) {
873 PLOG(ERROR) << "DeleteDirContentsAndDir failed on " << mntTargetDir;
874 return -errno;
875 }
876 LOG(VERBOSE) << "Success: DeleteDirContentsAndDir on " << mntTargetDir;
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700877 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700878 return 0;
879}
880
Sudheer Shankad484aa92018-07-31 10:07:34 -0700881int VolumeManager::addAppIds(const std::vector<std::string>& packageNames,
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700882 const std::vector<int32_t>& appIds) {
Sudheer Shanka62bbb2b2018-08-01 01:09:10 -0700883 for (size_t i = 0; i < packageNames.size(); ++i) {
884 mAppIds[packageNames[i]] = appIds[i];
885 }
Sudheer Shankad484aa92018-07-31 10:07:34 -0700886 return 0;
887}
888
889int VolumeManager::addSandboxIds(const std::vector<int32_t>& appIds,
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700890 const std::vector<std::string>& sandboxIds) {
Sudheer Shanka62bbb2b2018-08-01 01:09:10 -0700891 for (size_t i = 0; i < appIds.size(); ++i) {
892 mSandboxIds[appIds[i]] = sandboxIds[i];
893 }
Sudheer Shankad484aa92018-07-31 10:07:34 -0700894 return 0;
895}
896
Sudheer Shankafa6a1742018-10-04 16:26:22 -0700897int VolumeManager::prepareSandboxForApp(const std::string& packageName, appid_t appId,
898 const std::string& sandboxId, userid_t userId) {
Sudheer Shankac7562092018-08-24 10:20:56 -0700899 if (!GetBoolProperty(kIsolatedStorage, false)) {
900 return 0;
901 } else if (mStartedUsers.find(userId) == mStartedUsers.end()) {
902 // User not started, no need to do anything now. Required bind mounts for the package will
903 // be created when the user starts.
904 return 0;
905 }
Sudheer Shankafa6a1742018-10-04 16:26:22 -0700906 LOG(VERBOSE) << "prepareSandboxForApp: " << packageName << ", appId=" << appId
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700907 << ", sandboxId=" << sandboxId << ", userId=" << userId;
Sudheer Shankac7562092018-08-24 10:20:56 -0700908 mUserPackages[userId].push_back(packageName);
909 mAppIds[packageName] = appId;
910 mSandboxIds[appId] = sandboxId;
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700911
912 std::vector<std::string> visibleVolLabels;
913 for (auto& volId : mVisibleVolumeIds) {
914 auto vol = findVolume(volId);
915 userid_t mountUserId = vol->getMountUserId();
916 if (mountUserId == userId || vol->isEmulated()) {
917 visibleVolLabels.push_back(vol->getLabel());
918 }
Sudheer Shankac7562092018-08-24 10:20:56 -0700919 }
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700920 return prepareSandboxes(userId, {packageName}, visibleVolLabels);
Sudheer Shankac7562092018-08-24 10:20:56 -0700921}
922
Sudheer Shanka69bc40f2018-10-25 11:06:55 -0700923int VolumeManager::destroySandboxForApp(const std::string& packageName,
Sudheer Shankafa6a1742018-10-04 16:26:22 -0700924 const std::string& sandboxId, userid_t userId) {
925 if (!GetBoolProperty(kIsolatedStorage, false)) {
926 return 0;
927 }
Sudheer Shanka69bc40f2018-10-25 11:06:55 -0700928 LOG(VERBOSE) << "destroySandboxForApp: " << packageName << ", sandboxId=" << sandboxId
929 << ", userId=" << userId;
Sudheer Shankafa6a1742018-10-04 16:26:22 -0700930 auto& userPackages = mUserPackages[userId];
Sudheer Shankaba0c62f2018-12-16 18:22:34 -0800931 userPackages.erase(std::remove(userPackages.begin(), userPackages.end(), packageName),
932 userPackages.end());
Sudheer Shankafa6a1742018-10-04 16:26:22 -0700933 // If the package is not uninstalled in any other users, remove appId and sandboxId
934 // corresponding to it from the internal state.
935 bool installedInAnyUser = false;
936 for (auto& it : mUserPackages) {
937 auto& packages = it.second;
938 if (std::find(packages.begin(), packages.end(), packageName) != packages.end()) {
939 installedInAnyUser = true;
940 break;
941 }
942 }
943 if (!installedInAnyUser) {
Sudheer Shanka69bc40f2018-10-25 11:06:55 -0700944 const auto& entry = mAppIds.find(packageName);
945 if (entry != mAppIds.end()) {
946 mSandboxIds.erase(entry->second);
947 mAppIds.erase(entry);
948 }
Sudheer Shankafa6a1742018-10-04 16:26:22 -0700949 }
950
951 std::vector<std::string> visibleVolLabels;
952 for (auto& volId : mVisibleVolumeIds) {
953 auto vol = findVolume(volId);
954 userid_t mountUserId = vol->getMountUserId();
955 if (mountUserId == userId || vol->isEmulated()) {
956 if (destroySandboxForAppOnVol(packageName, sandboxId, userId, vol->getLabel()) < 0) {
957 return -errno;
958 }
959 }
960 }
961 return 0;
962}
963
964int VolumeManager::destroySandboxForAppOnVol(const std::string& packageName,
965 const std::string& sandboxId, userid_t userId,
966 const std::string& volLabel) {
967 LOG(VERBOSE) << "destroySandboxOnVol: " << packageName << ", userId=" << userId
968 << ", volLabel=" << volLabel;
969 std::string pkgSandboxTarget =
970 StringPrintf("/mnt/user/%d/package/%s", userId, packageName.c_str());
971 if (android::vold::UnmountTree(pkgSandboxTarget)) {
972 PLOG(ERROR) << "UnmountTree failed on " << pkgSandboxTarget;
973 }
974
975 std::string sandboxDir = StringPrintf("/mnt/runtime/write/%s", volLabel.c_str());
976 if (volLabel == mPrimary->getLabel() && mPrimary->isEmulated()) {
977 StringAppendF(&sandboxDir, "/%d", userId);
978 }
Sudheer Shanka51a38da2018-10-18 08:51:31 -0700979 StringAppendF(&sandboxDir, "/Android/sandbox/%s", sandboxId.c_str());
Sudheer Shankafa6a1742018-10-04 16:26:22 -0700980
981 if (android::vold::DeleteDirContentsAndDir(sandboxDir) < 0) {
982 PLOG(ERROR) << "DeleteDirContentsAndDir failed on " << sandboxDir;
983 return -errno;
984 }
985 return 0;
986}
987
Jeff Sharkey401b2602017-12-14 22:15:20 -0700988int VolumeManager::onSecureKeyguardStateChanged(bool isShowing) {
989 mSecureKeyguardShowing = isShowing;
990 if (!mSecureKeyguardShowing) {
991 // Now that secure keyguard has been dismissed, process
992 // any pending disks
993 for (const auto& disk : mPendingDisks) {
994 disk->create();
995 mDisks.push_back(disk);
996 }
997 mPendingDisks.clear();
998 }
999 return 0;
1000}
1001
Sudheer Shanka40ab6742018-09-18 13:07:45 -07001002int VolumeManager::onVolumeMounted(android::vold::VolumeBase* vol) {
1003 if (!GetBoolProperty(kIsolatedStorage, false)) {
1004 return 0;
1005 }
1006
1007 if ((vol->getMountFlags() & android::vold::VoldNativeService::MOUNT_FLAG_VISIBLE) == 0) {
1008 return 0;
1009 }
1010
1011 mVisibleVolumeIds.insert(vol->getId());
1012 userid_t mountUserId = vol->getMountUserId();
1013 if ((vol->getMountFlags() & android::vold::VoldNativeService::MOUNT_FLAG_PRIMARY) != 0) {
1014 // We don't want to create another shared_ptr here because then we will end up with
1015 // two shared_ptrs owning the underlying pointer without sharing it.
1016 mPrimary = findVolume(vol->getId());
1017 for (userid_t userId : mStartedUsers) {
1018 if (linkPrimary(userId) != 0) {
1019 return -errno;
1020 }
1021 }
1022 }
1023 if (vol->isEmulated()) {
1024 for (userid_t userId : mStartedUsers) {
1025 if (prepareSandboxes(userId, mUserPackages[userId], {vol->getLabel()}) != 0) {
1026 return -errno;
1027 }
1028 }
1029 } else if (mStartedUsers.find(mountUserId) != mStartedUsers.end()) {
1030 if (prepareSandboxes(mountUserId, mUserPackages[mountUserId], {vol->getLabel()}) != 0) {
1031 return -errno;
1032 }
1033 }
1034 return 0;
1035}
1036
1037int VolumeManager::onVolumeUnmounted(android::vold::VolumeBase* vol) {
1038 if (!GetBoolProperty(kIsolatedStorage, false)) {
1039 return 0;
1040 }
1041
1042 if (mVisibleVolumeIds.erase(vol->getId()) == 0) {
1043 return 0;
1044 }
1045
1046 if ((vol->getMountFlags() & android::vold::VoldNativeService::MOUNT_FLAG_PRIMARY) != 0) {
1047 mPrimary = nullptr;
1048 }
1049
1050 LOG(VERBOSE) << "visibleVolumeUnmounted: " << vol;
1051 userid_t mountUserId = vol->getMountUserId();
1052 if (vol->isEmulated()) {
1053 for (userid_t userId : mStartedUsers) {
1054 if (destroySandboxesForVol(vol, userId) != 0) {
1055 return -errno;
1056 }
1057 }
1058 } else if (mStartedUsers.find(mountUserId) != mStartedUsers.end()) {
1059 if (destroySandboxesForVol(vol, mountUserId) != 0) {
1060 return -errno;
1061 }
1062 }
1063 return 0;
1064}
1065
1066int VolumeManager::destroySandboxesForVol(android::vold::VolumeBase* vol, userid_t userId) {
1067 LOG(VERBOSE) << "destroysandboxesForVol: " << vol << " for user=" << userId;
1068 const std::vector<std::string>& packageNames = mUserPackages[userId];
1069 for (auto& packageName : packageNames) {
1070 std::string volSandboxRoot = StringPrintf("/mnt/user/%d/package/%s/%s", userId,
1071 packageName.c_str(), vol->getLabel().c_str());
1072 if (android::vold::UnmountTree(volSandboxRoot) != 0) {
1073 PLOG(ERROR) << "unmountTree on " << volSandboxRoot << " failed";
1074 continue;
1075 }
1076 if (android::vold::DeleteDirContentsAndDir(volSandboxRoot) < 0) {
1077 PLOG(ERROR) << "DeleteDirContentsAndDir failed on " << volSandboxRoot;
1078 continue;
1079 }
1080 LOG(VERBOSE) << "Success: DeleteDirContentsAndDir on " << volSandboxRoot;
1081 }
1082 return 0;
1083}
1084
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001085int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol) {
Sudheer Shanka40ab6742018-09-18 13:07:45 -07001086 if (GetBoolProperty(kIsolatedStorage, false)) {
1087 return 0;
1088 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001089 mPrimary = vol;
Jeff Sharkeybd3038d2015-06-10 09:42:01 -07001090 for (userid_t userId : mStartedUsers) {
Sudheer Shanka40ab6742018-09-18 13:07:45 -07001091 linkPrimary(userId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001092 }
1093 return 0;
1094}
1095
Sudheer Shanka817b9112018-12-13 17:40:28 -08001096int VolumeManager::remountUid(uid_t uid, int32_t mountMode) {
1097 if (!GetBoolProperty(kIsolatedStorage, false)) {
1098 return remountUidLegacy(uid, mountMode);
1099 }
1100
1101 appid_t appId = multiuser_get_app_id(uid);
1102 userid_t userId = multiuser_get_user_id(uid);
1103 std::vector<std::string> visibleVolLabels;
1104 for (auto& volId : mVisibleVolumeIds) {
1105 auto vol = findVolume(volId);
1106 userid_t mountUserId = vol->getMountUserId();
1107 if (mountUserId == userId || vol->isEmulated()) {
1108 visibleVolLabels.push_back(vol->getLabel());
1109 }
1110 }
1111
1112 // Finding one package with appId is enough
1113 std::vector<std::string> packageNames;
1114 for (auto it = mAppIds.begin(); it != mAppIds.end(); ++it) {
1115 if (it->second == appId) {
1116 packageNames.push_back(it->first);
1117 break;
1118 }
1119 }
1120 if (packageNames.empty()) {
1121 PLOG(ERROR) << "Failed to find packageName for " << uid;
Sudheer Shanka53947a32018-08-01 10:24:13 -07001122 return -1;
1123 }
Sudheer Shanka817b9112018-12-13 17:40:28 -08001124 return mountPkgSpecificDirsForRunningProcs(userId, packageNames, visibleVolLabels, mountMode);
1125}
1126
1127int VolumeManager::remountUidLegacy(uid_t uid, int32_t mountMode) {
1128 std::string mode;
1129 switch (mountMode) {
1130 case VoldNativeService::REMOUNT_MODE_NONE:
1131 mode = "none";
1132 break;
1133 case VoldNativeService::REMOUNT_MODE_DEFAULT:
1134 mode = "default";
1135 break;
1136 case VoldNativeService::REMOUNT_MODE_READ:
1137 mode = "read";
1138 break;
1139 case VoldNativeService::REMOUNT_MODE_WRITE:
1140 mode = "write";
1141 break;
1142 default:
1143 PLOG(ERROR) << "Unknown mode " << std::to_string(mountMode);
1144 return -1;
1145 }
Jeff Sharkey66270a22015-06-24 11:49:24 -07001146 LOG(DEBUG) << "Remounting " << uid << " as mode " << mode;
1147
1148 DIR* dir;
1149 struct dirent* de;
Jeff Sharkey3472e522017-10-06 18:02:53 -06001150 std::string rootName;
1151 std::string pidName;
Jeff Sharkey66270a22015-06-24 11:49:24 -07001152 int pidFd;
1153 int nsFd;
1154 struct stat sb;
1155 pid_t child;
1156
1157 if (!(dir = opendir("/proc"))) {
1158 PLOG(ERROR) << "Failed to opendir";
1159 return -1;
1160 }
1161
1162 // Figure out root namespace to compare against below
Jeff Sharkey3472e522017-10-06 18:02:53 -06001163 if (!android::vold::Readlinkat(dirfd(dir), "1/ns/mnt", &rootName)) {
1164 PLOG(ERROR) << "Failed to read root namespace";
Jeff Sharkey66270a22015-06-24 11:49:24 -07001165 closedir(dir);
1166 return -1;
1167 }
1168
1169 // Poke through all running PIDs look for apps running as UID
1170 while ((de = readdir(dir))) {
Jeff Vander Stoep58890832017-10-23 17:12:31 -07001171 pid_t pid;
1172 if (de->d_type != DT_DIR) continue;
1173 if (!android::base::ParseInt(de->d_name, &pid)) continue;
1174
Jeff Sharkey66270a22015-06-24 11:49:24 -07001175 pidFd = -1;
1176 nsFd = -1;
1177
1178 pidFd = openat(dirfd(dir), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
1179 if (pidFd < 0) {
1180 goto next;
1181 }
1182 if (fstat(pidFd, &sb) != 0) {
1183 PLOG(WARNING) << "Failed to stat " << de->d_name;
1184 goto next;
1185 }
1186 if (sb.st_uid != uid) {
1187 goto next;
1188 }
1189
1190 // Matches so far, but refuse to touch if in root namespace
1191 LOG(DEBUG) << "Found matching PID " << de->d_name;
Jeff Sharkey3472e522017-10-06 18:02:53 -06001192 if (!android::vold::Readlinkat(pidFd, "ns/mnt", &pidName)) {
Jeff Sharkey66270a22015-06-24 11:49:24 -07001193 PLOG(WARNING) << "Failed to read namespace for " << de->d_name;
1194 goto next;
1195 }
Jeff Sharkey3472e522017-10-06 18:02:53 -06001196 if (rootName == pidName) {
Jeff Sharkey66270a22015-06-24 11:49:24 -07001197 LOG(WARNING) << "Skipping due to root namespace";
1198 goto next;
1199 }
1200
1201 // We purposefully leave the namespace open across the fork
Paul Crowleyedf7a4e2018-09-18 15:14:18 -07001202 nsFd = openat(pidFd, "ns/mnt", O_RDONLY); // not O_CLOEXEC
Jeff Sharkey66270a22015-06-24 11:49:24 -07001203 if (nsFd < 0) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -07001204 PLOG(WARNING) << "Failed to open namespace for " << de->d_name;
Jeff Sharkey66270a22015-06-24 11:49:24 -07001205 goto next;
1206 }
1207
1208 if (!(child = fork())) {
1209 if (setns(nsFd, CLONE_NEWNS) != 0) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -07001210 PLOG(ERROR) << "Failed to setns for " << de->d_name;
Jeff Sharkey66270a22015-06-24 11:49:24 -07001211 _exit(1);
1212 }
1213
Sudheer Shanka99d304a2018-09-27 14:53:51 -07001214 android::vold::UnmountTree("/storage/");
Jeff Sharkey66270a22015-06-24 11:49:24 -07001215
1216 std::string storageSource;
1217 if (mode == "default") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -07001218 storageSource = "/mnt/runtime/default";
Jeff Sharkey66270a22015-06-24 11:49:24 -07001219 } else if (mode == "read") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -07001220 storageSource = "/mnt/runtime/read";
Jeff Sharkey66270a22015-06-24 11:49:24 -07001221 } else if (mode == "write") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -07001222 storageSource = "/mnt/runtime/write";
Jeff Sharkey66270a22015-06-24 11:49:24 -07001223 } else {
1224 // Sane default of no storage visible
1225 _exit(0);
1226 }
Paul Crowleyedf7a4e2018-09-18 15:14:18 -07001227 if (TEMP_FAILURE_RETRY(
1228 mount(storageSource.c_str(), "/storage", NULL, MS_BIND | MS_REC, NULL)) == -1) {
1229 PLOG(ERROR) << "Failed to mount " << storageSource << " for " << de->d_name;
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -07001230 _exit(1);
Jeff Sharkey66270a22015-06-24 11:49:24 -07001231 }
Paul Crowleyedf7a4e2018-09-18 15:14:18 -07001232 if (TEMP_FAILURE_RETRY(mount(NULL, "/storage", NULL, MS_REC | MS_SLAVE, NULL)) == -1) {
1233 PLOG(ERROR) << "Failed to set MS_SLAVE to /storage for " << de->d_name;
Hidehiko Abe674bed12016-03-09 16:42:10 +09001234 _exit(1);
1235 }
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -07001236
1237 // Mount user-specific symlink helper into place
1238 userid_t user_id = multiuser_get_user_id(uid);
1239 std::string userSource(StringPrintf("/mnt/user/%d", user_id));
Paul Crowleyedf7a4e2018-09-18 15:14:18 -07001240 if (TEMP_FAILURE_RETRY(
1241 mount(userSource.c_str(), "/storage/self", NULL, MS_BIND, NULL)) == -1) {
1242 PLOG(ERROR) << "Failed to mount " << userSource << " for " << de->d_name;
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -07001243 _exit(1);
1244 }
1245
Jeff Sharkey66270a22015-06-24 11:49:24 -07001246 _exit(0);
1247 }
1248
1249 if (child == -1) {
1250 PLOG(ERROR) << "Failed to fork";
1251 goto next;
1252 } else {
1253 TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0));
1254 }
1255
Paul Crowleyedf7a4e2018-09-18 15:14:18 -07001256 next:
Jeff Sharkey66270a22015-06-24 11:49:24 -07001257 close(nsFd);
1258 close(pidFd);
1259 }
1260 closedir(dir);
1261 return 0;
1262}
1263
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001264int VolumeManager::reset() {
1265 // Tear down all existing disks/volumes and start from a blank slate so
1266 // newly connected framework hears all events.
Gao Xiangd263da82017-08-14 11:32:13 +08001267 if (mInternalEmulated != nullptr) {
1268 mInternalEmulated->destroy();
1269 mInternalEmulated->create();
1270 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -07001271 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001272 disk->destroy();
1273 disk->create();
1274 }
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -06001275 updateVirtualDisk();
Jeff Sharkeybd3038d2015-06-10 09:42:01 -07001276 mAddedUsers.clear();
1277 mStartedUsers.clear();
Sudheer Shanka62bbb2b2018-08-01 01:09:10 -07001278
1279 mUserPackages.clear();
1280 mAppIds.clear();
1281 mSandboxIds.clear();
Sudheer Shanka40ab6742018-09-18 13:07:45 -07001282 mVisibleVolumeIds.clear();
Sudheer Shanka3a7ee5c2018-08-07 17:10:11 -07001283
1284 // For unmounting dirs under /mnt/user/<user-id>/package/<package-name>
Sudheer Shanka40ab6742018-09-18 13:07:45 -07001285 android::vold::UnmountTree("/mnt/user/");
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001286 return 0;
1287}
1288
Keun-young Parka5bbb5e2017-03-13 18:02:50 -07001289// Can be called twice (sequentially) during shutdown. should be safe for that.
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001290int VolumeManager::shutdown() {
Keun-young Parka5bbb5e2017-03-13 18:02:50 -07001291 if (mInternalEmulated == nullptr) {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -07001292 return 0; // already shutdown
Keun-young Parka5bbb5e2017-03-13 18:02:50 -07001293 }
Paul Crowley56292ef2017-10-20 08:07:53 -07001294 android::vold::sSleepOnUnmount = false;
Jeff Sharkey9c484982015-03-31 10:35:33 -07001295 mInternalEmulated->destroy();
Keun-young Parka5bbb5e2017-03-13 18:02:50 -07001296 mInternalEmulated = nullptr;
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -07001297 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001298 disk->destroy();
1299 }
Risan8c9f3322018-10-29 08:52:56 +09001300 mStubVolumes.clear();
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001301 mDisks.clear();
Jeff Sharkey401b2602017-12-14 22:15:20 -07001302 mPendingDisks.clear();
Paul Crowley56292ef2017-10-20 08:07:53 -07001303 android::vold::sSleepOnUnmount = true;
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001304 return 0;
San Mehatf1b736b2009-10-10 17:22:08 -07001305}
1306
Jeff Sharkey9c484982015-03-31 10:35:33 -07001307int VolumeManager::unmountAll() {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -07001308 std::lock_guard<std::mutex> lock(mLock);
Jeff Sharkey67b8c492017-09-21 17:08:43 -06001309 ATRACE_NAME("VolumeManager::unmountAll()");
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -07001310
Jeff Sharkey9c484982015-03-31 10:35:33 -07001311 // First, try gracefully unmounting all known devices
1312 if (mInternalEmulated != nullptr) {
1313 mInternalEmulated->unmount();
1314 }
Risan8c9f3322018-10-29 08:52:56 +09001315 for (const auto& stub : mStubVolumes) {
1316 stub->unmount();
1317 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -07001318 for (const auto& disk : mDisks) {
Jeff Sharkey9c484982015-03-31 10:35:33 -07001319 disk->unmountAll();
1320 }
1321
1322 // Worst case we might have some stale mounts lurking around, so
1323 // force unmount those just to be safe.
LongPing.WEI4f046062018-11-23 19:27:35 +08001324 FILE* fp = setmntent("/proc/mounts", "re");
Jeff Sharkey9c484982015-03-31 10:35:33 -07001325 if (fp == NULL) {
Jeff Sharkey3472e522017-10-06 18:02:53 -06001326 PLOG(ERROR) << "Failed to open /proc/mounts";
Jeff Sharkey9c484982015-03-31 10:35:33 -07001327 return -errno;
1328 }
1329
1330 // Some volumes can be stacked on each other, so force unmount in
1331 // reverse order to give us the best chance of success.
1332 std::list<std::string> toUnmount;
1333 mntent* mentry;
1334 while ((mentry = getmntent(fp)) != NULL) {
Jeff Sharkey3472e522017-10-06 18:02:53 -06001335 auto test = std::string(mentry->mnt_dir);
Mark Salyzyn86e81e72018-09-20 10:09:27 -07001336 if ((StartsWith(test, "/mnt/") &&
1337#ifdef __ANDROID_DEBUGGABLE__
1338 !StartsWith(test, "/mnt/scratch") &&
1339#endif
1340 !StartsWith(test, "/mnt/vendor") && !StartsWith(test, "/mnt/product")) ||
1341 StartsWith(test, "/storage/")) {
Jeff Sharkey3472e522017-10-06 18:02:53 -06001342 toUnmount.push_front(test);
Jeff Sharkey9c484982015-03-31 10:35:33 -07001343 }
1344 }
1345 endmntent(fp);
1346
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -07001347 for (const auto& path : toUnmount) {
Jeff Sharkey11c2d382017-09-11 10:32:01 -06001348 LOG(DEBUG) << "Tearing down stale mount " << path;
Jeff Sharkey9c484982015-03-31 10:35:33 -07001349 android::vold::ForceUnmount(path);
1350 }
1351
1352 return 0;
1353}
1354
Jeff Sharkey3472e522017-10-06 18:02:53 -06001355int VolumeManager::mkdirs(const std::string& path) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001356 // Only offer to create directories for paths managed by vold
Mark Salyzyn86e81e72018-09-20 10:09:27 -07001357 if (StartsWith(path, "/storage/")) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001358 // fs_mkdirs() does symlink checking and relative path enforcement
Jeff Sharkey3472e522017-10-06 18:02:53 -06001359 return fs_mkdirs(path.c_str(), 0700);
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001360 } else {
Jeff Sharkey3472e522017-10-06 18:02:53 -06001361 LOG(ERROR) << "Failed to find mounted volume for " << path;
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001362 return -EINVAL;
1363 }
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001364}
Jeff Sharkey11c2d382017-09-11 10:32:01 -06001365
Jeff Sharkey11c2d382017-09-11 10:32:01 -06001366int VolumeManager::createObb(const std::string& sourcePath, const std::string& sourceKey,
Paul Crowleyedf7a4e2018-09-18 15:14:18 -07001367 int32_t ownerGid, std::string* outVolId) {
Jeff Sharkey11c2d382017-09-11 10:32:01 -06001368 int id = mNextObbId++;
1369
1370 auto vol = std::shared_ptr<android::vold::VolumeBase>(
Paul Crowleyedf7a4e2018-09-18 15:14:18 -07001371 new android::vold::ObbVolume(id, sourcePath, sourceKey, ownerGid));
Jeff Sharkey11c2d382017-09-11 10:32:01 -06001372 vol->create();
1373
1374 mObbVolumes.push_back(vol);
1375 *outVolId = vol->getId();
1376 return android::OK;
1377}
1378
1379int VolumeManager::destroyObb(const std::string& volId) {
1380 auto i = mObbVolumes.begin();
1381 while (i != mObbVolumes.end()) {
1382 if ((*i)->getId() == volId) {
1383 (*i)->destroy();
1384 i = mObbVolumes.erase(i);
1385 } else {
1386 ++i;
1387 }
1388 }
1389 return android::OK;
1390}
1391
Risan8c9f3322018-10-29 08:52:56 +09001392int VolumeManager::createStubVolume(const std::string& sourcePath, const std::string& mountPath,
1393 const std::string& fsType, const std::string& fsUuid,
1394 const std::string& fsLabel, std::string* outVolId) {
1395 int id = mNextStubVolumeId++;
1396 auto vol = std::shared_ptr<android::vold::VolumeBase>(
1397 new android::vold::StubVolume(id, sourcePath, mountPath, fsType, fsUuid, fsLabel));
1398 vol->create();
1399
1400 mStubVolumes.push_back(vol);
1401 *outVolId = vol->getId();
1402 return android::OK;
1403}
1404
1405int VolumeManager::destroyStubVolume(const std::string& volId) {
1406 auto i = mStubVolumes.begin();
1407 while (i != mStubVolumes.end()) {
1408 if ((*i)->getId() == volId) {
1409 (*i)->destroy();
1410 i = mStubVolumes.erase(i);
1411 } else {
1412 ++i;
1413 }
1414 }
1415 return android::OK;
1416}
1417
Risan8f6198d2018-10-26 20:56:45 -06001418int VolumeManager::mountAppFuse(uid_t uid, int mountId, unique_fd* device_fd) {
Risanac02a482018-10-31 21:59:47 -06001419 return android::vold::MountAppFuse(uid, mountId, device_fd);
Jeff Sharkey11c2d382017-09-11 10:32:01 -06001420}
1421
Risan8f6198d2018-10-26 20:56:45 -06001422int VolumeManager::unmountAppFuse(uid_t uid, int mountId) {
Risanac02a482018-10-31 21:59:47 -06001423 return android::vold::UnmountAppFuse(uid, mountId);
Risan8f6198d2018-10-26 20:56:45 -06001424}
1425
1426int VolumeManager::openAppFuseFile(uid_t uid, int mountId, int fileId, int flags) {
Risanac02a482018-10-31 21:59:47 -06001427 return android::vold::OpenAppFuseFile(uid, mountId, fileId, flags);
Jeff Sharkey11c2d382017-09-11 10:32:01 -06001428}