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> |
Ricky Wai | e96b34f | 2020-05-07 16:01:33 +0100 | [diff] [blame] | 22 | #include <limits.h> |
Yabin Cui | d1104f7 | 2015-01-02 13:28:28 -0800 | [diff] [blame] | 23 | #include <mntent.h> |
| 24 | #include <stdio.h> |
| 25 | #include <stdlib.h> |
| 26 | #include <string.h> |
| 27 | #include <sys/ioctl.h> |
| 28 | #include <sys/mount.h> |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 29 | #include <sys/stat.h> |
Elliott Hughes | 0e08e84 | 2017-05-18 09:08:24 -0700 | [diff] [blame] | 30 | #include <sys/sysmacros.h> |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 31 | #include <sys/types.h> |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 32 | #include <sys/wait.h> |
Yabin Cui | d1104f7 | 2015-01-02 13:28:28 -0800 | [diff] [blame] | 33 | #include <unistd.h> |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 34 | #include <array> |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 35 | |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 36 | #include <linux/kdev_t.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 37 | |
Jiyong Park | 8d21c92 | 2019-01-04 13:35:25 +0900 | [diff] [blame] | 38 | #include <ApexProperties.sysprop.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 39 | #include <android-base/logging.h> |
Jeff Vander Stoep | 5889083 | 2017-10-23 17:12:31 -0700 | [diff] [blame] | 40 | #include <android-base/parseint.h> |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 41 | #include <android-base/properties.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 42 | #include <android-base/stringprintf.h> |
Jeff Vander Stoep | 5889083 | 2017-10-23 17:12:31 -0700 | [diff] [blame] | 43 | #include <android-base/strings.h> |
Narayan Kamath | 02efdf5 | 2019-11-27 10:53:51 +0000 | [diff] [blame] | 44 | #include <async_safe/log.h> |
Jeff Vander Stoep | 5889083 | 2017-10-23 17:12:31 -0700 | [diff] [blame] | 45 | |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 46 | #include <cutils/fs.h> |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 47 | #include <utils/Trace.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 48 | |
Robert Craig | b9e3ba5 | 2014-02-04 10:53:00 -0500 | [diff] [blame] | 49 | #include <selinux/android.h> |
| 50 | |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame] | 51 | #include <sysutils/NetlinkEvent.h> |
| 52 | |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 53 | #include <private/android_filesystem_config.h> |
| 54 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 55 | #include <fscrypt/fscrypt.h> |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 56 | |
Risan | ac02a48 | 2018-10-31 21:59:47 -0600 | [diff] [blame] | 57 | #include "AppFuseUtil.h" |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 58 | #include "Devmapper.h" |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 59 | #include "FsCrypt.h" |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 60 | #include "Loop.h" |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 61 | #include "NetlinkManager.h" |
| 62 | #include "Process.h" |
| 63 | #include "Utils.h" |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 64 | #include "VoldNativeService.h" |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 65 | #include "VoldUtil.h" |
| 66 | #include "VolumeManager.h" |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 67 | #include "fs/Ext4.h" |
| 68 | #include "fs/Vfat.h" |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 69 | #include "model/EmulatedVolume.h" |
| 70 | #include "model/ObbVolume.h" |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 71 | #include "model/PrivateVolume.h" |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 72 | #include "model/StubVolume.h" |
San Mehat | 2396993 | 2010-01-09 07:08:06 -0800 | [diff] [blame] | 73 | |
Sudheer Shanka | f9b38a5 | 2019-02-14 19:09:51 +0000 | [diff] [blame] | 74 | using android::OK; |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 75 | using android::base::GetBoolProperty; |
Mark Salyzyn | 86e81e7 | 2018-09-20 10:09:27 -0700 | [diff] [blame] | 76 | using android::base::StartsWith; |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 77 | using android::base::StringAppendF; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 78 | using android::base::StringPrintf; |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 79 | using android::base::unique_fd; |
Sudheer Shanka | 023b539 | 2019-02-06 12:39:19 -0800 | [diff] [blame] | 80 | using android::vold::BindMount; |
Sudheer Shanka | f9b38a5 | 2019-02-14 19:09:51 +0000 | [diff] [blame] | 81 | using android::vold::CreateDir; |
Sudheer Shanka | 30df1c6 | 2019-02-22 17:03:02 -0800 | [diff] [blame] | 82 | using android::vold::DeleteDirContents; |
Sudheer Shanka | 023b539 | 2019-02-06 12:39:19 -0800 | [diff] [blame] | 83 | using android::vold::DeleteDirContentsAndDir; |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 84 | using android::vold::EnsureDirExists; |
Martijn Coenen | 62a4b27 | 2020-01-31 15:23:09 +0100 | [diff] [blame] | 85 | using android::vold::IsFilesystemSupported; |
Daniel Rosenberg | f36bddd | 2020-05-11 22:58:42 -0700 | [diff] [blame] | 86 | using android::vold::IsSdcardfsUsed; |
Alistair Delva | ff1fc9b | 2020-05-14 16:35:03 -0700 | [diff] [blame] | 87 | using android::vold::IsVirtioBlkDevice; |
Martijn Coenen | 62a4b27 | 2020-01-31 15:23:09 +0100 | [diff] [blame] | 88 | using android::vold::PrepareAndroidDirs; |
Martijn Coenen | 04bb17f | 2020-02-10 23:48:11 +0100 | [diff] [blame] | 89 | using android::vold::PrepareAppDirFromRoot; |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 90 | using android::vold::PrivateVolume; |
Sudheer Shanka | 023b539 | 2019-02-06 12:39:19 -0800 | [diff] [blame] | 91 | using android::vold::Symlink; |
| 92 | using android::vold::Unlink; |
| 93 | using android::vold::UnmountTree; |
Sudheer Shanka | 03992e3 | 2018-12-12 12:43:38 -0800 | [diff] [blame] | 94 | using android::vold::VoldNativeService; |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 95 | using android::vold::VolumeBase; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 96 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 97 | static const char* kPathUserMount = "/mnt/user"; |
| 98 | static const char* kPathVirtualDisk = "/data/misc/vold/virtual_disk"; |
| 99 | |
| 100 | static const char* kPropVirtualDisk = "persist.sys.virtual_disk"; |
| 101 | |
Sudheer Shanka | 53947a3 | 2018-08-01 10:24:13 -0700 | [diff] [blame] | 102 | static const std::string kEmptyString(""); |
| 103 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 104 | /* 512MiB is large enough for testing purposes */ |
| 105 | static const unsigned int kSizeVirtualDisk = 536870912; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 106 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 107 | static const unsigned int kMajorBlockMmc = 179; |
| 108 | |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 109 | using ScanProcCallback = bool(*)(uid_t uid, pid_t pid, int nsFd, const char* name, void* params); |
| 110 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 111 | VolumeManager* VolumeManager::sInstance = NULL; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 112 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 113 | VolumeManager* VolumeManager::Instance() { |
| 114 | if (!sInstance) sInstance = new VolumeManager(); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 115 | return sInstance; |
| 116 | } |
| 117 | |
| 118 | VolumeManager::VolumeManager() { |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 119 | mDebug = false; |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 120 | mNextObbId = 0; |
Risan | 82e90de | 2020-02-04 16:07:21 +0900 | [diff] [blame] | 121 | mNextStubId = 0; |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 122 | // For security reasons, assume that a secure keyguard is |
| 123 | // showing until we hear otherwise |
| 124 | mSecureKeyguardShowing = true; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 127 | VolumeManager::~VolumeManager() {} |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 128 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 129 | int VolumeManager::updateVirtualDisk() { |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 130 | ATRACE_NAME("VolumeManager::updateVirtualDisk"); |
Mark Salyzyn | 86e81e7 | 2018-09-20 10:09:27 -0700 | [diff] [blame] | 131 | if (GetBoolProperty(kPropVirtualDisk, false)) { |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 132 | if (access(kPathVirtualDisk, F_OK) != 0) { |
| 133 | Loop::createImageFile(kPathVirtualDisk, kSizeVirtualDisk / 512); |
| 134 | } |
| 135 | |
| 136 | if (mVirtualDisk == nullptr) { |
| 137 | if (Loop::create(kPathVirtualDisk, mVirtualDiskPath) != 0) { |
| 138 | LOG(ERROR) << "Failed to create virtual disk"; |
| 139 | return -1; |
| 140 | } |
| 141 | |
| 142 | struct stat buf; |
| 143 | if (stat(mVirtualDiskPath.c_str(), &buf) < 0) { |
| 144 | PLOG(ERROR) << "Failed to stat " << mVirtualDiskPath; |
| 145 | return -1; |
| 146 | } |
| 147 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 148 | auto disk = new android::vold::Disk( |
| 149 | "virtual", buf.st_rdev, "virtual", |
| 150 | android::vold::Disk::Flags::kAdoptable | android::vold::Disk::Flags::kSd); |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 151 | mVirtualDisk = std::shared_ptr<android::vold::Disk>(disk); |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 152 | handleDiskAdded(mVirtualDisk); |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 153 | } |
| 154 | } else { |
| 155 | if (mVirtualDisk != nullptr) { |
| 156 | dev_t device = mVirtualDisk->getDevice(); |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 157 | handleDiskRemoved(device); |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 158 | |
| 159 | Loop::destroyByDevice(mVirtualDiskPath.c_str()); |
| 160 | mVirtualDisk = nullptr; |
| 161 | } |
| 162 | |
| 163 | if (access(kPathVirtualDisk, F_OK) == 0) { |
| 164 | unlink(kPathVirtualDisk); |
| 165 | } |
| 166 | } |
| 167 | return 0; |
| 168 | } |
| 169 | |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 170 | int VolumeManager::setDebug(bool enable) { |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 171 | mDebug = enable; |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 172 | return 0; |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 173 | } |
| 174 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 175 | int VolumeManager::start() { |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 176 | ATRACE_NAME("VolumeManager::start"); |
| 177 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 178 | // Always start from a clean slate by unmounting everything in |
| 179 | // directories that we own, in case we crashed. |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 180 | unmountAll(); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 181 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 182 | Devmapper::destroyAll(); |
| 183 | Loop::destroyAll(); |
| 184 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 185 | // Assume that we always have an emulated volume on internal |
| 186 | // storage; the framework will decide if it should be mounted. |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 187 | CHECK(mInternalEmulatedVolumes.empty()); |
| 188 | |
| 189 | auto vol = std::shared_ptr<android::vold::VolumeBase>( |
| 190 | new android::vold::EmulatedVolume("/data/media", 0)); |
| 191 | vol->setMountUserId(0); |
| 192 | vol->create(); |
| 193 | mInternalEmulatedVolumes.push_back(vol); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 194 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 195 | // Consider creating a virtual disk |
| 196 | updateVirtualDisk(); |
| 197 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 198 | return 0; |
| 199 | } |
| 200 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 201 | void VolumeManager::handleBlockEvent(NetlinkEvent* evt) { |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 202 | std::lock_guard<std::mutex> lock(mLock); |
| 203 | |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 204 | if (mDebug) { |
Sudheer Shanka | 4b6ca4e | 2018-09-21 10:54:54 -0700 | [diff] [blame] | 205 | LOG(DEBUG) << "----------------"; |
| 206 | LOG(DEBUG) << "handleBlockEvent with action " << (int)evt->getAction(); |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 207 | evt->dump(); |
| 208 | } |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 209 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 210 | std::string eventPath(evt->findParam("DEVPATH") ? evt->findParam("DEVPATH") : ""); |
| 211 | std::string devType(evt->findParam("DEVTYPE") ? evt->findParam("DEVTYPE") : ""); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 212 | |
| 213 | if (devType != "disk") return; |
| 214 | |
Jeff Sharkey | 95440eb | 2017-09-18 18:19:28 -0600 | [diff] [blame] | 215 | int major = std::stoi(evt->findParam("MAJOR")); |
| 216 | int minor = std::stoi(evt->findParam("MINOR")); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 217 | dev_t device = makedev(major, minor); |
| 218 | |
| 219 | switch (evt->getAction()) { |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 220 | case NetlinkEvent::Action::kAdd: { |
| 221 | for (const auto& source : mDiskSources) { |
| 222 | if (source->matches(eventPath)) { |
| 223 | // For now, assume that MMC and virtio-blk (the latter is |
Alistair Delva | ff1fc9b | 2020-05-14 16:35:03 -0700 | [diff] [blame] | 224 | // specific to virtual platforms; see Utils.cpp for details) |
| 225 | // devices are SD, and that everything else is USB |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 226 | int flags = source->getFlags(); |
Alistair Delva | ff1fc9b | 2020-05-14 16:35:03 -0700 | [diff] [blame] | 227 | if (major == kMajorBlockMmc || IsVirtioBlkDevice(major)) { |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 228 | flags |= android::vold::Disk::Flags::kSd; |
| 229 | } else { |
| 230 | flags |= android::vold::Disk::Flags::kUsb; |
| 231 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 232 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 233 | auto disk = |
| 234 | new android::vold::Disk(eventPath, device, source->getNickname(), flags); |
| 235 | handleDiskAdded(std::shared_ptr<android::vold::Disk>(disk)); |
| 236 | break; |
| 237 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 238 | } |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 239 | break; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 240 | } |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 241 | case NetlinkEvent::Action::kChange: { |
| 242 | LOG(DEBUG) << "Disk at " << major << ":" << minor << " changed"; |
| 243 | handleDiskChanged(device); |
| 244 | break; |
| 245 | } |
| 246 | case NetlinkEvent::Action::kRemove: { |
| 247 | handleDiskRemoved(device); |
| 248 | break; |
| 249 | } |
| 250 | default: { |
| 251 | LOG(WARNING) << "Unexpected block event action " << (int)evt->getAction(); |
| 252 | break; |
| 253 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 254 | } |
| 255 | } |
| 256 | |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 257 | void VolumeManager::handleDiskAdded(const std::shared_ptr<android::vold::Disk>& disk) { |
| 258 | // For security reasons, if secure keyguard is showing, wait |
| 259 | // until the user unlocks the device to actually touch it |
Martijn Coenen | cf5916f | 2020-01-03 14:36:45 +0100 | [diff] [blame] | 260 | // Additionally, wait until user 0 is actually started, since we need |
| 261 | // the user to be up before we can mount a FUSE daemon to handle the disk. |
| 262 | bool userZeroStarted = mStartedUsers.find(0) != mStartedUsers.end(); |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 263 | if (mSecureKeyguardShowing) { |
| 264 | LOG(INFO) << "Found disk at " << disk->getEventPath() |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 265 | << " but delaying scan due to secure keyguard"; |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 266 | mPendingDisks.push_back(disk); |
Martijn Coenen | cf5916f | 2020-01-03 14:36:45 +0100 | [diff] [blame] | 267 | } else if (!userZeroStarted) { |
| 268 | LOG(INFO) << "Found disk at " << disk->getEventPath() |
| 269 | << " but delaying scan due to user zero not having started"; |
| 270 | mPendingDisks.push_back(disk); |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 271 | } else { |
| 272 | disk->create(); |
| 273 | mDisks.push_back(disk); |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | void VolumeManager::handleDiskChanged(dev_t device) { |
| 278 | for (const auto& disk : mDisks) { |
| 279 | if (disk->getDevice() == device) { |
| 280 | disk->readMetadata(); |
| 281 | disk->readPartitions(); |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | // For security reasons, we ignore all pending disks, since |
| 286 | // we'll scan them once the device is unlocked |
| 287 | } |
| 288 | |
| 289 | void VolumeManager::handleDiskRemoved(dev_t device) { |
| 290 | auto i = mDisks.begin(); |
| 291 | while (i != mDisks.end()) { |
| 292 | if ((*i)->getDevice() == device) { |
| 293 | (*i)->destroy(); |
| 294 | i = mDisks.erase(i); |
| 295 | } else { |
| 296 | ++i; |
| 297 | } |
| 298 | } |
| 299 | auto j = mPendingDisks.begin(); |
| 300 | while (j != mPendingDisks.end()) { |
| 301 | if ((*j)->getDevice() == device) { |
| 302 | j = mPendingDisks.erase(j); |
| 303 | } else { |
| 304 | ++j; |
| 305 | } |
| 306 | } |
| 307 | } |
| 308 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 309 | void VolumeManager::addDiskSource(const std::shared_ptr<DiskSource>& diskSource) { |
Wei Wang | 6b455c2 | 2017-01-20 11:52:33 -0800 | [diff] [blame] | 310 | std::lock_guard<std::mutex> lock(mLock); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 311 | mDiskSources.push_back(diskSource); |
| 312 | } |
| 313 | |
| 314 | std::shared_ptr<android::vold::Disk> VolumeManager::findDisk(const std::string& id) { |
| 315 | for (auto disk : mDisks) { |
| 316 | if (disk->getId() == id) { |
| 317 | return disk; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 318 | } |
| 319 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 320 | return nullptr; |
| 321 | } |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 322 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 323 | std::shared_ptr<android::vold::VolumeBase> VolumeManager::findVolume(const std::string& id) { |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 324 | for (const auto& vol : mInternalEmulatedVolumes) { |
| 325 | if (vol->getId() == id) { |
| 326 | return vol; |
| 327 | } |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 328 | } |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 329 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 330 | auto vol = disk->findVolume(id); |
| 331 | if (vol != nullptr) { |
| 332 | return vol; |
| 333 | } |
| 334 | } |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 335 | for (const auto& vol : mObbVolumes) { |
| 336 | if (vol->getId() == id) { |
| 337 | return vol; |
| 338 | } |
| 339 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 340 | return nullptr; |
| 341 | } |
| 342 | |
Greg Kaiser | 2bc201e | 2018-12-18 08:42:08 -0800 | [diff] [blame] | 343 | void VolumeManager::listVolumes(android::vold::VolumeBase::Type type, |
| 344 | std::list<std::string>& list) const { |
Jeff Sharkey | c86ab6f | 2015-06-26 14:02:09 -0700 | [diff] [blame] | 345 | list.clear(); |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 346 | for (const auto& disk : mDisks) { |
Jeff Sharkey | c86ab6f | 2015-06-26 14:02:09 -0700 | [diff] [blame] | 347 | disk->listVolumes(type, list); |
| 348 | } |
| 349 | } |
| 350 | |
Jeff Sharkey | 3ce1825 | 2017-10-24 11:08:45 -0600 | [diff] [blame] | 351 | int VolumeManager::forgetPartition(const std::string& partGuid, const std::string& fsUuid) { |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 352 | std::string normalizedGuid; |
| 353 | if (android::vold::NormalizeHex(partGuid, normalizedGuid)) { |
| 354 | LOG(WARNING) << "Invalid GUID " << partGuid; |
| 355 | return -1; |
| 356 | } |
| 357 | |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 358 | bool success = true; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 359 | std::string keyPath = android::vold::BuildKeyPath(normalizedGuid); |
| 360 | if (unlink(keyPath.c_str()) != 0) { |
| 361 | LOG(ERROR) << "Failed to unlink " << keyPath; |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 362 | success = false; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 363 | } |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 364 | if (fscrypt_is_native()) { |
| 365 | if (!fscrypt_destroy_volume_keys(fsUuid)) { |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 366 | success = false; |
| 367 | } |
| 368 | } |
| 369 | return success ? 0 : -1; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 370 | } |
| 371 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 372 | int VolumeManager::linkPrimary(userid_t userId) { |
Abhijeet Kaur | 01fa0e0 | 2019-12-13 10:26:32 +0000 | [diff] [blame] | 373 | if (!GetBoolProperty(android::vold::kPropFuse, false)) { |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 374 | std::string source(mPrimary->getPath()); |
| 375 | if (mPrimary->isEmulated()) { |
| 376 | source = StringPrintf("%s/%d", source.c_str(), userId); |
| 377 | fs_prepare_dir(source.c_str(), 0755, AID_ROOT, AID_ROOT); |
| 378 | } |
Zim | 3623a21 | 2019-07-19 16:46:53 +0100 | [diff] [blame] | 379 | |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 380 | std::string target(StringPrintf("/mnt/user/%d/primary", userId)); |
| 381 | LOG(DEBUG) << "Linking " << source << " to " << target; |
| 382 | Symlink(source, target); |
Zim | 3623a21 | 2019-07-19 16:46:53 +0100 | [diff] [blame] | 383 | } |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 384 | return 0; |
| 385 | } |
| 386 | |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 387 | void VolumeManager::destroyEmulatedVolumesForUser(userid_t userId) { |
| 388 | // Destroy and remove all unstacked EmulatedVolumes for the user |
| 389 | auto i = mInternalEmulatedVolumes.begin(); |
| 390 | while (i != mInternalEmulatedVolumes.end()) { |
| 391 | auto vol = *i; |
| 392 | if (vol->getMountUserId() == userId) { |
| 393 | vol->destroy(); |
| 394 | i = mInternalEmulatedVolumes.erase(i); |
| 395 | } else { |
| 396 | i++; |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | // Destroy and remove all stacked EmulatedVolumes for the user on each mounted private volume |
| 401 | std::list<std::string> private_vols; |
| 402 | listVolumes(VolumeBase::Type::kPrivate, private_vols); |
| 403 | for (const std::string& id : private_vols) { |
| 404 | PrivateVolume* pvol = static_cast<PrivateVolume*>(findVolume(id).get()); |
| 405 | std::list<std::shared_ptr<VolumeBase>> vols_to_remove; |
| 406 | if (pvol->getState() == VolumeBase::State::kMounted) { |
| 407 | for (const auto& vol : pvol->getVolumes()) { |
| 408 | if (vol->getMountUserId() == userId) { |
| 409 | vols_to_remove.push_back(vol); |
| 410 | } |
| 411 | } |
| 412 | for (const auto& vol : vols_to_remove) { |
| 413 | vol->destroy(); |
| 414 | pvol->removeVolume(vol); |
| 415 | } |
| 416 | } // else EmulatedVolumes will be destroyed on VolumeBase#unmount |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | void VolumeManager::createEmulatedVolumesForUser(userid_t userId) { |
| 421 | // Create unstacked EmulatedVolumes for the user |
| 422 | auto vol = std::shared_ptr<android::vold::VolumeBase>( |
| 423 | new android::vold::EmulatedVolume("/data/media", userId)); |
| 424 | vol->setMountUserId(userId); |
| 425 | mInternalEmulatedVolumes.push_back(vol); |
| 426 | vol->create(); |
| 427 | |
| 428 | // Create stacked EmulatedVolumes for the user on each PrivateVolume |
| 429 | std::list<std::string> private_vols; |
| 430 | listVolumes(VolumeBase::Type::kPrivate, private_vols); |
| 431 | for (const std::string& id : private_vols) { |
| 432 | PrivateVolume* pvol = static_cast<PrivateVolume*>(findVolume(id).get()); |
| 433 | if (pvol->getState() == VolumeBase::State::kMounted) { |
| 434 | auto evol = |
| 435 | std::shared_ptr<android::vold::VolumeBase>(new android::vold::EmulatedVolume( |
| 436 | pvol->getPath() + "/media", pvol->getRawDevice(), pvol->getFsUuid(), |
| 437 | userId)); |
| 438 | evol->setMountUserId(userId); |
| 439 | pvol->addVolume(evol); |
| 440 | evol->create(); |
| 441 | } // else EmulatedVolumes will be created per user when on PrivateVolume#doMount |
| 442 | } |
| 443 | } |
| 444 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 445 | int VolumeManager::onUserAdded(userid_t userId, int userSerialNumber) { |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 446 | LOG(INFO) << "onUserAdded: " << userId; |
| 447 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 448 | mAddedUsers[userId] = userSerialNumber; |
| 449 | return 0; |
| 450 | } |
| 451 | |
| 452 | int VolumeManager::onUserRemoved(userid_t userId) { |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 453 | LOG(INFO) << "onUserRemoved: " << userId; |
| 454 | |
Zim | 2d45d9b | 2019-11-14 16:19:05 +0000 | [diff] [blame] | 455 | onUserStopped(userId); |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 456 | mAddedUsers.erase(userId); |
| 457 | return 0; |
| 458 | } |
| 459 | |
Sudheer Shanka | ebce4cc | 2019-04-29 10:46:35 -0700 | [diff] [blame] | 460 | int VolumeManager::onUserStarted(userid_t userId) { |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 461 | LOG(INFO) << "onUserStarted: " << userId; |
| 462 | |
Zim | 2d45d9b | 2019-11-14 16:19:05 +0000 | [diff] [blame] | 463 | if (mStartedUsers.find(userId) == mStartedUsers.end()) { |
| 464 | createEmulatedVolumesForUser(userId); |
| 465 | } |
| 466 | |
Abhijeet Kaur | 01fa0e0 | 2019-12-13 10:26:32 +0000 | [diff] [blame] | 467 | if (!GetBoolProperty(android::vold::kPropFuse, false)) { |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 468 | // Note that sometimes the system will spin up processes from Zygote |
| 469 | // before actually starting the user, so we're okay if Zygote |
| 470 | // already created this directory. |
| 471 | std::string path(StringPrintf("%s/%d", kPathUserMount, userId)); |
| 472 | fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT); |
| 473 | |
| 474 | if (mPrimary) { |
| 475 | linkPrimary(userId); |
| 476 | } |
| 477 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 478 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 479 | mStartedUsers.insert(userId); |
Martijn Coenen | cf5916f | 2020-01-03 14:36:45 +0100 | [diff] [blame] | 480 | |
| 481 | createPendingDisksIfNeeded(); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 482 | return 0; |
| 483 | } |
| 484 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 485 | int VolumeManager::onUserStopped(userid_t userId) { |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 486 | LOG(VERBOSE) << "onUserStopped: " << userId; |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 487 | |
Zim | 2d45d9b | 2019-11-14 16:19:05 +0000 | [diff] [blame] | 488 | if (mStartedUsers.find(userId) != mStartedUsers.end()) { |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 489 | destroyEmulatedVolumesForUser(userId); |
| 490 | } |
| 491 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 492 | mStartedUsers.erase(userId); |
Sudheer Shanka | fa6a174 | 2018-10-04 16:26:22 -0700 | [diff] [blame] | 493 | return 0; |
| 494 | } |
| 495 | |
Martijn Coenen | cf5916f | 2020-01-03 14:36:45 +0100 | [diff] [blame] | 496 | void VolumeManager::createPendingDisksIfNeeded() { |
| 497 | bool userZeroStarted = mStartedUsers.find(0) != mStartedUsers.end(); |
| 498 | if (!mSecureKeyguardShowing && userZeroStarted) { |
| 499 | // Now that secure keyguard has been dismissed and user 0 has |
| 500 | // started, process any pending disks |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 501 | for (const auto& disk : mPendingDisks) { |
| 502 | disk->create(); |
| 503 | mDisks.push_back(disk); |
| 504 | } |
| 505 | mPendingDisks.clear(); |
| 506 | } |
Martijn Coenen | cf5916f | 2020-01-03 14:36:45 +0100 | [diff] [blame] | 507 | } |
| 508 | |
| 509 | int VolumeManager::onSecureKeyguardStateChanged(bool isShowing) { |
| 510 | mSecureKeyguardShowing = isShowing; |
| 511 | createPendingDisksIfNeeded(); |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 512 | return 0; |
| 513 | } |
| 514 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 515 | int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol) { |
| 516 | mPrimary = vol; |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 517 | for (userid_t userId : mStartedUsers) { |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 518 | linkPrimary(userId); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 519 | } |
| 520 | return 0; |
| 521 | } |
| 522 | |
Narayan Kamath | 02efdf5 | 2019-11-27 10:53:51 +0000 | [diff] [blame] | 523 | // This code is executed after a fork so it's very important that the set of |
| 524 | // methods we call here is strictly limited. |
| 525 | // |
| 526 | // TODO: Get rid of this guesswork altogether and instead exec a process |
| 527 | // immediately after fork to do our bindding for us. |
| 528 | static bool childProcess(const char* storageSource, const char* userSource, int nsFd, |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 529 | const char* name) { |
Narayan Kamath | 02efdf5 | 2019-11-27 10:53:51 +0000 | [diff] [blame] | 530 | if (setns(nsFd, CLONE_NEWNS) != 0) { |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 531 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to setns for %s :%s", name, |
Narayan Kamath | 02efdf5 | 2019-11-27 10:53:51 +0000 | [diff] [blame] | 532 | strerror(errno)); |
| 533 | return false; |
| 534 | } |
| 535 | |
| 536 | // NOTE: Inlined from vold::UnmountTree here to avoid using PLOG methods and |
| 537 | // to also protect against future changes that may cause issues across a |
| 538 | // fork. |
| 539 | if (TEMP_FAILURE_RETRY(umount2("/storage/", MNT_DETACH)) < 0 && errno != EINVAL && |
| 540 | errno != ENOENT) { |
| 541 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to unmount /storage/ :%s", |
| 542 | strerror(errno)); |
| 543 | return false; |
| 544 | } |
| 545 | |
| 546 | if (TEMP_FAILURE_RETRY(mount(storageSource, "/storage", NULL, MS_BIND | MS_REC, NULL)) == -1) { |
| 547 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to mount %s for %s :%s", |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 548 | storageSource, name, strerror(errno)); |
Narayan Kamath | 02efdf5 | 2019-11-27 10:53:51 +0000 | [diff] [blame] | 549 | return false; |
| 550 | } |
| 551 | |
| 552 | if (TEMP_FAILURE_RETRY(mount(NULL, "/storage", NULL, MS_REC | MS_SLAVE, NULL)) == -1) { |
| 553 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 554 | "Failed to set MS_SLAVE to /storage for %s :%s", name, |
Narayan Kamath | 02efdf5 | 2019-11-27 10:53:51 +0000 | [diff] [blame] | 555 | strerror(errno)); |
| 556 | return false; |
| 557 | } |
| 558 | |
| 559 | if (TEMP_FAILURE_RETRY(mount(userSource, "/storage/self", NULL, MS_BIND, NULL)) == -1) { |
| 560 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to mount %s for %s :%s", |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 561 | userSource, name, strerror(errno)); |
Narayan Kamath | 02efdf5 | 2019-11-27 10:53:51 +0000 | [diff] [blame] | 562 | return false; |
| 563 | } |
| 564 | |
| 565 | return true; |
| 566 | } |
| 567 | |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 568 | // Fork the process and remount storage |
| 569 | bool forkAndRemountChild(uid_t uid, pid_t pid, int nsFd, const char* name, void* params) { |
| 570 | int32_t mountMode = *static_cast<int32_t*>(params); |
| 571 | std::string userSource; |
| 572 | std::string storageSource; |
| 573 | pid_t child; |
| 574 | // Need to fix these paths to account for when sdcardfs is gone |
Sudheer Shanka | 817b911 | 2018-12-13 17:40:28 -0800 | [diff] [blame] | 575 | switch (mountMode) { |
| 576 | case VoldNativeService::REMOUNT_MODE_NONE: |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 577 | return true; |
Sudheer Shanka | 817b911 | 2018-12-13 17:40:28 -0800 | [diff] [blame] | 578 | case VoldNativeService::REMOUNT_MODE_DEFAULT: |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 579 | storageSource = "/mnt/runtime/default"; |
Sudheer Shanka | 817b911 | 2018-12-13 17:40:28 -0800 | [diff] [blame] | 580 | break; |
| 581 | case VoldNativeService::REMOUNT_MODE_READ: |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 582 | storageSource = "/mnt/runtime/read"; |
Sudheer Shanka | 817b911 | 2018-12-13 17:40:28 -0800 | [diff] [blame] | 583 | break; |
| 584 | case VoldNativeService::REMOUNT_MODE_WRITE: |
Sudheer Shanka | a05ea74 | 2019-04-12 13:55:28 -0700 | [diff] [blame] | 585 | case VoldNativeService::REMOUNT_MODE_LEGACY: |
| 586 | case VoldNativeService::REMOUNT_MODE_INSTALLER: |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 587 | storageSource = "/mnt/runtime/write"; |
Sudheer Shanka | 817b911 | 2018-12-13 17:40:28 -0800 | [diff] [blame] | 588 | break; |
Sudheer Shanka | 36bdf7a | 2019-04-18 15:18:30 -0700 | [diff] [blame] | 589 | case VoldNativeService::REMOUNT_MODE_FULL: |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 590 | storageSource = "/mnt/runtime/full"; |
Sudheer Shanka | 36bdf7a | 2019-04-18 15:18:30 -0700 | [diff] [blame] | 591 | break; |
Zim | 981222f | 2019-09-09 10:24:44 +0100 | [diff] [blame] | 592 | case VoldNativeService::REMOUNT_MODE_PASS_THROUGH: |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 593 | return true; |
Sudheer Shanka | 817b911 | 2018-12-13 17:40:28 -0800 | [diff] [blame] | 594 | default: |
| 595 | PLOG(ERROR) << "Unknown mode " << std::to_string(mountMode); |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 596 | return false; |
Sudheer Shanka | 817b911 | 2018-12-13 17:40:28 -0800 | [diff] [blame] | 597 | } |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 598 | LOG(DEBUG) << "Remounting " << uid << " as " << storageSource; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 599 | |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 600 | // Fork a child to mount user-specific symlink helper into place |
| 601 | userSource = StringPrintf("/mnt/user/%d", multiuser_get_user_id(uid)); |
| 602 | if (!(child = fork())) { |
| 603 | if (childProcess(storageSource.c_str(), userSource.c_str(), nsFd, name)) { |
| 604 | _exit(0); |
| 605 | } else { |
| 606 | _exit(1); |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | if (child == -1) { |
| 611 | PLOG(ERROR) << "Failed to fork"; |
| 612 | return false; |
| 613 | } else { |
| 614 | TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0)); |
| 615 | } |
| 616 | return true; |
| 617 | } |
| 618 | |
| 619 | // Helper function to scan all processes in /proc and call the callback if: |
| 620 | // 1). pid belongs to an app process |
| 621 | // 2). If input uid is 0 or it matches the process uid |
| 622 | // 3). If userId is not -1 or userId matches the process userId |
| 623 | bool scanProcProcesses(uid_t uid, userid_t userId, ScanProcCallback callback, void* params) { |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 624 | DIR* dir; |
| 625 | struct dirent* de; |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 626 | std::string rootName; |
| 627 | std::string pidName; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 628 | int pidFd; |
| 629 | int nsFd; |
| 630 | struct stat sb; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 631 | |
Jiyong Park | 8d21c92 | 2019-01-04 13:35:25 +0900 | [diff] [blame] | 632 | static bool apexUpdatable = android::sysprop::ApexProperties::updatable().value_or(false); |
| 633 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 634 | if (!(dir = opendir("/proc"))) { |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 635 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to opendir"); |
| 636 | return false; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 637 | } |
| 638 | |
| 639 | // Figure out root namespace to compare against below |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 640 | if (!android::vold::Readlinkat(dirfd(dir), "1/ns/mnt", &rootName)) { |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 641 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to read root namespace"); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 642 | closedir(dir); |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 643 | return false; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 644 | } |
| 645 | |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 646 | async_safe_format_log(ANDROID_LOG_INFO, "vold", "Start scanning all processes"); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 647 | // Poke through all running PIDs look for apps running as UID |
| 648 | while ((de = readdir(dir))) { |
Jeff Vander Stoep | 5889083 | 2017-10-23 17:12:31 -0700 | [diff] [blame] | 649 | pid_t pid; |
| 650 | if (de->d_type != DT_DIR) continue; |
| 651 | if (!android::base::ParseInt(de->d_name, &pid)) continue; |
| 652 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 653 | pidFd = -1; |
| 654 | nsFd = -1; |
| 655 | |
| 656 | pidFd = openat(dirfd(dir), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC); |
| 657 | if (pidFd < 0) { |
| 658 | goto next; |
| 659 | } |
| 660 | if (fstat(pidFd, &sb) != 0) { |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 661 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to stat %s", de->d_name); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 662 | goto next; |
| 663 | } |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 664 | if (uid != 0 && sb.st_uid != uid) { |
| 665 | goto next; |
| 666 | } |
| 667 | if (userId != static_cast<userid_t>(-1) && multiuser_get_user_id(sb.st_uid) != userId) { |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 668 | goto next; |
| 669 | } |
| 670 | |
| 671 | // Matches so far, but refuse to touch if in root namespace |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 672 | if (!android::vold::Readlinkat(pidFd, "ns/mnt", &pidName)) { |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 673 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", |
| 674 | "Failed to read namespacefor %s", de->d_name); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 675 | goto next; |
| 676 | } |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 677 | if (rootName == pidName) { |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 678 | goto next; |
| 679 | } |
| 680 | |
Jiyong Park | 8d21c92 | 2019-01-04 13:35:25 +0900 | [diff] [blame] | 681 | if (apexUpdatable) { |
| 682 | std::string exeName; |
| 683 | // When ro.apex.bionic_updatable is set to true, |
| 684 | // some early native processes have mount namespaces that are different |
| 685 | // from that of the init. Therefore, above check can't filter them out. |
| 686 | // Since the propagation type of / is 'shared', unmounting /storage |
| 687 | // for the early native processes affects other processes including |
| 688 | // init. Filter out such processes by skipping if a process is a |
| 689 | // non-Java process whose UID is < AID_APP_START. (The UID condition |
| 690 | // is required to not filter out child processes spawned by apps.) |
| 691 | if (!android::vold::Readlinkat(pidFd, "exe", &exeName)) { |
Jiyong Park | 8d21c92 | 2019-01-04 13:35:25 +0900 | [diff] [blame] | 692 | goto next; |
| 693 | } |
| 694 | if (!StartsWith(exeName, "/system/bin/app_process") && sb.st_uid < AID_APP_START) { |
Jiyong Park | 8d21c92 | 2019-01-04 13:35:25 +0900 | [diff] [blame] | 695 | goto next; |
| 696 | } |
| 697 | } |
| 698 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 699 | // We purposefully leave the namespace open across the fork |
Nick Kralevich | e7e89ac | 2019-03-29 16:03:51 -0700 | [diff] [blame] | 700 | // NOLINTNEXTLINE(android-cloexec-open): Deliberately not O_CLOEXEC |
| 701 | nsFd = openat(pidFd, "ns/mnt", O_RDONLY); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 702 | if (nsFd < 0) { |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 703 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", |
| 704 | "Failed to open namespace for %s", de->d_name); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 705 | goto next; |
| 706 | } |
| 707 | |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 708 | if (!callback(sb.st_uid, pid, nsFd, de->d_name, params)) { |
| 709 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed in callback"); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 710 | } |
| 711 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 712 | next: |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 713 | close(nsFd); |
| 714 | close(pidFd); |
| 715 | } |
| 716 | closedir(dir); |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 717 | async_safe_format_log(ANDROID_LOG_INFO, "vold", "Finished scanning all processes"); |
| 718 | return true; |
| 719 | } |
| 720 | |
| 721 | int VolumeManager::remountUid(uid_t uid, int32_t mountMode) { |
| 722 | if (GetBoolProperty(android::vold::kPropFuse, false)) { |
| 723 | // TODO(135341433): Implement fuse specific logic. |
| 724 | return 0; |
| 725 | } |
| 726 | return scanProcProcesses(uid, static_cast<userid_t>(-1), |
| 727 | forkAndRemountChild, &mountMode) ? 0 : -1; |
| 728 | } |
| 729 | |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 730 | |
Ricky Wai | e96b34f | 2020-05-07 16:01:33 +0100 | [diff] [blame] | 731 | // In each app's namespace, mount tmpfs on obb and data dir, and bind mount obb and data |
| 732 | // package dirs. |
| 733 | static bool remountStorageDirs(int nsFd, const char* android_data_dir, const char* android_obb_dir, |
| 734 | int uid, const char* sources[], const char* targets[], int size) { |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 735 | // This code is executed after a fork so it's very important that the set of |
| 736 | // methods we call here is strictly limited. |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 737 | if (setns(nsFd, CLONE_NEWNS) != 0) { |
| 738 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to setns %s", strerror(errno)); |
| 739 | return false; |
| 740 | } |
| 741 | |
Ricky Wai | e96b34f | 2020-05-07 16:01:33 +0100 | [diff] [blame] | 742 | // Mount tmpfs on Android/data and Android/obb |
| 743 | if (TEMP_FAILURE_RETRY(mount("tmpfs", android_data_dir, "tmpfs", |
| 744 | MS_NOSUID | MS_NODEV | MS_NOEXEC, "uid=0,gid=0,mode=0751")) == -1) { |
| 745 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to mount tmpfs to %s :%s", |
| 746 | android_data_dir, strerror(errno)); |
| 747 | return false; |
| 748 | } |
| 749 | if (TEMP_FAILURE_RETRY(mount("tmpfs", android_obb_dir, "tmpfs", |
| 750 | MS_NOSUID | MS_NODEV | MS_NOEXEC, "uid=0,gid=0,mode=0751")) == -1) { |
| 751 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to mount tmpfs to %s :%s", |
| 752 | android_obb_dir, strerror(errno)); |
| 753 | return false; |
| 754 | } |
| 755 | |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 756 | for (int i = 0; i < size; i++) { |
Ricky Wai | e96b34f | 2020-05-07 16:01:33 +0100 | [diff] [blame] | 757 | // Create package dir and bind mount it to the actual one. |
| 758 | if (TEMP_FAILURE_RETRY(mkdir(targets[i], 0700)) == -1) { |
| 759 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to mkdir %s %s", |
| 760 | targets[i], strerror(errno)); |
| 761 | return false; |
| 762 | } |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 763 | if (TEMP_FAILURE_RETRY(mount(sources[i], targets[i], NULL, MS_BIND | MS_REC, NULL)) == -1) { |
| 764 | async_safe_format_log(ANDROID_LOG_ERROR, "vold", "Failed to mount %s to %s :%s", |
| 765 | sources[i], targets[i], strerror(errno)); |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 766 | return false; |
| 767 | } |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 768 | } |
| 769 | return true; |
| 770 | } |
| 771 | |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 772 | static std::string getStorageDirSrc(userid_t userId, const std::string& dirName, |
| 773 | const std::string& packageName) { |
Daniel Rosenberg | f36bddd | 2020-05-11 22:58:42 -0700 | [diff] [blame] | 774 | if (IsSdcardfsUsed()) { |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 775 | return StringPrintf("/mnt/runtime/default/emulated/%d/%s/%s", |
| 776 | userId, dirName.c_str(), packageName.c_str()); |
| 777 | } else { |
| 778 | return StringPrintf("/mnt/pass_through/%d/emulated/%d/%s/%s", |
| 779 | userId, userId, dirName.c_str(), packageName.c_str()); |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 780 | } |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | static std::string getStorageDirTarget(userid_t userId, std::string dirName, |
| 784 | std::string packageName) { |
| 785 | return StringPrintf("/storage/emulated/%d/%s/%s", |
| 786 | userId, dirName.c_str(), packageName.c_str()); |
| 787 | } |
| 788 | |
| 789 | // Fork the process and remount storage |
Linus Tufvesson | 75973cb | 2020-03-23 11:59:43 +0000 | [diff] [blame] | 790 | bool VolumeManager::forkAndRemountStorage(int uid, int pid, |
| 791 | const std::vector<std::string>& packageNames) { |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 792 | userid_t userId = multiuser_get_user_id(uid); |
| 793 | std::string mnt_path = StringPrintf("/proc/%d/ns/mnt", pid); |
| 794 | android::base::unique_fd nsFd( |
| 795 | TEMP_FAILURE_RETRY(open(mnt_path.c_str(), O_RDONLY | O_CLOEXEC))); |
| 796 | if (nsFd == -1) { |
| 797 | PLOG(ERROR) << "Unable to open " << mnt_path.c_str(); |
| 798 | return false; |
| 799 | } |
| 800 | // Storing both Android/obb and Android/data paths. |
| 801 | int size = packageNames.size() * 2; |
| 802 | |
| 803 | std::unique_ptr<std::string[]> sources(new std::string[size]); |
| 804 | std::unique_ptr<std::string[]> targets(new std::string[size]); |
| 805 | std::unique_ptr<const char*[]> sources_uptr(new const char*[size]); |
| 806 | std::unique_ptr<const char*[]> targets_uptr(new const char*[size]); |
| 807 | const char** sources_cstr = sources_uptr.get(); |
| 808 | const char** targets_cstr = targets_uptr.get(); |
| 809 | |
| 810 | for (int i = 0; i < size; i += 2) { |
| 811 | std::string const& packageName = packageNames[i/2]; |
| 812 | sources[i] = getStorageDirSrc(userId, "Android/data", packageName); |
| 813 | targets[i] = getStorageDirTarget(userId, "Android/data", packageName); |
| 814 | sources[i+1] = getStorageDirSrc(userId, "Android/obb", packageName); |
| 815 | targets[i+1] = getStorageDirTarget(userId, "Android/obb", packageName); |
| 816 | |
| 817 | sources_cstr[i] = sources[i].c_str(); |
| 818 | targets_cstr[i] = targets[i].c_str(); |
| 819 | sources_cstr[i+1] = sources[i+1].c_str(); |
| 820 | targets_cstr[i+1] = targets[i+1].c_str(); |
| 821 | } |
| 822 | |
| 823 | for (int i = 0; i < size; i++) { |
| 824 | auto status = EnsureDirExists(sources_cstr[i], 0771, AID_MEDIA_RW, AID_MEDIA_RW); |
| 825 | if (status != OK) { |
| 826 | PLOG(ERROR) << "Failed to create dir: " << sources_cstr[i]; |
| 827 | return false; |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 828 | } |
Linus Tufvesson | 75973cb | 2020-03-23 11:59:43 +0000 | [diff] [blame] | 829 | // Make sure /storage/emulated/... paths are setup correctly |
| 830 | status = setupAppDir(targets_cstr[i], uid, false /* fixupExistingOnly */); |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 831 | if (status != OK) { |
| 832 | PLOG(ERROR) << "Failed to create dir: " << targets_cstr[i]; |
| 833 | return false; |
| 834 | } |
| 835 | } |
| 836 | |
Ricky Wai | e96b34f | 2020-05-07 16:01:33 +0100 | [diff] [blame] | 837 | char android_data_dir[PATH_MAX]; |
| 838 | char android_obb_dir[PATH_MAX]; |
| 839 | snprintf(android_data_dir, PATH_MAX, "/storage/emulated/%d/Android/data", userId); |
| 840 | snprintf(android_obb_dir, PATH_MAX, "/storage/emulated/%d/Android/obb", userId); |
| 841 | |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 842 | pid_t child; |
| 843 | // Fork a child to mount Android/obb android Android/data dirs, as we don't want it to affect |
| 844 | // original vold process mount namespace. |
| 845 | if (!(child = fork())) { |
Ricky Wai | e96b34f | 2020-05-07 16:01:33 +0100 | [diff] [blame] | 846 | if (remountStorageDirs(nsFd, android_data_dir, android_obb_dir, uid, |
| 847 | sources_cstr, targets_cstr, size)) { |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 848 | _exit(0); |
| 849 | } else { |
| 850 | _exit(1); |
| 851 | } |
| 852 | } |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 853 | |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 854 | if (child == -1) { |
| 855 | PLOG(ERROR) << "Failed to fork"; |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 856 | return false; |
| 857 | } else { |
| 858 | int status; |
| 859 | if (TEMP_FAILURE_RETRY(waitpid(child, &status, 0)) == -1) { |
| 860 | PLOG(ERROR) << "Failed to waitpid: " << child; |
| 861 | return false; |
| 862 | } |
| 863 | if (!WIFEXITED(status)) { |
| 864 | PLOG(ERROR) << "Process did not exit normally, status: " << status; |
| 865 | return false; |
| 866 | } |
| 867 | if (WEXITSTATUS(status)) { |
| 868 | PLOG(ERROR) << "Process exited with code: " << WEXITSTATUS(status); |
| 869 | return false; |
Ricky Wai | 07e64a4 | 2020-02-11 14:31:24 +0000 | [diff] [blame] | 870 | } |
| 871 | } |
Ricky Wai | 6b12257 | 2020-02-28 16:30:47 +0000 | [diff] [blame] | 872 | return true; |
| 873 | } |
| 874 | |
| 875 | int VolumeManager::remountAppStorageDirs(int uid, int pid, |
| 876 | const std::vector<std::string>& packageNames) { |
| 877 | if (!GetBoolProperty(android::vold::kPropFuse, false)) { |
| 878 | return 0; |
| 879 | } |
| 880 | // Only run the remount if fuse is mounted for that user. |
| 881 | userid_t userId = multiuser_get_user_id(uid); |
| 882 | bool fuseMounted = false; |
| 883 | for (auto& vol : mInternalEmulatedVolumes) { |
| 884 | if (vol->getMountUserId() == userId && vol->getState() == VolumeBase::State::kMounted) { |
| 885 | auto* emulatedVol = static_cast<android::vold::EmulatedVolume*>(vol.get()); |
| 886 | if (emulatedVol) { |
| 887 | fuseMounted = emulatedVol->isFuseMounted(); |
| 888 | } |
| 889 | break; |
| 890 | } |
| 891 | } |
| 892 | if (fuseMounted) { |
| 893 | forkAndRemountStorage(uid, pid, packageNames); |
| 894 | } |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 895 | return 0; |
| 896 | } |
| 897 | |
Martijn Coenen | 23c0445 | 2020-04-29 07:49:41 +0200 | [diff] [blame] | 898 | int VolumeManager::abortFuse() { |
| 899 | return android::vold::AbortFuseConnections(); |
| 900 | } |
| 901 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 902 | int VolumeManager::reset() { |
| 903 | // Tear down all existing disks/volumes and start from a blank slate so |
| 904 | // newly connected framework hears all events. |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 905 | for (const auto& vol : mInternalEmulatedVolumes) { |
| 906 | vol->destroy(); |
Gao Xiang | d263da8 | 2017-08-14 11:32:13 +0800 | [diff] [blame] | 907 | } |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 908 | mInternalEmulatedVolumes.clear(); |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 909 | |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 910 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 911 | disk->destroy(); |
| 912 | disk->create(); |
| 913 | } |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 914 | updateVirtualDisk(); |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 915 | mAddedUsers.clear(); |
Sudheer Shanka | 023b539 | 2019-02-06 12:39:19 -0800 | [diff] [blame] | 916 | mStartedUsers.clear(); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 917 | return 0; |
| 918 | } |
| 919 | |
Keun-young Park | a5bbb5e | 2017-03-13 18:02:50 -0700 | [diff] [blame] | 920 | // Can be called twice (sequentially) during shutdown. should be safe for that. |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 921 | int VolumeManager::shutdown() { |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 922 | if (mInternalEmulatedVolumes.empty()) { |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 923 | return 0; // already shutdown |
Keun-young Park | a5bbb5e | 2017-03-13 18:02:50 -0700 | [diff] [blame] | 924 | } |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 925 | android::vold::sSleepOnUnmount = false; |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 926 | for (const auto& vol : mInternalEmulatedVolumes) { |
| 927 | vol->destroy(); |
| 928 | } |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 929 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 930 | disk->destroy(); |
| 931 | } |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 932 | |
| 933 | mInternalEmulatedVolumes.clear(); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 934 | mDisks.clear(); |
Jeff Sharkey | 401b260 | 2017-12-14 22:15:20 -0700 | [diff] [blame] | 935 | mPendingDisks.clear(); |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 936 | android::vold::sSleepOnUnmount = true; |
Martijn Coenen | 23c0445 | 2020-04-29 07:49:41 +0200 | [diff] [blame] | 937 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 938 | return 0; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 939 | } |
| 940 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 941 | int VolumeManager::unmountAll() { |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 942 | std::lock_guard<std::mutex> lock(mLock); |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 943 | ATRACE_NAME("VolumeManager::unmountAll()"); |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 944 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 945 | // First, try gracefully unmounting all known devices |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame] | 946 | for (const auto& vol : mInternalEmulatedVolumes) { |
| 947 | vol->unmount(); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 948 | } |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 949 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 950 | disk->unmountAll(); |
| 951 | } |
| 952 | |
| 953 | // Worst case we might have some stale mounts lurking around, so |
| 954 | // force unmount those just to be safe. |
LongPing.WEI | 4f04606 | 2018-11-23 19:27:35 +0800 | [diff] [blame] | 955 | FILE* fp = setmntent("/proc/mounts", "re"); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 956 | if (fp == NULL) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 957 | PLOG(ERROR) << "Failed to open /proc/mounts"; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 958 | return -errno; |
| 959 | } |
| 960 | |
| 961 | // Some volumes can be stacked on each other, so force unmount in |
| 962 | // reverse order to give us the best chance of success. |
| 963 | std::list<std::string> toUnmount; |
| 964 | mntent* mentry; |
| 965 | while ((mentry = getmntent(fp)) != NULL) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 966 | auto test = std::string(mentry->mnt_dir); |
Mark Salyzyn | 86e81e7 | 2018-09-20 10:09:27 -0700 | [diff] [blame] | 967 | if ((StartsWith(test, "/mnt/") && |
| 968 | #ifdef __ANDROID_DEBUGGABLE__ |
| 969 | !StartsWith(test, "/mnt/scratch") && |
| 970 | #endif |
Martijn Coenen | b0e977a | 2020-01-11 19:24:26 +0100 | [diff] [blame] | 971 | !StartsWith(test, "/mnt/vendor") && !StartsWith(test, "/mnt/product") && |
Ricky Wai | ef63921 | 2020-04-07 13:43:20 +0100 | [diff] [blame] | 972 | !StartsWith(test, "/mnt/installer") && !StartsWith(test, "/mnt/androidwritable")) || |
Mark Salyzyn | 86e81e7 | 2018-09-20 10:09:27 -0700 | [diff] [blame] | 973 | StartsWith(test, "/storage/")) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 974 | toUnmount.push_front(test); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 975 | } |
| 976 | } |
| 977 | endmntent(fp); |
| 978 | |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 979 | for (const auto& path : toUnmount) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 980 | LOG(DEBUG) << "Tearing down stale mount " << path; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 981 | android::vold::ForceUnmount(path); |
| 982 | } |
| 983 | |
| 984 | return 0; |
| 985 | } |
| 986 | |
Martijn Coenen | 816f4d9 | 2020-02-18 15:06:37 +0100 | [diff] [blame] | 987 | int VolumeManager::setupAppDir(const std::string& path, int32_t appUid, bool fixupExistingOnly) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 988 | // Only offer to create directories for paths managed by vold |
Martijn Coenen | 13ff668 | 2019-12-24 12:57:16 +0100 | [diff] [blame] | 989 | if (!StartsWith(path, "/storage/")) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 990 | LOG(ERROR) << "Failed to find mounted volume for " << path; |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 991 | return -EINVAL; |
| 992 | } |
Martijn Coenen | 13ff668 | 2019-12-24 12:57:16 +0100 | [diff] [blame] | 993 | |
Martijn Coenen | 0a7e992 | 2020-01-24 16:17:32 +0100 | [diff] [blame] | 994 | // Find the volume it belongs to |
| 995 | auto filter_fn = [&](const VolumeBase& vol) { |
| 996 | if (vol.getState() != VolumeBase::State::kMounted) { |
| 997 | // The volume must be mounted |
| 998 | return false; |
| 999 | } |
| 1000 | if ((vol.getMountFlags() & VolumeBase::MountFlags::kVisible) == 0) { |
| 1001 | // and visible |
| 1002 | return false; |
| 1003 | } |
| 1004 | if (vol.getInternalPath().empty()) { |
| 1005 | return false; |
| 1006 | } |
| 1007 | if (vol.getMountUserId() != USER_UNKNOWN && |
| 1008 | vol.getMountUserId() != multiuser_get_user_id(appUid)) { |
| 1009 | // The app dir must be created on a volume with the same user-id |
| 1010 | return false; |
| 1011 | } |
| 1012 | if (!path.empty() && StartsWith(path, vol.getPath())) { |
| 1013 | return true; |
| 1014 | } |
| 1015 | |
| 1016 | return false; |
| 1017 | }; |
| 1018 | auto volume = findVolumeWithFilter(filter_fn); |
| 1019 | if (volume == nullptr) { |
| 1020 | LOG(ERROR) << "Failed to find mounted volume for " << path; |
| 1021 | return -EINVAL; |
| 1022 | } |
Zim | c59d774 | 2020-01-06 21:48:16 +0000 | [diff] [blame] | 1023 | // Convert paths to lower filesystem paths to avoid making FUSE requests for these reasons: |
| 1024 | // 1. A FUSE request from vold puts vold at risk of hanging if the FUSE daemon is down |
| 1025 | // 2. The FUSE daemon prevents requests on /mnt/user/0/emulated/<userid != 0> and a request |
| 1026 | // on /storage/emulated/10 means /mnt/user/0/emulated/10 |
Martijn Coenen | 0a7e992 | 2020-01-24 16:17:32 +0100 | [diff] [blame] | 1027 | const std::string lowerPath = |
| 1028 | volume->getInternalPath() + path.substr(volume->getPath().length()); |
Zim | c59d774 | 2020-01-06 21:48:16 +0000 | [diff] [blame] | 1029 | |
Martijn Coenen | 62a4b27 | 2020-01-31 15:23:09 +0100 | [diff] [blame] | 1030 | const std::string volumeRoot = volume->getRootPath(); // eg /data/media/0 |
| 1031 | |
Martijn Coenen | 816f4d9 | 2020-02-18 15:06:37 +0100 | [diff] [blame] | 1032 | if (fixupExistingOnly && (access(lowerPath.c_str(), F_OK) != 0)) { |
| 1033 | // Nothing to fixup |
| 1034 | return OK; |
| 1035 | } |
| 1036 | |
Martijn Coenen | bf205ab | 2020-04-20 15:14:48 +0200 | [diff] [blame] | 1037 | if (volume->getType() == VolumeBase::Type::kPublic) { |
| 1038 | // On public volumes, we don't need to setup permissions, as everything goes through |
| 1039 | // FUSE; just create the dirs and be done with it. |
| 1040 | return fs_mkdirs(lowerPath.c_str(), 0700); |
| 1041 | } |
| 1042 | |
Martijn Coenen | b5a31c9 | 2020-02-13 23:30:38 +0100 | [diff] [blame] | 1043 | // Create the app paths we need from the root |
Martijn Coenen | 816f4d9 | 2020-02-18 15:06:37 +0100 | [diff] [blame] | 1044 | return PrepareAppDirFromRoot(lowerPath, volumeRoot, appUid, fixupExistingOnly); |
| 1045 | } |
| 1046 | |
| 1047 | int VolumeManager::fixupAppDir(const std::string& path, int32_t appUid) { |
Daniel Rosenberg | f36bddd | 2020-05-11 22:58:42 -0700 | [diff] [blame] | 1048 | if (IsSdcardfsUsed()) { |
Martijn Coenen | 816f4d9 | 2020-02-18 15:06:37 +0100 | [diff] [blame] | 1049 | //sdcardfs magically does this for us |
| 1050 | return OK; |
| 1051 | } |
| 1052 | return setupAppDir(path, appUid, true /* fixupExistingOnly */); |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 1053 | } |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1054 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1055 | int VolumeManager::createObb(const std::string& sourcePath, const std::string& sourceKey, |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 1056 | int32_t ownerGid, std::string* outVolId) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1057 | int id = mNextObbId++; |
| 1058 | |
Martijn Coenen | d6a612a | 2020-11-19 10:49:45 +0100 | [diff] [blame] | 1059 | std::string lowerSourcePath; |
| 1060 | |
| 1061 | // Convert to lower filesystem path |
| 1062 | if (StartsWith(sourcePath, "/storage/")) { |
| 1063 | auto filter_fn = [&](const VolumeBase& vol) { |
| 1064 | if (vol.getState() != VolumeBase::State::kMounted) { |
| 1065 | // The volume must be mounted |
| 1066 | return false; |
| 1067 | } |
| 1068 | if ((vol.getMountFlags() & VolumeBase::MountFlags::kVisible) == 0) { |
| 1069 | // and visible |
| 1070 | return false; |
| 1071 | } |
| 1072 | if (vol.getInternalPath().empty()) { |
| 1073 | return false; |
| 1074 | } |
| 1075 | if (!sourcePath.empty() && StartsWith(sourcePath, vol.getPath())) { |
| 1076 | return true; |
| 1077 | } |
| 1078 | |
| 1079 | return false; |
| 1080 | }; |
| 1081 | auto volume = findVolumeWithFilter(filter_fn); |
| 1082 | if (volume == nullptr) { |
| 1083 | LOG(ERROR) << "Failed to find mounted volume for " << sourcePath; |
| 1084 | return -EINVAL; |
| 1085 | } else { |
| 1086 | lowerSourcePath = |
| 1087 | volume->getInternalPath() + sourcePath.substr(volume->getPath().length()); |
| 1088 | } |
| 1089 | } else { |
| 1090 | lowerSourcePath = sourcePath; |
| 1091 | } |
| 1092 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1093 | auto vol = std::shared_ptr<android::vold::VolumeBase>( |
Martijn Coenen | d6a612a | 2020-11-19 10:49:45 +0100 | [diff] [blame] | 1094 | new android::vold::ObbVolume(id, lowerSourcePath, sourceKey, ownerGid)); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1095 | vol->create(); |
| 1096 | |
| 1097 | mObbVolumes.push_back(vol); |
| 1098 | *outVolId = vol->getId(); |
| 1099 | return android::OK; |
| 1100 | } |
| 1101 | |
| 1102 | int VolumeManager::destroyObb(const std::string& volId) { |
| 1103 | auto i = mObbVolumes.begin(); |
| 1104 | while (i != mObbVolumes.end()) { |
| 1105 | if ((*i)->getId() == volId) { |
| 1106 | (*i)->destroy(); |
| 1107 | i = mObbVolumes.erase(i); |
| 1108 | } else { |
| 1109 | ++i; |
| 1110 | } |
| 1111 | } |
| 1112 | return android::OK; |
| 1113 | } |
| 1114 | |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 1115 | int VolumeManager::createStubVolume(const std::string& sourcePath, const std::string& mountPath, |
| 1116 | const std::string& fsType, const std::string& fsUuid, |
Risan | 73a7a85 | 2020-02-07 18:03:44 +0900 | [diff] [blame] | 1117 | const std::string& fsLabel, int32_t flags, |
Risan | 82e90de | 2020-02-04 16:07:21 +0900 | [diff] [blame] | 1118 | std::string* outVolId) { |
| 1119 | dev_t stubId = --mNextStubId; |
| 1120 | auto vol = std::shared_ptr<android::vold::StubVolume>( |
| 1121 | new android::vold::StubVolume(stubId, sourcePath, mountPath, fsType, fsUuid, fsLabel)); |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 1122 | |
Risan | 73a7a85 | 2020-02-07 18:03:44 +0900 | [diff] [blame] | 1123 | int32_t passedFlags = android::vold::Disk::Flags::kStub; |
| 1124 | passedFlags |= (flags & android::vold::Disk::Flags::kUsb); |
| 1125 | passedFlags |= (flags & android::vold::Disk::Flags::kSd); |
Risan | 82e90de | 2020-02-04 16:07:21 +0900 | [diff] [blame] | 1126 | // StubDisk doesn't have device node corresponds to it. So, a fake device |
Risan | 73a7a85 | 2020-02-07 18:03:44 +0900 | [diff] [blame] | 1127 | // number is used. |
Risan | 82e90de | 2020-02-04 16:07:21 +0900 | [diff] [blame] | 1128 | auto disk = std::shared_ptr<android::vold::Disk>( |
Risan | 73a7a85 | 2020-02-07 18:03:44 +0900 | [diff] [blame] | 1129 | new android::vold::Disk("stub", stubId, "stub", passedFlags)); |
Risan | 82e90de | 2020-02-04 16:07:21 +0900 | [diff] [blame] | 1130 | disk->initializePartition(vol); |
| 1131 | handleDiskAdded(disk); |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 1132 | *outVolId = vol->getId(); |
| 1133 | return android::OK; |
| 1134 | } |
| 1135 | |
| 1136 | int VolumeManager::destroyStubVolume(const std::string& volId) { |
Risan | 82e90de | 2020-02-04 16:07:21 +0900 | [diff] [blame] | 1137 | auto tokens = android::base::Split(volId, ":"); |
| 1138 | CHECK(tokens.size() == 2); |
| 1139 | dev_t stubId; |
| 1140 | CHECK(android::base::ParseUint(tokens[1], &stubId)); |
| 1141 | handleDiskRemoved(stubId); |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 1142 | return android::OK; |
| 1143 | } |
| 1144 | |
Risan | 8f6198d | 2018-10-26 20:56:45 -0600 | [diff] [blame] | 1145 | int VolumeManager::mountAppFuse(uid_t uid, int mountId, unique_fd* device_fd) { |
Risan | ac02a48 | 2018-10-31 21:59:47 -0600 | [diff] [blame] | 1146 | return android::vold::MountAppFuse(uid, mountId, device_fd); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1147 | } |
| 1148 | |
Risan | 8f6198d | 2018-10-26 20:56:45 -0600 | [diff] [blame] | 1149 | int VolumeManager::unmountAppFuse(uid_t uid, int mountId) { |
Risan | ac02a48 | 2018-10-31 21:59:47 -0600 | [diff] [blame] | 1150 | return android::vold::UnmountAppFuse(uid, mountId); |
Risan | 8f6198d | 2018-10-26 20:56:45 -0600 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | int VolumeManager::openAppFuseFile(uid_t uid, int mountId, int fileId, int flags) { |
Risan | ac02a48 | 2018-10-31 21:59:47 -0600 | [diff] [blame] | 1154 | return android::vold::OpenAppFuseFile(uid, mountId, fileId, flags); |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 1155 | } |