San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 1 | /* |
| 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 Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 17 | #define ATRACE_TAG ATRACE_TAG_PACKAGE_MANAGER |
| 18 | |
Yabin Cui | d1104f7 | 2015-01-02 13:28:28 -0800 | [diff] [blame] | 19 | #include <dirent.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 20 | #include <errno.h> |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 21 | #include <fcntl.h> |
Yabin Cui | d1104f7 | 2015-01-02 13:28:28 -0800 | [diff] [blame] | 22 | #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 Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 28 | #include <sys/stat.h> |
Elliott Hughes | 0e08e84 | 2017-05-18 09:08:24 -0700 | [diff] [blame] | 29 | #include <sys/sysmacros.h> |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 30 | #include <sys/types.h> |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 31 | #include <sys/wait.h> |
Yabin Cui | d1104f7 | 2015-01-02 13:28:28 -0800 | [diff] [blame] | 32 | #include <unistd.h> |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 33 | #include <array> |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 34 | |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 35 | #include <linux/kdev_t.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 36 | |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 37 | #include <android-base/logging.h> |
Jeff Vander Stoep | 5889083 | 2017-10-23 17:12:31 -0700 | [diff] [blame] | 38 | #include <android-base/parseint.h> |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 39 | #include <android-base/properties.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 40 | #include <android-base/stringprintf.h> |
Jeff Vander Stoep | 5889083 | 2017-10-23 17:12:31 -0700 | [diff] [blame] | 41 | #include <android-base/strings.h> |
| 42 | |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 43 | #include <cutils/fs.h> |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 44 | #include <utils/Trace.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 45 | |
Robert Craig | b9e3ba5 | 2014-02-04 10:53:00 -0500 | [diff] [blame] | 46 | #include <selinux/android.h> |
| 47 | |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame] | 48 | #include <sysutils/NetlinkEvent.h> |
| 49 | |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 50 | #include <private/android_filesystem_config.h> |
| 51 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 52 | #include <fscrypt/fscrypt.h> |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 53 | |
Risan | ac02a48 | 2018-10-31 21:59:47 -0600 | [diff] [blame] | 54 | #include "AppFuseUtil.h" |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 55 | #include "Devmapper.h" |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 56 | #include "FsCrypt.h" |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 57 | #include "Loop.h" |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 58 | #include "NetlinkManager.h" |
| 59 | #include "Process.h" |
| 60 | #include "Utils.h" |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 61 | #include "VoldNativeService.h" |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 62 | #include "VoldUtil.h" |
| 63 | #include "VolumeManager.h" |
| 64 | #include "cryptfs.h" |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 65 | #include "fs/Ext4.h" |
| 66 | #include "fs/Vfat.h" |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 67 | #include "model/EmulatedVolume.h" |
| 68 | #include "model/ObbVolume.h" |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 69 | #include "model/StubVolume.h" |
San Mehat | 2396993 | 2010-01-09 07:08:06 -0800 | [diff] [blame] | 70 | |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 71 | using android::base::GetBoolProperty; |
Mark Salyzyn | 86e81e7 | 2018-09-20 10:09:27 -0700 | [diff] [blame] | 72 | using android::base::StartsWith; |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 73 | using android::base::StringAppendF; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 74 | using android::base::StringPrintf; |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 75 | using android::base::unique_fd; |
Sudheer Shanka | 03992e3 | 2018-12-12 12:43:38 -0800 | [diff] [blame] | 76 | using android::vold::VoldNativeService; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 77 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 78 | static const char* kPathUserMount = "/mnt/user"; |
| 79 | static const char* kPathVirtualDisk = "/data/misc/vold/virtual_disk"; |
| 80 | |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 81 | static const char* kIsolatedStorage = "persist.sys.isolated_storage"; |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 82 | static const char* kPropVirtualDisk = "persist.sys.virtual_disk"; |
| 83 | |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 84 | static const std::string kEmptyString(""); |
| 85 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 86 | /* 512MiB is large enough for testing purposes */ |
| 87 | static const unsigned int kSizeVirtualDisk = 536870912; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 88 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 89 | static const unsigned int kMajorBlockMmc = 179; |
Yu Ning | 942d4e8 | 2016-01-08 17:36:47 +0800 | [diff] [blame] | 90 | static const unsigned int kMajorBlockExperimentalMin = 240; |
| 91 | static const unsigned int kMajorBlockExperimentalMax = 254; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 92 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 93 | VolumeManager* VolumeManager::sInstance = NULL; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 94 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 95 | VolumeManager* VolumeManager::Instance() { |
| 96 | if (!sInstance) sInstance = new VolumeManager(); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 97 | return sInstance; |
| 98 | } |
| 99 | |
| 100 | VolumeManager::VolumeManager() { |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 101 | mDebug = false; |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 102 | mNextObbId = 0; |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 103 | mNextStubVolumeId = 0; |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 104 | // For security reasons, assume that a secure keyguard is |
| 105 | // showing until we hear otherwise |
| 106 | mSecureKeyguardShowing = true; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 109 | VolumeManager::~VolumeManager() {} |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 110 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 111 | int VolumeManager::updateVirtualDisk() { |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 112 | ATRACE_NAME("VolumeManager::updateVirtualDisk"); |
Mark Salyzyn | 86e81e7 | 2018-09-20 10:09:27 -0700 | [diff] [blame] | 113 | if (GetBoolProperty(kPropVirtualDisk, false)) { |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 114 | 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 Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 130 | auto disk = new android::vold::Disk( |
| 131 | "virtual", buf.st_rdev, "virtual", |
| 132 | android::vold::Disk::Flags::kAdoptable | android::vold::Disk::Flags::kSd); |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 133 | mVirtualDisk = std::shared_ptr<android::vold::Disk>(disk); |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 134 | handleDiskAdded(mVirtualDisk); |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 135 | } |
| 136 | } else { |
| 137 | if (mVirtualDisk != nullptr) { |
| 138 | dev_t device = mVirtualDisk->getDevice(); |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 139 | handleDiskRemoved(device); |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 140 | |
| 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 Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 152 | int VolumeManager::setDebug(bool enable) { |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 153 | mDebug = enable; |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 154 | return 0; |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 155 | } |
| 156 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 157 | int VolumeManager::start() { |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 158 | ATRACE_NAME("VolumeManager::start"); |
| 159 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 160 | // Always start from a clean slate by unmounting everything in |
| 161 | // directories that we own, in case we crashed. |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 162 | unmountAll(); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 163 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 164 | Devmapper::destroyAll(); |
| 165 | Loop::destroyAll(); |
| 166 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 167 | // Assume that we always have an emulated volume on internal |
| 168 | // storage; the framework will decide if it should be mounted. |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 169 | CHECK(mInternalEmulated == nullptr); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 170 | mInternalEmulated = std::shared_ptr<android::vold::VolumeBase>( |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 171 | new android::vold::EmulatedVolume("/data/media")); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 172 | mInternalEmulated->create(); |
| 173 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 174 | // Consider creating a virtual disk |
| 175 | updateVirtualDisk(); |
| 176 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 177 | return 0; |
| 178 | } |
| 179 | |
| 180 | int VolumeManager::stop() { |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 181 | CHECK(mInternalEmulated != nullptr); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 182 | mInternalEmulated->destroy(); |
| 183 | mInternalEmulated = nullptr; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 184 | return 0; |
| 185 | } |
| 186 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 187 | void VolumeManager::handleBlockEvent(NetlinkEvent* evt) { |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 188 | std::lock_guard<std::mutex> lock(mLock); |
| 189 | |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 190 | if (mDebug) { |
Sudheer Shanka | 4b6ca4e | 2018-09-21 10:54:54 -0700 | [diff] [blame] | 191 | LOG(DEBUG) << "----------------"; |
| 192 | LOG(DEBUG) << "handleBlockEvent with action " << (int)evt->getAction(); |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 193 | evt->dump(); |
| 194 | } |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 195 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 196 | std::string eventPath(evt->findParam("DEVPATH") ? evt->findParam("DEVPATH") : ""); |
| 197 | std::string devType(evt->findParam("DEVTYPE") ? evt->findParam("DEVTYPE") : ""); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 198 | |
| 199 | if (devType != "disk") return; |
| 200 | |
Jeff Sharkey | 95440eb | 2017-09-18 18:19:28 -0600 | [diff] [blame] | 201 | int major = std::stoi(evt->findParam("MAJOR")); |
| 202 | int minor = std::stoi(evt->findParam("MINOR")); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 203 | dev_t device = makedev(major, minor); |
| 204 | |
| 205 | switch (evt->getAction()) { |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 206 | 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 Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 220 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 221 | 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 Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 226 | } |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 227 | break; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 228 | } |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 229 | 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 Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 242 | } |
| 243 | } |
| 244 | |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 245 | void 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 Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 250 | << " but delaying scan due to secure keyguard"; |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 251 | mPendingDisks.push_back(disk); |
| 252 | } else { |
| 253 | disk->create(); |
| 254 | mDisks.push_back(disk); |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | void 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 | |
| 270 | void 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 Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 290 | void VolumeManager::addDiskSource(const std::shared_ptr<DiskSource>& diskSource) { |
Wei Wang | 6b455c2 | 2017-01-20 11:52:33 -0800 | [diff] [blame] | 291 | std::lock_guard<std::mutex> lock(mLock); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 292 | mDiskSources.push_back(diskSource); |
| 293 | } |
| 294 | |
| 295 | std::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 Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 299 | } |
| 300 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 301 | return nullptr; |
| 302 | } |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 303 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 304 | std::shared_ptr<android::vold::VolumeBase> VolumeManager::findVolume(const std::string& id) { |
Gao Xiang | d263da8 | 2017-08-14 11:32:13 +0800 | [diff] [blame] | 305 | // 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 Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 309 | return mInternalEmulated; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 310 | } |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 311 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 312 | auto vol = disk->findVolume(id); |
| 313 | if (vol != nullptr) { |
| 314 | return vol; |
| 315 | } |
| 316 | } |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 317 | for (const auto& vol : mStubVolumes) { |
| 318 | if (vol->getId() == id) { |
| 319 | return vol; |
| 320 | } |
| 321 | } |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 322 | for (const auto& vol : mObbVolumes) { |
| 323 | if (vol->getId() == id) { |
| 324 | return vol; |
| 325 | } |
| 326 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 327 | return nullptr; |
| 328 | } |
| 329 | |
Greg Kaiser | 2bc201e | 2018-12-18 08:42:08 -0800 | [diff] [blame^] | 330 | void VolumeManager::listVolumes(android::vold::VolumeBase::Type type, |
| 331 | std::list<std::string>& list) const { |
Jeff Sharkey | c86ab6f | 2015-06-26 14:02:09 -0700 | [diff] [blame] | 332 | list.clear(); |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 333 | for (const auto& disk : mDisks) { |
Jeff Sharkey | c86ab6f | 2015-06-26 14:02:09 -0700 | [diff] [blame] | 334 | disk->listVolumes(type, list); |
| 335 | } |
| 336 | } |
| 337 | |
Jeff Sharkey | 3ce1825 | 2017-10-24 11:08:45 -0600 | [diff] [blame] | 338 | int VolumeManager::forgetPartition(const std::string& partGuid, const std::string& fsUuid) { |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 339 | std::string normalizedGuid; |
| 340 | if (android::vold::NormalizeHex(partGuid, normalizedGuid)) { |
| 341 | LOG(WARNING) << "Invalid GUID " << partGuid; |
| 342 | return -1; |
| 343 | } |
| 344 | |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 345 | bool success = true; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 346 | std::string keyPath = android::vold::BuildKeyPath(normalizedGuid); |
| 347 | if (unlink(keyPath.c_str()) != 0) { |
| 348 | LOG(ERROR) << "Failed to unlink " << keyPath; |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 349 | success = false; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 350 | } |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 351 | if (fscrypt_is_native()) { |
| 352 | if (!fscrypt_destroy_volume_keys(fsUuid)) { |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 353 | success = false; |
| 354 | } |
| 355 | } |
| 356 | return success ? 0 : -1; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 357 | } |
| 358 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 359 | int VolumeManager::linkPrimary(userid_t userId) { |
| 360 | std::string source(mPrimary->getPath()); |
| 361 | if (mPrimary->isEmulated()) { |
| 362 | source = StringPrintf("%s/%d", source.c_str(), userId); |
| 363 | fs_prepare_dir(source.c_str(), 0755, AID_ROOT, AID_ROOT); |
| 364 | } |
| 365 | |
| 366 | std::string target(StringPrintf("/mnt/user/%d/primary", userId)); |
| 367 | if (TEMP_FAILURE_RETRY(unlink(target.c_str()))) { |
| 368 | if (errno != ENOENT) { |
| 369 | PLOG(WARNING) << "Failed to unlink " << target; |
| 370 | } |
| 371 | } |
| 372 | LOG(DEBUG) << "Linking " << source << " to " << target; |
| 373 | if (TEMP_FAILURE_RETRY(symlink(source.c_str(), target.c_str()))) { |
| 374 | PLOG(WARNING) << "Failed to link"; |
Sudheer Shanka | 3a7ee5c | 2018-08-07 17:10:11 -0700 | [diff] [blame] | 375 | return -errno; |
| 376 | } |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 377 | return 0; |
| 378 | } |
| 379 | |
| 380 | int VolumeManager::mountPkgSpecificDir(const std::string& mntSourceRoot, |
| 381 | const std::string& mntTargetRoot, |
| 382 | const std::string& packageName, const char* dirName) { |
| 383 | std::string mntSourceDir = |
| 384 | StringPrintf("%s/Android/%s/%s", mntSourceRoot.c_str(), dirName, packageName.c_str()); |
| 385 | std::string mntTargetDir = |
| 386 | StringPrintf("%s/Android/%s/%s", mntTargetRoot.c_str(), dirName, packageName.c_str()); |
| 387 | if (umount2(mntTargetDir.c_str(), MNT_DETACH) == -1 && errno != EINVAL && errno != ENOENT) { |
| 388 | PLOG(ERROR) << "Failed to unmount " << mntTargetDir; |
| 389 | return -1; |
| 390 | } |
| 391 | if (TEMP_FAILURE_RETRY(mount(mntSourceDir.c_str(), mntTargetDir.c_str(), nullptr, |
| 392 | MS_BIND | MS_REC, nullptr)) == -1) { |
| 393 | PLOG(ERROR) << "Failed to mount " << mntSourceDir << " to " << mntTargetDir; |
| 394 | return -1; |
Sudheer Shanka | 3a7ee5c | 2018-08-07 17:10:11 -0700 | [diff] [blame] | 395 | } |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 396 | if (TEMP_FAILURE_RETRY( |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 397 | mount(nullptr, mntTargetDir.c_str(), nullptr, MS_REC | MS_SLAVE, nullptr)) == -1) { |
| 398 | PLOG(ERROR) << "Failed to set MS_SLAVE at " << mntTargetDir; |
| 399 | return -1; |
Sudheer Shanka | 3a7ee5c | 2018-08-07 17:10:11 -0700 | [diff] [blame] | 400 | } |
| 401 | return 0; |
| 402 | } |
| 403 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 404 | int VolumeManager::mountPkgSpecificDirsForRunningProcs( |
| 405 | userid_t userId, const std::vector<std::string>& packageNames, |
| 406 | const std::vector<std::string>& visibleVolLabels) { |
| 407 | // TODO: New processes could be started while traversing over the existing |
| 408 | // processes which would end up not having the necessary bind mounts. This |
| 409 | // issue needs to be fixed, may be by doing multiple passes here? |
| 410 | std::unique_ptr<DIR, decltype(&closedir)> dirp(opendir("/proc"), closedir); |
| 411 | if (!dirp) { |
| 412 | PLOG(ERROR) << "Failed to opendir /proc"; |
| 413 | return -1; |
Sudheer Shanka | c756209 | 2018-08-24 10:20:56 -0700 | [diff] [blame] | 414 | } |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 415 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 416 | std::string rootName; |
| 417 | // Figure out root namespace to compare against below |
| 418 | if (!android::vold::Readlinkat(dirfd(dirp.get()), "1/ns/mnt", &rootName)) { |
| 419 | PLOG(ERROR) << "Failed to read root namespace"; |
| 420 | return -1; |
Sudheer Shanka | f768c27 | 2018-08-04 10:10:27 -0700 | [diff] [blame] | 421 | } |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 422 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 423 | struct stat fullWriteSb; |
| 424 | if (TEMP_FAILURE_RETRY(stat("/mnt/runtime/write", &fullWriteSb)) == -1) { |
| 425 | PLOG(ERROR) << "Failed to stat /mnt/runtime/write"; |
| 426 | return -1; |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 427 | } |
| 428 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 429 | std::unordered_set<appid_t> validAppIds; |
| 430 | for (auto& package : packageNames) { |
| 431 | validAppIds.insert(mAppIds[package]); |
Sudheer Shanka | a695f25 | 2018-08-03 18:07:52 -0700 | [diff] [blame] | 432 | } |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 433 | std::vector<std::string>& userPackages = mUserPackages[userId]; |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 434 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 435 | struct dirent* de; |
| 436 | // Poke through all running PIDs look for apps running in userId |
| 437 | while ((de = readdir(dirp.get()))) { |
| 438 | pid_t pid; |
| 439 | if (de->d_type != DT_DIR) continue; |
| 440 | if (!android::base::ParseInt(de->d_name, &pid)) continue; |
| 441 | |
| 442 | const unique_fd pidFd( |
| 443 | openat(dirfd(dirp.get()), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC)); |
| 444 | if (pidFd.get() < 0) { |
| 445 | PLOG(WARNING) << "Failed to open /proc/" << pid; |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 446 | continue; |
| 447 | } |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 448 | struct stat sb; |
| 449 | if (fstat(pidFd.get(), &sb) != 0) { |
| 450 | PLOG(WARNING) << "Failed to stat " << de->d_name; |
| 451 | continue; |
| 452 | } |
| 453 | if (multiuser_get_user_id(sb.st_uid) != userId) { |
| 454 | continue; |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 455 | } |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 456 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 457 | // Matches so far, but refuse to touch if in root namespace |
| 458 | LOG(VERBOSE) << "Found matching PID " << de->d_name; |
| 459 | std::string pidName; |
| 460 | if (!android::vold::Readlinkat(pidFd.get(), "ns/mnt", &pidName)) { |
| 461 | PLOG(WARNING) << "Failed to read namespace for " << de->d_name; |
| 462 | continue; |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 463 | } |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 464 | if (rootName == pidName) { |
| 465 | LOG(WARNING) << "Skipping due to root namespace"; |
| 466 | continue; |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 467 | } |
| 468 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 469 | // Only update the mount points of processes running with one of validAppIds. |
| 470 | // This should skip any isolated uids. |
| 471 | appid_t appId = multiuser_get_app_id(sb.st_uid); |
| 472 | if (validAppIds.find(appId) == validAppIds.end()) { |
| 473 | continue; |
Sudheer Shanka | 3a7ee5c | 2018-08-07 17:10:11 -0700 | [diff] [blame] | 474 | } |
| 475 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 476 | std::vector<std::string> packagesForUid; |
| 477 | for (auto& package : userPackages) { |
| 478 | if (mAppIds[package] == appId) { |
| 479 | packagesForUid.push_back(package); |
| 480 | } |
| 481 | } |
| 482 | if (packagesForUid.empty()) { |
| 483 | continue; |
| 484 | } |
| 485 | const std::string& sandboxId = mSandboxIds[appId]; |
| 486 | |
| 487 | // We purposefully leave the namespace open across the fork |
| 488 | unique_fd nsFd(openat(pidFd.get(), "ns/mnt", O_RDONLY)); // not O_CLOEXEC |
| 489 | if (nsFd.get() < 0) { |
| 490 | PLOG(WARNING) << "Failed to open namespace for " << de->d_name; |
| 491 | continue; |
Sudheer Shanka | 3a7ee5c | 2018-08-07 17:10:11 -0700 | [diff] [blame] | 492 | } |
| 493 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 494 | pid_t child; |
| 495 | if (!(child = fork())) { |
| 496 | if (setns(nsFd.get(), CLONE_NEWNS) != 0) { |
| 497 | PLOG(ERROR) << "Failed to setns for " << de->d_name; |
| 498 | _exit(1); |
| 499 | } |
| 500 | |
Sudheer Shanka | 03992e3 | 2018-12-12 12:43:38 -0800 | [diff] [blame] | 501 | int mountMode = getMountModeForRunningProc(packagesForUid, userId, fullWriteSb); |
| 502 | if (mountMode == -1) { |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 503 | _exit(1); |
| 504 | } |
| 505 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 506 | for (auto& volumeLabel : visibleVolLabels) { |
| 507 | std::string mntSource = StringPrintf("/mnt/runtime/write/%s", volumeLabel.c_str()); |
| 508 | std::string mntTarget = StringPrintf("/storage/%s", volumeLabel.c_str()); |
| 509 | if (volumeLabel == "emulated") { |
| 510 | StringAppendF(&mntSource, "/%d", userId); |
| 511 | StringAppendF(&mntTarget, "/%d", userId); |
| 512 | } |
| 513 | for (auto& package : packagesForUid) { |
| 514 | mountPkgSpecificDir(mntSource, mntTarget, package, "data"); |
| 515 | mountPkgSpecificDir(mntSource, mntTarget, package, "media"); |
Sudheer Shanka | 03992e3 | 2018-12-12 12:43:38 -0800 | [diff] [blame] | 516 | if (mountMode != VoldNativeService::REMOUNT_MODE_INSTALLER) { |
| 517 | mountPkgSpecificDir(mntSource, mntTarget, package, "obb"); |
| 518 | } |
| 519 | } |
| 520 | if (mountMode == VoldNativeService::REMOUNT_MODE_INSTALLER) { |
| 521 | StringAppendF(&mntSource, "/Android/obb"); |
| 522 | StringAppendF(&mntTarget, "/Android/obb"); |
| 523 | if (TEMP_FAILURE_RETRY(mount(mntSource.c_str(), mntTarget.c_str(), nullptr, |
| 524 | MS_BIND | MS_REC, nullptr)) == -1) { |
| 525 | PLOG(ERROR) << "Failed to mount " << mntSource << " to " << mntTarget; |
| 526 | continue; |
| 527 | } |
| 528 | if (TEMP_FAILURE_RETRY(mount(nullptr, mntTarget.c_str(), nullptr, |
| 529 | MS_REC | MS_SLAVE, nullptr)) == -1) { |
| 530 | PLOG(ERROR) << "Failed to set MS_SLAVE at " << mntTarget.c_str(); |
| 531 | continue; |
| 532 | } |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 533 | } |
| 534 | } |
| 535 | _exit(0); |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 536 | } |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 537 | |
| 538 | if (child == -1) { |
| 539 | PLOG(ERROR) << "Failed to fork"; |
| 540 | } else { |
| 541 | TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0)); |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 542 | } |
| 543 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 544 | return 0; |
| 545 | } |
| 546 | |
Sudheer Shanka | 03992e3 | 2018-12-12 12:43:38 -0800 | [diff] [blame] | 547 | int VolumeManager::getMountModeForRunningProc(const std::vector<std::string>& packagesForUid, |
| 548 | userid_t userId, struct stat& mntWriteStat) { |
| 549 | struct stat storageSb; |
| 550 | if (TEMP_FAILURE_RETRY(stat("/storage", &storageSb)) == -1) { |
| 551 | PLOG(ERROR) << "Failed to stat /storage"; |
| 552 | return -1; |
| 553 | } |
| 554 | |
| 555 | // Some packages have access to full external storage, identify processes belonging |
| 556 | // to those packages by comparing inode no.s of /mnt/runtime/write and /storage |
| 557 | if (storageSb.st_dev == mntWriteStat.st_dev && storageSb.st_ino == mntWriteStat.st_ino) { |
| 558 | return VoldNativeService::REMOUNT_MODE_FULL; |
| 559 | } |
| 560 | |
| 561 | std::string obbMountFile = |
| 562 | StringPrintf("/mnt/user/%d/package/%s/obb_mount", userId, packagesForUid[0].c_str()); |
| 563 | if (access(obbMountFile.c_str(), F_OK) == 0) { |
| 564 | return VoldNativeService::REMOUNT_MODE_INSTALLER; |
| 565 | } |
| 566 | |
| 567 | // Some packages don't have access to external storage and processes belonging to |
| 568 | // those packages don't have anything mounted at /storage. So, identify those |
| 569 | // processes by comparing inode no.s of /mnt/user/%d/package/%s |
| 570 | // and /storage |
| 571 | for (auto& package : packagesForUid) { |
| 572 | std::string sandbox = StringPrintf("/mnt/user/%d/package/%s", userId, package.c_str()); |
| 573 | struct stat sandboxStat; |
| 574 | if (TEMP_FAILURE_RETRY(stat(sandbox.c_str(), &sandboxStat)) == -1) { |
| 575 | PLOG(ERROR) << "Failed to stat " << sandbox; |
| 576 | return -1; |
| 577 | } |
| 578 | if (storageSb.st_dev == sandboxStat.st_dev && storageSb.st_ino == sandboxStat.st_ino) { |
| 579 | return VoldNativeService::REMOUNT_MODE_WRITE; |
| 580 | } |
| 581 | } |
| 582 | return VoldNativeService::REMOUNT_MODE_NONE; |
| 583 | } |
| 584 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 585 | int VolumeManager::prepareSandboxes(userid_t userId, const std::vector<std::string>& packageNames, |
| 586 | const std::vector<std::string>& visibleVolLabels) { |
| 587 | if (visibleVolLabels.empty()) { |
| 588 | return 0; |
| 589 | } |
| 590 | for (auto& volumeLabel : visibleVolLabels) { |
| 591 | std::string volumeRoot(StringPrintf("/mnt/runtime/write/%s", volumeLabel.c_str())); |
| 592 | bool isVolPrimaryEmulated = (volumeLabel == mPrimary->getLabel() && mPrimary->isEmulated()); |
| 593 | if (isVolPrimaryEmulated) { |
| 594 | StringAppendF(&volumeRoot, "/%d", userId); |
| 595 | if (fs_prepare_dir(volumeRoot.c_str(), 0755, AID_ROOT, AID_ROOT) != 0) { |
| 596 | PLOG(ERROR) << "fs_prepare_dir failed on " << volumeRoot; |
| 597 | return -errno; |
| 598 | } |
| 599 | } |
| 600 | |
| 601 | std::string sandboxRoot = |
| 602 | prepareSubDirs(volumeRoot, "Android/sandbox/", 0700, AID_ROOT, AID_ROOT); |
| 603 | if (sandboxRoot.empty()) { |
| 604 | return -errno; |
| 605 | } |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 606 | |
| 607 | if (!createPkgSpecificDirRoots(volumeRoot)) { |
| 608 | return -errno; |
| 609 | } |
| 610 | |
| 611 | std::string mntTargetRoot = StringPrintf("/mnt/user/%d", userId); |
| 612 | if (fs_prepare_dir(mntTargetRoot.c_str(), 0751, AID_ROOT, AID_ROOT) != 0) { |
| 613 | PLOG(ERROR) << "fs_prepare_dir failed on " << mntTargetRoot; |
| 614 | return -errno; |
| 615 | } |
| 616 | mntTargetRoot.append("/package"); |
| 617 | if (fs_prepare_dir(mntTargetRoot.c_str(), 0700, AID_ROOT, AID_ROOT) != 0) { |
| 618 | PLOG(ERROR) << "fs_prepare_dir failed on " << mntTargetRoot; |
| 619 | return -errno; |
| 620 | } |
| 621 | |
| 622 | for (auto& packageName : packageNames) { |
| 623 | const auto& it = mAppIds.find(packageName); |
| 624 | if (it == mAppIds.end()) { |
| 625 | PLOG(ERROR) << "appId is not available for " << packageName; |
| 626 | continue; |
| 627 | } |
| 628 | appid_t appId = it->second; |
| 629 | std::string sandboxId = mSandboxIds[appId]; |
| 630 | uid_t uid = multiuser_get_uid(userId, appId); |
| 631 | |
| 632 | // [1] Create /mnt/runtime/write/emulated/0/Android/sandbox/<sandboxId> |
| 633 | // [2] Create /mnt/user/0/package/<packageName>/emulated/0 |
| 634 | // Mount [1] at [2] |
| 635 | std::string pkgSandboxSourceDir = prepareSandboxSource(uid, sandboxId, sandboxRoot); |
| 636 | if (pkgSandboxSourceDir.empty()) { |
| 637 | return -errno; |
| 638 | } |
| 639 | std::string pkgSandboxTargetDir = prepareSandboxTarget( |
| 640 | packageName, uid, volumeLabel, mntTargetRoot, isVolPrimaryEmulated); |
| 641 | if (pkgSandboxTargetDir.empty()) { |
| 642 | return -errno; |
| 643 | } |
| 644 | if (umount2(pkgSandboxTargetDir.c_str(), MNT_DETACH) == -1 && errno != EINVAL && |
| 645 | errno != ENOENT) { |
| 646 | PLOG(ERROR) << "Failed to unmount " << pkgSandboxTargetDir; |
| 647 | return -errno; |
| 648 | } |
| 649 | if (TEMP_FAILURE_RETRY(mount(pkgSandboxSourceDir.c_str(), pkgSandboxTargetDir.c_str(), |
| 650 | nullptr, MS_BIND | MS_REC, nullptr)) == -1) { |
| 651 | PLOG(ERROR) << "Failed to mount " << pkgSandboxSourceDir << " at " |
| 652 | << pkgSandboxTargetDir; |
| 653 | return -errno; |
| 654 | } |
| 655 | if (TEMP_FAILURE_RETRY(mount(nullptr, pkgSandboxTargetDir.c_str(), nullptr, |
| 656 | MS_SLAVE | MS_REC, nullptr)) == -1) { |
| 657 | PLOG(ERROR) << "Failed to mount " << pkgSandboxSourceDir << " at " |
| 658 | << pkgSandboxTargetDir; |
| 659 | return -errno; |
| 660 | } |
| 661 | |
| 662 | // Create Android/{data,media,obb}/<packageName> segments at |
| 663 | // [1] /mnt/runtime/write/emulated/0/ and |
| 664 | // [2] /mnt/runtime/write/emulated/0/Android/sandbox/<sandboxId>/emulated/0/ |
| 665 | if (!createPkgSpecificDirs(packageName, uid, volumeRoot, pkgSandboxSourceDir)) { |
| 666 | return -errno; |
| 667 | } |
| 668 | |
| 669 | if (volumeLabel == mPrimary->getLabel()) { |
| 670 | // Create [1] /mnt/user/0/package/<packageName>/self/ |
| 671 | // Already created [2] /mnt/user/0/package/<packageName>/emulated/0 |
| 672 | // Mount [2] at [1] |
| 673 | std::string pkgPrimaryTargetDir = |
| 674 | StringPrintf("%s/%s/self", mntTargetRoot.c_str(), packageName.c_str()); |
| 675 | if (fs_prepare_dir(pkgPrimaryTargetDir.c_str(), 0755, uid, uid) != 0) { |
| 676 | PLOG(ERROR) << "Failed to fs_prepare_dir on " << pkgPrimaryTargetDir; |
| 677 | return -errno; |
| 678 | } |
| 679 | StringAppendF(&pkgPrimaryTargetDir, "/primary"); |
| 680 | std::string primarySource(mPrimary->getPath()); |
| 681 | if (isVolPrimaryEmulated) { |
| 682 | StringAppendF(&primarySource, "/%d", userId); |
| 683 | } |
| 684 | if (TEMP_FAILURE_RETRY(unlink(pkgPrimaryTargetDir.c_str()))) { |
| 685 | if (errno != ENOENT) { |
| 686 | PLOG(ERROR) << "Failed to unlink " << pkgPrimaryTargetDir; |
| 687 | } |
| 688 | } |
| 689 | if (TEMP_FAILURE_RETRY(symlink(primarySource.c_str(), pkgPrimaryTargetDir.c_str()))) { |
| 690 | PLOG(ERROR) << "Failed to link " << primarySource << " at " |
| 691 | << pkgPrimaryTargetDir; |
| 692 | return -errno; |
| 693 | } |
| 694 | } |
| 695 | } |
| 696 | } |
| 697 | mountPkgSpecificDirsForRunningProcs(userId, packageNames, visibleVolLabels); |
| 698 | return 0; |
| 699 | } |
| 700 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 701 | std::string VolumeManager::prepareSubDirs(const std::string& pathPrefix, const std::string& subDirs, |
| 702 | mode_t mode, uid_t uid, gid_t gid) { |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 703 | std::string path(pathPrefix); |
| 704 | std::vector<std::string> subDirList = android::base::Split(subDirs, "/"); |
| 705 | for (size_t i = 0; i < subDirList.size(); ++i) { |
| 706 | std::string subDir = subDirList[i]; |
| 707 | if (subDir.empty()) { |
| 708 | continue; |
| 709 | } |
| 710 | StringAppendF(&path, "/%s", subDir.c_str()); |
| 711 | if (fs_prepare_dir(path.c_str(), mode, uid, gid) != 0) { |
| 712 | PLOG(ERROR) << "fs_prepare_dir failed on " << path; |
| 713 | return kEmptyString; |
| 714 | } |
| 715 | } |
| 716 | return path; |
| 717 | } |
| 718 | |
| 719 | std::string VolumeManager::prepareSandboxSource(uid_t uid, const std::string& sandboxId, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 720 | const std::string& sandboxRootDir) { |
Sudheer Shanka | f768c27 | 2018-08-04 10:10:27 -0700 | [diff] [blame] | 721 | std::string sandboxSourceDir(sandboxRootDir); |
Sudheer Shanka | 51a38da | 2018-10-18 08:51:31 -0700 | [diff] [blame] | 722 | StringAppendF(&sandboxSourceDir, "/%s", sandboxId.c_str()); |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 723 | if (fs_prepare_dir(sandboxSourceDir.c_str(), 0755, uid, uid) != 0) { |
| 724 | PLOG(ERROR) << "fs_prepare_dir failed on " << sandboxSourceDir; |
| 725 | return kEmptyString; |
| 726 | } |
| 727 | return sandboxSourceDir; |
| 728 | } |
| 729 | |
| 730 | std::string VolumeManager::prepareSandboxTarget(const std::string& packageName, uid_t uid, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 731 | const std::string& volumeLabel, |
| 732 | const std::string& mntTargetRootDir, |
| 733 | bool isUserDependent) { |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 734 | std::string segment; |
| 735 | if (isUserDependent) { |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 736 | segment = StringPrintf("%s/%s/%d/", packageName.c_str(), volumeLabel.c_str(), |
| 737 | multiuser_get_user_id(uid)); |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 738 | } else { |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 739 | segment = StringPrintf("%s/%s/", packageName.c_str(), volumeLabel.c_str()); |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 740 | } |
| 741 | return prepareSubDirs(mntTargetRootDir, segment.c_str(), 0755, uid, uid); |
| 742 | } |
| 743 | |
| 744 | std::string VolumeManager::preparePkgDataSource(const std::string& packageName, uid_t uid, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 745 | const std::string& dataRootDir) { |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 746 | std::string dataSourceDir = StringPrintf("%s/%s", dataRootDir.c_str(), packageName.c_str()); |
| 747 | if (fs_prepare_dir(dataSourceDir.c_str(), 0755, uid, uid) != 0) { |
| 748 | PLOG(ERROR) << "fs_prepare_dir failed on " << dataSourceDir; |
| 749 | return kEmptyString; |
| 750 | } |
| 751 | return dataSourceDir; |
| 752 | } |
| 753 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 754 | bool VolumeManager::createPkgSpecificDirRoots(const std::string& volumeRoot) { |
| 755 | std::string volumeAndroidRoot = StringPrintf("%s/Android", volumeRoot.c_str()); |
| 756 | if (fs_prepare_dir(volumeAndroidRoot.c_str(), 0700, AID_ROOT, AID_ROOT) != 0) { |
| 757 | PLOG(ERROR) << "fs_prepare_dir failed on " << volumeAndroidRoot; |
| 758 | return false; |
| 759 | } |
| 760 | std::array<std::string, 3> dirs = {"data", "media", "obb"}; |
| 761 | for (auto& dir : dirs) { |
| 762 | std::string path = StringPrintf("%s/%s", volumeAndroidRoot.c_str(), dir.c_str()); |
| 763 | if (fs_prepare_dir(path.c_str(), 0700, AID_ROOT, AID_ROOT) != 0) { |
| 764 | PLOG(ERROR) << "fs_prepare_dir failed on " << path; |
| 765 | return false; |
| 766 | } |
| 767 | } |
| 768 | return true; |
| 769 | } |
| 770 | |
| 771 | bool VolumeManager::createPkgSpecificDirs(const std::string& packageName, uid_t uid, |
| 772 | const std::string& volumeRoot, |
| 773 | const std::string& sandboxDirRoot) { |
| 774 | std::array<std::string, 3> dirs = {"data", "media", "obb"}; |
| 775 | for (auto& dir : dirs) { |
| 776 | std::string sourceDir = StringPrintf("%s/Android/%s", volumeRoot.c_str(), dir.c_str()); |
| 777 | if (prepareSubDirs(sourceDir, packageName, 0755, uid, uid).empty()) { |
| 778 | return false; |
| 779 | } |
| 780 | std::string sandboxSegment = |
| 781 | StringPrintf("Android/%s/%s/", dir.c_str(), packageName.c_str()); |
| 782 | if (prepareSubDirs(sandboxDirRoot, sandboxSegment, 0755, uid, uid).empty()) { |
| 783 | return false; |
| 784 | } |
| 785 | } |
| 786 | return true; |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 787 | } |
| 788 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 789 | int VolumeManager::onUserAdded(userid_t userId, int userSerialNumber) { |
| 790 | mAddedUsers[userId] = userSerialNumber; |
| 791 | return 0; |
| 792 | } |
| 793 | |
| 794 | int VolumeManager::onUserRemoved(userid_t userId) { |
| 795 | mAddedUsers.erase(userId); |
| 796 | return 0; |
| 797 | } |
| 798 | |
Sudheer Shanka | 69bc40f | 2018-10-25 11:06:55 -0700 | [diff] [blame] | 799 | int VolumeManager::onUserStarted(userid_t userId, const std::vector<std::string>& packageNames, |
| 800 | const std::vector<int>& appIds, |
| 801 | const std::vector<std::string>& sandboxIds) { |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 802 | LOG(VERBOSE) << "onUserStarted: " << userId; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 803 | // Note that sometimes the system will spin up processes from Zygote |
| 804 | // before actually starting the user, so we're okay if Zygote |
| 805 | // already created this directory. |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 806 | std::string path(StringPrintf("%s/%d", kPathUserMount, userId)); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 807 | fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT); |
| 808 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 809 | mStartedUsers.insert(userId); |
Sudheer Shanka | 62bbb2b | 2018-08-01 01:09:10 -0700 | [diff] [blame] | 810 | mUserPackages[userId] = packageNames; |
Sudheer Shanka | 69bc40f | 2018-10-25 11:06:55 -0700 | [diff] [blame] | 811 | for (size_t i = 0; i < packageNames.size(); ++i) { |
| 812 | mAppIds[packageNames[i]] = appIds[i]; |
| 813 | mSandboxIds[appIds[i]] = sandboxIds[i]; |
| 814 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 815 | if (mPrimary) { |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 816 | linkPrimary(userId); |
| 817 | } |
| 818 | if (GetBoolProperty(kIsolatedStorage, false)) { |
| 819 | std::vector<std::string> visibleVolLabels; |
| 820 | for (auto& volId : mVisibleVolumeIds) { |
| 821 | auto vol = findVolume(volId); |
| 822 | userid_t mountUserId = vol->getMountUserId(); |
| 823 | if (mountUserId == userId || vol->isEmulated()) { |
| 824 | visibleVolLabels.push_back(vol->getLabel()); |
| 825 | } |
| 826 | } |
| 827 | if (prepareSandboxes(userId, packageNames, visibleVolLabels) != 0) { |
| 828 | return -errno; |
| 829 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 830 | } |
| 831 | return 0; |
| 832 | } |
| 833 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 834 | int VolumeManager::onUserStopped(userid_t userId) { |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 835 | LOG(VERBOSE) << "onUserStopped: " << userId; |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 836 | mStartedUsers.erase(userId); |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 837 | |
Sudheer Shanka | 9acc6d4 | 2018-10-06 19:03:02 -0700 | [diff] [blame] | 838 | if (GetBoolProperty(kIsolatedStorage, false)) { |
| 839 | mUserPackages.erase(userId); |
| 840 | std::string mntTargetDir = StringPrintf("/mnt/user/%d", userId); |
| 841 | if (android::vold::UnmountTree(mntTargetDir) != 0) { |
| 842 | PLOG(ERROR) << "unmountTree on " << mntTargetDir << " failed"; |
| 843 | return -errno; |
| 844 | } |
| 845 | if (android::vold::DeleteDirContentsAndDir(mntTargetDir) < 0) { |
| 846 | PLOG(ERROR) << "DeleteDirContentsAndDir failed on " << mntTargetDir; |
| 847 | return -errno; |
| 848 | } |
| 849 | LOG(VERBOSE) << "Success: DeleteDirContentsAndDir on " << mntTargetDir; |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 850 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 851 | return 0; |
| 852 | } |
| 853 | |
Sudheer Shanka | d484aa9 | 2018-07-31 10:07:34 -0700 | [diff] [blame] | 854 | int VolumeManager::addAppIds(const std::vector<std::string>& packageNames, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 855 | const std::vector<int32_t>& appIds) { |
Sudheer Shanka | 62bbb2b | 2018-08-01 01:09:10 -0700 | [diff] [blame] | 856 | for (size_t i = 0; i < packageNames.size(); ++i) { |
| 857 | mAppIds[packageNames[i]] = appIds[i]; |
| 858 | } |
Sudheer Shanka | d484aa9 | 2018-07-31 10:07:34 -0700 | [diff] [blame] | 859 | return 0; |
| 860 | } |
| 861 | |
| 862 | int VolumeManager::addSandboxIds(const std::vector<int32_t>& appIds, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 863 | const std::vector<std::string>& sandboxIds) { |
Sudheer Shanka | 62bbb2b | 2018-08-01 01:09:10 -0700 | [diff] [blame] | 864 | for (size_t i = 0; i < appIds.size(); ++i) { |
| 865 | mSandboxIds[appIds[i]] = sandboxIds[i]; |
| 866 | } |
Sudheer Shanka | d484aa9 | 2018-07-31 10:07:34 -0700 | [diff] [blame] | 867 | return 0; |
| 868 | } |
| 869 | |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 870 | int VolumeManager::prepareSandboxForApp(const std::string& packageName, appid_t appId, |
| 871 | const std::string& sandboxId, userid_t userId) { |
Sudheer Shanka | c756209 | 2018-08-24 10:20:56 -0700 | [diff] [blame] | 872 | if (!GetBoolProperty(kIsolatedStorage, false)) { |
| 873 | return 0; |
| 874 | } else if (mStartedUsers.find(userId) == mStartedUsers.end()) { |
| 875 | // User not started, no need to do anything now. Required bind mounts for the package will |
| 876 | // be created when the user starts. |
| 877 | return 0; |
| 878 | } |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 879 | LOG(VERBOSE) << "prepareSandboxForApp: " << packageName << ", appId=" << appId |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 880 | << ", sandboxId=" << sandboxId << ", userId=" << userId; |
Sudheer Shanka | c756209 | 2018-08-24 10:20:56 -0700 | [diff] [blame] | 881 | mUserPackages[userId].push_back(packageName); |
| 882 | mAppIds[packageName] = appId; |
| 883 | mSandboxIds[appId] = sandboxId; |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 884 | |
| 885 | std::vector<std::string> visibleVolLabels; |
| 886 | for (auto& volId : mVisibleVolumeIds) { |
| 887 | auto vol = findVolume(volId); |
| 888 | userid_t mountUserId = vol->getMountUserId(); |
| 889 | if (mountUserId == userId || vol->isEmulated()) { |
| 890 | visibleVolLabels.push_back(vol->getLabel()); |
| 891 | } |
Sudheer Shanka | c756209 | 2018-08-24 10:20:56 -0700 | [diff] [blame] | 892 | } |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 893 | return prepareSandboxes(userId, {packageName}, visibleVolLabels); |
Sudheer Shanka | c756209 | 2018-08-24 10:20:56 -0700 | [diff] [blame] | 894 | } |
| 895 | |
Sudheer Shanka | 69bc40f | 2018-10-25 11:06:55 -0700 | [diff] [blame] | 896 | int VolumeManager::destroySandboxForApp(const std::string& packageName, |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 897 | const std::string& sandboxId, userid_t userId) { |
| 898 | if (!GetBoolProperty(kIsolatedStorage, false)) { |
| 899 | return 0; |
| 900 | } |
Sudheer Shanka | 69bc40f | 2018-10-25 11:06:55 -0700 | [diff] [blame] | 901 | LOG(VERBOSE) << "destroySandboxForApp: " << packageName << ", sandboxId=" << sandboxId |
| 902 | << ", userId=" << userId; |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 903 | auto& userPackages = mUserPackages[userId]; |
Sudheer Shanka | ba0c62f | 2018-12-16 18:22:34 -0800 | [diff] [blame] | 904 | userPackages.erase(std::remove(userPackages.begin(), userPackages.end(), packageName), |
| 905 | userPackages.end()); |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 906 | // If the package is not uninstalled in any other users, remove appId and sandboxId |
| 907 | // corresponding to it from the internal state. |
| 908 | bool installedInAnyUser = false; |
| 909 | for (auto& it : mUserPackages) { |
| 910 | auto& packages = it.second; |
| 911 | if (std::find(packages.begin(), packages.end(), packageName) != packages.end()) { |
| 912 | installedInAnyUser = true; |
| 913 | break; |
| 914 | } |
| 915 | } |
| 916 | if (!installedInAnyUser) { |
Sudheer Shanka | 69bc40f | 2018-10-25 11:06:55 -0700 | [diff] [blame] | 917 | const auto& entry = mAppIds.find(packageName); |
| 918 | if (entry != mAppIds.end()) { |
| 919 | mSandboxIds.erase(entry->second); |
| 920 | mAppIds.erase(entry); |
| 921 | } |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 922 | } |
| 923 | |
| 924 | std::vector<std::string> visibleVolLabels; |
| 925 | for (auto& volId : mVisibleVolumeIds) { |
| 926 | auto vol = findVolume(volId); |
| 927 | userid_t mountUserId = vol->getMountUserId(); |
| 928 | if (mountUserId == userId || vol->isEmulated()) { |
| 929 | if (destroySandboxForAppOnVol(packageName, sandboxId, userId, vol->getLabel()) < 0) { |
| 930 | return -errno; |
| 931 | } |
| 932 | } |
| 933 | } |
| 934 | return 0; |
| 935 | } |
| 936 | |
| 937 | int VolumeManager::destroySandboxForAppOnVol(const std::string& packageName, |
| 938 | const std::string& sandboxId, userid_t userId, |
| 939 | const std::string& volLabel) { |
| 940 | LOG(VERBOSE) << "destroySandboxOnVol: " << packageName << ", userId=" << userId |
| 941 | << ", volLabel=" << volLabel; |
| 942 | std::string pkgSandboxTarget = |
| 943 | StringPrintf("/mnt/user/%d/package/%s", userId, packageName.c_str()); |
| 944 | if (android::vold::UnmountTree(pkgSandboxTarget)) { |
| 945 | PLOG(ERROR) << "UnmountTree failed on " << pkgSandboxTarget; |
| 946 | } |
| 947 | |
| 948 | std::string sandboxDir = StringPrintf("/mnt/runtime/write/%s", volLabel.c_str()); |
| 949 | if (volLabel == mPrimary->getLabel() && mPrimary->isEmulated()) { |
| 950 | StringAppendF(&sandboxDir, "/%d", userId); |
| 951 | } |
Sudheer Shanka | 51a38da | 2018-10-18 08:51:31 -0700 | [diff] [blame] | 952 | StringAppendF(&sandboxDir, "/Android/sandbox/%s", sandboxId.c_str()); |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 953 | |
| 954 | if (android::vold::DeleteDirContentsAndDir(sandboxDir) < 0) { |
| 955 | PLOG(ERROR) << "DeleteDirContentsAndDir failed on " << sandboxDir; |
| 956 | return -errno; |
| 957 | } |
| 958 | return 0; |
| 959 | } |
| 960 | |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 961 | int VolumeManager::onSecureKeyguardStateChanged(bool isShowing) { |
| 962 | mSecureKeyguardShowing = isShowing; |
| 963 | if (!mSecureKeyguardShowing) { |
| 964 | // Now that secure keyguard has been dismissed, process |
| 965 | // any pending disks |
| 966 | for (const auto& disk : mPendingDisks) { |
| 967 | disk->create(); |
| 968 | mDisks.push_back(disk); |
| 969 | } |
| 970 | mPendingDisks.clear(); |
| 971 | } |
| 972 | return 0; |
| 973 | } |
| 974 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 975 | int VolumeManager::onVolumeMounted(android::vold::VolumeBase* vol) { |
| 976 | if (!GetBoolProperty(kIsolatedStorage, false)) { |
| 977 | return 0; |
| 978 | } |
| 979 | |
| 980 | if ((vol->getMountFlags() & android::vold::VoldNativeService::MOUNT_FLAG_VISIBLE) == 0) { |
| 981 | return 0; |
| 982 | } |
| 983 | |
| 984 | mVisibleVolumeIds.insert(vol->getId()); |
| 985 | userid_t mountUserId = vol->getMountUserId(); |
| 986 | if ((vol->getMountFlags() & android::vold::VoldNativeService::MOUNT_FLAG_PRIMARY) != 0) { |
| 987 | // We don't want to create another shared_ptr here because then we will end up with |
| 988 | // two shared_ptrs owning the underlying pointer without sharing it. |
| 989 | mPrimary = findVolume(vol->getId()); |
| 990 | for (userid_t userId : mStartedUsers) { |
| 991 | if (linkPrimary(userId) != 0) { |
| 992 | return -errno; |
| 993 | } |
| 994 | } |
| 995 | } |
| 996 | if (vol->isEmulated()) { |
| 997 | for (userid_t userId : mStartedUsers) { |
| 998 | if (prepareSandboxes(userId, mUserPackages[userId], {vol->getLabel()}) != 0) { |
| 999 | return -errno; |
| 1000 | } |
| 1001 | } |
| 1002 | } else if (mStartedUsers.find(mountUserId) != mStartedUsers.end()) { |
| 1003 | if (prepareSandboxes(mountUserId, mUserPackages[mountUserId], {vol->getLabel()}) != 0) { |
| 1004 | return -errno; |
| 1005 | } |
| 1006 | } |
| 1007 | return 0; |
| 1008 | } |
| 1009 | |
| 1010 | int VolumeManager::onVolumeUnmounted(android::vold::VolumeBase* vol) { |
| 1011 | if (!GetBoolProperty(kIsolatedStorage, false)) { |
| 1012 | return 0; |
| 1013 | } |
| 1014 | |
| 1015 | if (mVisibleVolumeIds.erase(vol->getId()) == 0) { |
| 1016 | return 0; |
| 1017 | } |
| 1018 | |
| 1019 | if ((vol->getMountFlags() & android::vold::VoldNativeService::MOUNT_FLAG_PRIMARY) != 0) { |
| 1020 | mPrimary = nullptr; |
| 1021 | } |
| 1022 | |
| 1023 | LOG(VERBOSE) << "visibleVolumeUnmounted: " << vol; |
| 1024 | userid_t mountUserId = vol->getMountUserId(); |
| 1025 | if (vol->isEmulated()) { |
| 1026 | for (userid_t userId : mStartedUsers) { |
| 1027 | if (destroySandboxesForVol(vol, userId) != 0) { |
| 1028 | return -errno; |
| 1029 | } |
| 1030 | } |
| 1031 | } else if (mStartedUsers.find(mountUserId) != mStartedUsers.end()) { |
| 1032 | if (destroySandboxesForVol(vol, mountUserId) != 0) { |
| 1033 | return -errno; |
| 1034 | } |
| 1035 | } |
| 1036 | return 0; |
| 1037 | } |
| 1038 | |
| 1039 | int VolumeManager::destroySandboxesForVol(android::vold::VolumeBase* vol, userid_t userId) { |
| 1040 | LOG(VERBOSE) << "destroysandboxesForVol: " << vol << " for user=" << userId; |
| 1041 | const std::vector<std::string>& packageNames = mUserPackages[userId]; |
| 1042 | for (auto& packageName : packageNames) { |
| 1043 | std::string volSandboxRoot = StringPrintf("/mnt/user/%d/package/%s/%s", userId, |
| 1044 | packageName.c_str(), vol->getLabel().c_str()); |
| 1045 | if (android::vold::UnmountTree(volSandboxRoot) != 0) { |
| 1046 | PLOG(ERROR) << "unmountTree on " << volSandboxRoot << " failed"; |
| 1047 | continue; |
| 1048 | } |
| 1049 | if (android::vold::DeleteDirContentsAndDir(volSandboxRoot) < 0) { |
| 1050 | PLOG(ERROR) << "DeleteDirContentsAndDir failed on " << volSandboxRoot; |
| 1051 | continue; |
| 1052 | } |
| 1053 | LOG(VERBOSE) << "Success: DeleteDirContentsAndDir on " << volSandboxRoot; |
| 1054 | } |
| 1055 | return 0; |
| 1056 | } |
| 1057 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1058 | int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol) { |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 1059 | if (GetBoolProperty(kIsolatedStorage, false)) { |
| 1060 | return 0; |
| 1061 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1062 | mPrimary = vol; |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 1063 | for (userid_t userId : mStartedUsers) { |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 1064 | linkPrimary(userId); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1065 | } |
| 1066 | return 0; |
| 1067 | } |
| 1068 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1069 | int VolumeManager::remountUid(uid_t uid, const std::string& mode) { |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 1070 | // If the isolated storage is enabled, return -1 since in the isolated storage world, there |
| 1071 | // are no longer any runtime storage permissions, so this shouldn't be called anymore. |
| 1072 | if (GetBoolProperty(kIsolatedStorage, false)) { |
| 1073 | return -1; |
| 1074 | } |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1075 | LOG(DEBUG) << "Remounting " << uid << " as mode " << mode; |
| 1076 | |
| 1077 | DIR* dir; |
| 1078 | struct dirent* de; |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1079 | std::string rootName; |
| 1080 | std::string pidName; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1081 | int pidFd; |
| 1082 | int nsFd; |
| 1083 | struct stat sb; |
| 1084 | pid_t child; |
| 1085 | |
| 1086 | if (!(dir = opendir("/proc"))) { |
| 1087 | PLOG(ERROR) << "Failed to opendir"; |
| 1088 | return -1; |
| 1089 | } |
| 1090 | |
| 1091 | // Figure out root namespace to compare against below |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1092 | if (!android::vold::Readlinkat(dirfd(dir), "1/ns/mnt", &rootName)) { |
| 1093 | PLOG(ERROR) << "Failed to read root namespace"; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1094 | closedir(dir); |
| 1095 | return -1; |
| 1096 | } |
| 1097 | |
| 1098 | // Poke through all running PIDs look for apps running as UID |
| 1099 | while ((de = readdir(dir))) { |
Jeff Vander Stoep | 5889083 | 2017-10-23 17:12:31 -0700 | [diff] [blame] | 1100 | pid_t pid; |
| 1101 | if (de->d_type != DT_DIR) continue; |
| 1102 | if (!android::base::ParseInt(de->d_name, &pid)) continue; |
| 1103 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1104 | pidFd = -1; |
| 1105 | nsFd = -1; |
| 1106 | |
| 1107 | pidFd = openat(dirfd(dir), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC); |
| 1108 | if (pidFd < 0) { |
| 1109 | goto next; |
| 1110 | } |
| 1111 | if (fstat(pidFd, &sb) != 0) { |
| 1112 | PLOG(WARNING) << "Failed to stat " << de->d_name; |
| 1113 | goto next; |
| 1114 | } |
| 1115 | if (sb.st_uid != uid) { |
| 1116 | goto next; |
| 1117 | } |
| 1118 | |
| 1119 | // Matches so far, but refuse to touch if in root namespace |
| 1120 | LOG(DEBUG) << "Found matching PID " << de->d_name; |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1121 | if (!android::vold::Readlinkat(pidFd, "ns/mnt", &pidName)) { |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1122 | PLOG(WARNING) << "Failed to read namespace for " << de->d_name; |
| 1123 | goto next; |
| 1124 | } |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1125 | if (rootName == pidName) { |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1126 | LOG(WARNING) << "Skipping due to root namespace"; |
| 1127 | goto next; |
| 1128 | } |
| 1129 | |
| 1130 | // We purposefully leave the namespace open across the fork |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 1131 | nsFd = openat(pidFd, "ns/mnt", O_RDONLY); // not O_CLOEXEC |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1132 | if (nsFd < 0) { |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 1133 | PLOG(WARNING) << "Failed to open namespace for " << de->d_name; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1134 | goto next; |
| 1135 | } |
| 1136 | |
| 1137 | if (!(child = fork())) { |
| 1138 | if (setns(nsFd, CLONE_NEWNS) != 0) { |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 1139 | PLOG(ERROR) << "Failed to setns for " << de->d_name; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1140 | _exit(1); |
| 1141 | } |
| 1142 | |
Sudheer Shanka | 99d304a | 2018-09-27 14:53:51 -0700 | [diff] [blame] | 1143 | android::vold::UnmountTree("/storage/"); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1144 | |
| 1145 | std::string storageSource; |
| 1146 | if (mode == "default") { |
Jeff Sharkey | 1bd078f | 2015-08-06 11:40:00 -0700 | [diff] [blame] | 1147 | storageSource = "/mnt/runtime/default"; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1148 | } else if (mode == "read") { |
Jeff Sharkey | 1bd078f | 2015-08-06 11:40:00 -0700 | [diff] [blame] | 1149 | storageSource = "/mnt/runtime/read"; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1150 | } else if (mode == "write") { |
Jeff Sharkey | 1bd078f | 2015-08-06 11:40:00 -0700 | [diff] [blame] | 1151 | storageSource = "/mnt/runtime/write"; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1152 | } else { |
| 1153 | // Sane default of no storage visible |
| 1154 | _exit(0); |
| 1155 | } |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 1156 | if (TEMP_FAILURE_RETRY( |
| 1157 | mount(storageSource.c_str(), "/storage", NULL, MS_BIND | MS_REC, NULL)) == -1) { |
| 1158 | PLOG(ERROR) << "Failed to mount " << storageSource << " for " << de->d_name; |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 1159 | _exit(1); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1160 | } |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 1161 | if (TEMP_FAILURE_RETRY(mount(NULL, "/storage", NULL, MS_REC | MS_SLAVE, NULL)) == -1) { |
| 1162 | PLOG(ERROR) << "Failed to set MS_SLAVE to /storage for " << de->d_name; |
Hidehiko Abe | 674bed1 | 2016-03-09 16:42:10 +0900 | [diff] [blame] | 1163 | _exit(1); |
| 1164 | } |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 1165 | |
| 1166 | // Mount user-specific symlink helper into place |
| 1167 | userid_t user_id = multiuser_get_user_id(uid); |
| 1168 | std::string userSource(StringPrintf("/mnt/user/%d", user_id)); |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 1169 | if (TEMP_FAILURE_RETRY( |
| 1170 | mount(userSource.c_str(), "/storage/self", NULL, MS_BIND, NULL)) == -1) { |
| 1171 | PLOG(ERROR) << "Failed to mount " << userSource << " for " << de->d_name; |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 1172 | _exit(1); |
| 1173 | } |
| 1174 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1175 | _exit(0); |
| 1176 | } |
| 1177 | |
| 1178 | if (child == -1) { |
| 1179 | PLOG(ERROR) << "Failed to fork"; |
| 1180 | goto next; |
| 1181 | } else { |
| 1182 | TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0)); |
| 1183 | } |
| 1184 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 1185 | next: |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 1186 | close(nsFd); |
| 1187 | close(pidFd); |
| 1188 | } |
| 1189 | closedir(dir); |
| 1190 | return 0; |
| 1191 | } |
| 1192 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1193 | int VolumeManager::reset() { |
| 1194 | // Tear down all existing disks/volumes and start from a blank slate so |
| 1195 | // newly connected framework hears all events. |
Gao Xiang | d263da8 | 2017-08-14 11:32:13 +0800 | [diff] [blame] | 1196 | if (mInternalEmulated != nullptr) { |
| 1197 | mInternalEmulated->destroy(); |
| 1198 | mInternalEmulated->create(); |
| 1199 | } |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 1200 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1201 | disk->destroy(); |
| 1202 | disk->create(); |
| 1203 | } |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 1204 | updateVirtualDisk(); |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 1205 | mAddedUsers.clear(); |
| 1206 | mStartedUsers.clear(); |
Sudheer Shanka | 62bbb2b | 2018-08-01 01:09:10 -0700 | [diff] [blame] | 1207 | |
| 1208 | mUserPackages.clear(); |
| 1209 | mAppIds.clear(); |
| 1210 | mSandboxIds.clear(); |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 1211 | mVisibleVolumeIds.clear(); |
Sudheer Shanka | 3a7ee5c | 2018-08-07 17:10:11 -0700 | [diff] [blame] | 1212 | |
| 1213 | // For unmounting dirs under /mnt/user/<user-id>/package/<package-name> |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 1214 | android::vold::UnmountTree("/mnt/user/"); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1215 | return 0; |
| 1216 | } |
| 1217 | |
Keun-young Park | a5bbb5e | 2017-03-13 18:02:50 -0700 | [diff] [blame] | 1218 | // Can be called twice (sequentially) during shutdown. should be safe for that. |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1219 | int VolumeManager::shutdown() { |
Keun-young Park | a5bbb5e | 2017-03-13 18:02:50 -0700 | [diff] [blame] | 1220 | if (mInternalEmulated == nullptr) { |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 1221 | return 0; // already shutdown |
Keun-young Park | a5bbb5e | 2017-03-13 18:02:50 -0700 | [diff] [blame] | 1222 | } |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 1223 | android::vold::sSleepOnUnmount = false; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1224 | mInternalEmulated->destroy(); |
Keun-young Park | a5bbb5e | 2017-03-13 18:02:50 -0700 | [diff] [blame] | 1225 | mInternalEmulated = nullptr; |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 1226 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1227 | disk->destroy(); |
| 1228 | } |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 1229 | mStubVolumes.clear(); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1230 | mDisks.clear(); |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 1231 | mPendingDisks.clear(); |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 1232 | android::vold::sSleepOnUnmount = true; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1233 | return 0; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 1234 | } |
| 1235 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1236 | int VolumeManager::unmountAll() { |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 1237 | std::lock_guard<std::mutex> lock(mLock); |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 1238 | ATRACE_NAME("VolumeManager::unmountAll()"); |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 1239 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1240 | // First, try gracefully unmounting all known devices |
| 1241 | if (mInternalEmulated != nullptr) { |
| 1242 | mInternalEmulated->unmount(); |
| 1243 | } |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 1244 | for (const auto& stub : mStubVolumes) { |
| 1245 | stub->unmount(); |
| 1246 | } |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 1247 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1248 | disk->unmountAll(); |
| 1249 | } |
| 1250 | |
| 1251 | // Worst case we might have some stale mounts lurking around, so |
| 1252 | // force unmount those just to be safe. |
LongPing.WEI | 4f04606 | 2018-11-23 19:27:35 +0800 | [diff] [blame] | 1253 | FILE* fp = setmntent("/proc/mounts", "re"); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1254 | if (fp == NULL) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1255 | PLOG(ERROR) << "Failed to open /proc/mounts"; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1256 | return -errno; |
| 1257 | } |
| 1258 | |
| 1259 | // Some volumes can be stacked on each other, so force unmount in |
| 1260 | // reverse order to give us the best chance of success. |
| 1261 | std::list<std::string> toUnmount; |
| 1262 | mntent* mentry; |
| 1263 | while ((mentry = getmntent(fp)) != NULL) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1264 | auto test = std::string(mentry->mnt_dir); |
Mark Salyzyn | 86e81e7 | 2018-09-20 10:09:27 -0700 | [diff] [blame] | 1265 | if ((StartsWith(test, "/mnt/") && |
| 1266 | #ifdef __ANDROID_DEBUGGABLE__ |
| 1267 | !StartsWith(test, "/mnt/scratch") && |
| 1268 | #endif |
| 1269 | !StartsWith(test, "/mnt/vendor") && !StartsWith(test, "/mnt/product")) || |
| 1270 | StartsWith(test, "/storage/")) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1271 | toUnmount.push_front(test); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1272 | } |
| 1273 | } |
| 1274 | endmntent(fp); |
| 1275 | |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 1276 | for (const auto& path : toUnmount) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1277 | LOG(DEBUG) << "Tearing down stale mount " << path; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1278 | android::vold::ForceUnmount(path); |
| 1279 | } |
| 1280 | |
| 1281 | return 0; |
| 1282 | } |
| 1283 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1284 | int VolumeManager::mkdirs(const std::string& path) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1285 | // Only offer to create directories for paths managed by vold |
Mark Salyzyn | 86e81e7 | 2018-09-20 10:09:27 -0700 | [diff] [blame] | 1286 | if (StartsWith(path, "/storage/")) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 1287 | // fs_mkdirs() does symlink checking and relative path enforcement |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1288 | return fs_mkdirs(path.c_str(), 0700); |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 1289 | } else { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1290 | LOG(ERROR) << "Failed to find mounted volume for " << path; |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 1291 | return -EINVAL; |
| 1292 | } |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 1293 | } |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1294 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1295 | int VolumeManager::createObb(const std::string& sourcePath, const std::string& sourceKey, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 1296 | int32_t ownerGid, std::string* outVolId) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1297 | int id = mNextObbId++; |
| 1298 | |
| 1299 | auto vol = std::shared_ptr<android::vold::VolumeBase>( |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 1300 | new android::vold::ObbVolume(id, sourcePath, sourceKey, ownerGid)); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1301 | vol->create(); |
| 1302 | |
| 1303 | mObbVolumes.push_back(vol); |
| 1304 | *outVolId = vol->getId(); |
| 1305 | return android::OK; |
| 1306 | } |
| 1307 | |
| 1308 | int VolumeManager::destroyObb(const std::string& volId) { |
| 1309 | auto i = mObbVolumes.begin(); |
| 1310 | while (i != mObbVolumes.end()) { |
| 1311 | if ((*i)->getId() == volId) { |
| 1312 | (*i)->destroy(); |
| 1313 | i = mObbVolumes.erase(i); |
| 1314 | } else { |
| 1315 | ++i; |
| 1316 | } |
| 1317 | } |
| 1318 | return android::OK; |
| 1319 | } |
| 1320 | |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 1321 | int VolumeManager::createStubVolume(const std::string& sourcePath, const std::string& mountPath, |
| 1322 | const std::string& fsType, const std::string& fsUuid, |
| 1323 | const std::string& fsLabel, std::string* outVolId) { |
| 1324 | int id = mNextStubVolumeId++; |
| 1325 | auto vol = std::shared_ptr<android::vold::VolumeBase>( |
| 1326 | new android::vold::StubVolume(id, sourcePath, mountPath, fsType, fsUuid, fsLabel)); |
| 1327 | vol->create(); |
| 1328 | |
| 1329 | mStubVolumes.push_back(vol); |
| 1330 | *outVolId = vol->getId(); |
| 1331 | return android::OK; |
| 1332 | } |
| 1333 | |
| 1334 | int VolumeManager::destroyStubVolume(const std::string& volId) { |
| 1335 | auto i = mStubVolumes.begin(); |
| 1336 | while (i != mStubVolumes.end()) { |
| 1337 | if ((*i)->getId() == volId) { |
| 1338 | (*i)->destroy(); |
| 1339 | i = mStubVolumes.erase(i); |
| 1340 | } else { |
| 1341 | ++i; |
| 1342 | } |
| 1343 | } |
| 1344 | return android::OK; |
| 1345 | } |
| 1346 | |
Risan | 8f6198d | 2018-10-26 20:56:45 -0600 | [diff] [blame] | 1347 | int VolumeManager::mountAppFuse(uid_t uid, int mountId, unique_fd* device_fd) { |
Risan | ac02a48 | 2018-10-31 21:59:47 -0600 | [diff] [blame] | 1348 | return android::vold::MountAppFuse(uid, mountId, device_fd); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1349 | } |
| 1350 | |
Risan | 8f6198d | 2018-10-26 20:56:45 -0600 | [diff] [blame] | 1351 | int VolumeManager::unmountAppFuse(uid_t uid, int mountId) { |
Risan | ac02a48 | 2018-10-31 21:59:47 -0600 | [diff] [blame] | 1352 | return android::vold::UnmountAppFuse(uid, mountId); |
Risan | 8f6198d | 2018-10-26 20:56:45 -0600 | [diff] [blame] | 1353 | } |
| 1354 | |
| 1355 | int VolumeManager::openAppFuseFile(uid_t uid, int mountId, int fileId, int flags) { |
Risan | ac02a48 | 2018-10-31 21:59:47 -0600 | [diff] [blame] | 1356 | return android::vold::OpenAppFuseFile(uid, mountId, fileId, flags); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1357 | } |