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> |
| 29 | #include <sys/types.h> |
Elliott Hughes | 0e08e84 | 2017-05-18 09:08:24 -0700 | [diff] [blame] | 30 | #include <sys/sysmacros.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> |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 33 | |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 34 | #include <linux/kdev_t.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 35 | |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 36 | #include <android-base/logging.h> |
Jeff Vander Stoep | 5889083 | 2017-10-23 17:12:31 -0700 | [diff] [blame] | 37 | #include <android-base/parseint.h> |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 38 | #include <android-base/properties.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 39 | #include <android-base/stringprintf.h> |
Jeff Vander Stoep | 5889083 | 2017-10-23 17:12:31 -0700 | [diff] [blame] | 40 | #include <android-base/strings.h> |
| 41 | |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 42 | #include <cutils/fs.h> |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 43 | #include <utils/Trace.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 44 | |
Robert Craig | b9e3ba5 | 2014-02-04 10:53:00 -0500 | [diff] [blame] | 45 | #include <selinux/android.h> |
| 46 | |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame] | 47 | #include <sysutils/NetlinkEvent.h> |
| 48 | |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 49 | #include <private/android_filesystem_config.h> |
| 50 | |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame^] | 51 | #include <ext4_utils/ext4_crypt.h> |
| 52 | |
| 53 | #include "Devmapper.h" |
| 54 | #include "Ext4Crypt.h" |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 55 | #include "Loop.h" |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame^] | 56 | #include "NetlinkManager.h" |
| 57 | #include "Process.h" |
| 58 | #include "Utils.h" |
| 59 | #include "VoldUtil.h" |
| 60 | #include "VolumeManager.h" |
| 61 | #include "cryptfs.h" |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 62 | #include "fs/Ext4.h" |
| 63 | #include "fs/Vfat.h" |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame^] | 64 | #include "model/EmulatedVolume.h" |
| 65 | #include "model/ObbVolume.h" |
San Mehat | 2396993 | 2010-01-09 07:08:06 -0800 | [diff] [blame] | 66 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 67 | using android::base::StringPrintf; |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 68 | using android::base::unique_fd; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 69 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 70 | static const char* kPathUserMount = "/mnt/user"; |
| 71 | static const char* kPathVirtualDisk = "/data/misc/vold/virtual_disk"; |
| 72 | |
| 73 | static const char* kPropVirtualDisk = "persist.sys.virtual_disk"; |
| 74 | |
| 75 | /* 512MiB is large enough for testing purposes */ |
| 76 | static const unsigned int kSizeVirtualDisk = 536870912; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 77 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 78 | static const unsigned int kMajorBlockMmc = 179; |
Yu Ning | 942d4e8 | 2016-01-08 17:36:47 +0800 | [diff] [blame] | 79 | static const unsigned int kMajorBlockExperimentalMin = 240; |
| 80 | static const unsigned int kMajorBlockExperimentalMax = 254; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 81 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 82 | VolumeManager *VolumeManager::sInstance = NULL; |
| 83 | |
| 84 | VolumeManager *VolumeManager::Instance() { |
| 85 | if (!sInstance) |
| 86 | sInstance = new VolumeManager(); |
| 87 | return sInstance; |
| 88 | } |
| 89 | |
| 90 | VolumeManager::VolumeManager() { |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 91 | mDebug = false; |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 92 | mNextObbId = 0; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | VolumeManager::~VolumeManager() { |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 96 | } |
| 97 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 98 | int VolumeManager::updateVirtualDisk() { |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 99 | ATRACE_NAME("VolumeManager::updateVirtualDisk"); |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 100 | if (android::base::GetBoolProperty(kPropVirtualDisk, false)) { |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 101 | if (access(kPathVirtualDisk, F_OK) != 0) { |
| 102 | Loop::createImageFile(kPathVirtualDisk, kSizeVirtualDisk / 512); |
| 103 | } |
| 104 | |
| 105 | if (mVirtualDisk == nullptr) { |
| 106 | if (Loop::create(kPathVirtualDisk, mVirtualDiskPath) != 0) { |
| 107 | LOG(ERROR) << "Failed to create virtual disk"; |
| 108 | return -1; |
| 109 | } |
| 110 | |
| 111 | struct stat buf; |
| 112 | if (stat(mVirtualDiskPath.c_str(), &buf) < 0) { |
| 113 | PLOG(ERROR) << "Failed to stat " << mVirtualDiskPath; |
| 114 | return -1; |
| 115 | } |
| 116 | |
| 117 | auto disk = new android::vold::Disk("virtual", buf.st_rdev, "virtual", |
| 118 | android::vold::Disk::Flags::kAdoptable | android::vold::Disk::Flags::kSd); |
| 119 | disk->create(); |
| 120 | mVirtualDisk = std::shared_ptr<android::vold::Disk>(disk); |
| 121 | mDisks.push_back(mVirtualDisk); |
| 122 | } |
| 123 | } else { |
| 124 | if (mVirtualDisk != nullptr) { |
| 125 | dev_t device = mVirtualDisk->getDevice(); |
| 126 | |
| 127 | auto i = mDisks.begin(); |
| 128 | while (i != mDisks.end()) { |
| 129 | if ((*i)->getDevice() == device) { |
| 130 | (*i)->destroy(); |
| 131 | i = mDisks.erase(i); |
| 132 | } else { |
| 133 | ++i; |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | Loop::destroyByDevice(mVirtualDiskPath.c_str()); |
| 138 | mVirtualDisk = nullptr; |
| 139 | } |
| 140 | |
| 141 | if (access(kPathVirtualDisk, F_OK) == 0) { |
| 142 | unlink(kPathVirtualDisk); |
| 143 | } |
| 144 | } |
| 145 | return 0; |
| 146 | } |
| 147 | |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 148 | int VolumeManager::setDebug(bool enable) { |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 149 | mDebug = enable; |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 150 | return 0; |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 151 | } |
| 152 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 153 | int VolumeManager::start() { |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 154 | ATRACE_NAME("VolumeManager::start"); |
| 155 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 156 | // Always start from a clean slate by unmounting everything in |
| 157 | // directories that we own, in case we crashed. |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 158 | unmountAll(); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 159 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 160 | Devmapper::destroyAll(); |
| 161 | Loop::destroyAll(); |
| 162 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 163 | // Assume that we always have an emulated volume on internal |
| 164 | // storage; the framework will decide if it should be mounted. |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 165 | CHECK(mInternalEmulated == nullptr); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 166 | mInternalEmulated = std::shared_ptr<android::vold::VolumeBase>( |
Jeff Sharkey | 3161fb3 | 2015-04-12 16:03:33 -0700 | [diff] [blame] | 167 | new android::vold::EmulatedVolume("/data/media")); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 168 | mInternalEmulated->create(); |
| 169 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 170 | // Consider creating a virtual disk |
| 171 | updateVirtualDisk(); |
| 172 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 173 | return 0; |
| 174 | } |
| 175 | |
| 176 | int VolumeManager::stop() { |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 177 | CHECK(mInternalEmulated != nullptr); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 178 | mInternalEmulated->destroy(); |
| 179 | mInternalEmulated = nullptr; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 180 | return 0; |
| 181 | } |
| 182 | |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame] | 183 | void VolumeManager::handleBlockEvent(NetlinkEvent *evt) { |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 184 | std::lock_guard<std::mutex> lock(mLock); |
| 185 | |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 186 | if (mDebug) { |
| 187 | LOG(VERBOSE) << "----------------"; |
| 188 | LOG(VERBOSE) << "handleBlockEvent with action " << (int) evt->getAction(); |
| 189 | evt->dump(); |
| 190 | } |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 191 | |
Mateusz Nowak | 6440379 | 2015-08-03 16:39:19 +0200 | [diff] [blame] | 192 | std::string eventPath(evt->findParam("DEVPATH")?evt->findParam("DEVPATH"):""); |
| 193 | std::string devType(evt->findParam("DEVTYPE")?evt->findParam("DEVTYPE"):""); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 194 | |
| 195 | if (devType != "disk") return; |
| 196 | |
Jeff Sharkey | 95440eb | 2017-09-18 18:19:28 -0600 | [diff] [blame] | 197 | int major = std::stoi(evt->findParam("MAJOR")); |
| 198 | int minor = std::stoi(evt->findParam("MINOR")); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 199 | dev_t device = makedev(major, minor); |
| 200 | |
| 201 | switch (evt->getAction()) { |
| 202 | case NetlinkEvent::Action::kAdd: { |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 203 | for (const auto& source : mDiskSources) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 204 | if (source->matches(eventPath)) { |
Yu Ning | 942d4e8 | 2016-01-08 17:36:47 +0800 | [diff] [blame] | 205 | // For now, assume that MMC and virtio-blk (the latter is |
| 206 | // emulator-specific; see Disk.cpp for details) devices are SD, |
| 207 | // and that everything else is USB |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 208 | int flags = source->getFlags(); |
Yu Ning | 942d4e8 | 2016-01-08 17:36:47 +0800 | [diff] [blame] | 209 | if (major == kMajorBlockMmc |
| 210 | || (android::vold::IsRunningInEmulator() |
| 211 | && major >= (int) kMajorBlockExperimentalMin |
| 212 | && major <= (int) kMajorBlockExperimentalMax)) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 213 | flags |= android::vold::Disk::Flags::kSd; |
| 214 | } else { |
| 215 | flags |= android::vold::Disk::Flags::kUsb; |
| 216 | } |
| 217 | |
| 218 | auto disk = new android::vold::Disk(eventPath, device, |
| 219 | source->getNickname(), flags); |
| 220 | disk->create(); |
| 221 | mDisks.push_back(std::shared_ptr<android::vold::Disk>(disk)); |
| 222 | break; |
| 223 | } |
| 224 | } |
| 225 | break; |
| 226 | } |
| 227 | case NetlinkEvent::Action::kChange: { |
Jeff Sharkey | 7d9d011 | 2015-04-14 23:14:23 -0700 | [diff] [blame] | 228 | LOG(DEBUG) << "Disk at " << major << ":" << minor << " changed"; |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 229 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 230 | if (disk->getDevice() == device) { |
| 231 | disk->readMetadata(); |
| 232 | disk->readPartitions(); |
| 233 | } |
| 234 | } |
| 235 | break; |
| 236 | } |
| 237 | case NetlinkEvent::Action::kRemove: { |
| 238 | auto i = mDisks.begin(); |
| 239 | while (i != mDisks.end()) { |
| 240 | if ((*i)->getDevice() == device) { |
| 241 | (*i)->destroy(); |
| 242 | i = mDisks.erase(i); |
| 243 | } else { |
| 244 | ++i; |
| 245 | } |
| 246 | } |
| 247 | break; |
| 248 | } |
| 249 | default: { |
| 250 | LOG(WARNING) << "Unexpected block event action " << (int) evt->getAction(); |
| 251 | break; |
| 252 | } |
| 253 | } |
| 254 | } |
| 255 | |
| 256 | void VolumeManager::addDiskSource(const std::shared_ptr<DiskSource>& diskSource) { |
Wei Wang | 6b455c2 | 2017-01-20 11:52:33 -0800 | [diff] [blame] | 257 | std::lock_guard<std::mutex> lock(mLock); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 258 | mDiskSources.push_back(diskSource); |
| 259 | } |
| 260 | |
| 261 | std::shared_ptr<android::vold::Disk> VolumeManager::findDisk(const std::string& id) { |
| 262 | for (auto disk : mDisks) { |
| 263 | if (disk->getId() == id) { |
| 264 | return disk; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 265 | } |
| 266 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 267 | return nullptr; |
| 268 | } |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 269 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 270 | std::shared_ptr<android::vold::VolumeBase> VolumeManager::findVolume(const std::string& id) { |
Gao Xiang | d263da8 | 2017-08-14 11:32:13 +0800 | [diff] [blame] | 271 | // Vold could receive "mount" after "shutdown" command in the extreme case. |
| 272 | // If this happens, mInternalEmulated will equal nullptr and |
| 273 | // we need to deal with it in order to avoid null pointer crash. |
| 274 | if (mInternalEmulated != nullptr && mInternalEmulated->getId() == id) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 275 | return mInternalEmulated; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 276 | } |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 277 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 278 | auto vol = disk->findVolume(id); |
| 279 | if (vol != nullptr) { |
| 280 | return vol; |
| 281 | } |
| 282 | } |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 283 | for (const auto& vol : mObbVolumes) { |
| 284 | if (vol->getId() == id) { |
| 285 | return vol; |
| 286 | } |
| 287 | } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 288 | return nullptr; |
| 289 | } |
| 290 | |
Jeff Sharkey | c86ab6f | 2015-06-26 14:02:09 -0700 | [diff] [blame] | 291 | void VolumeManager::listVolumes(android::vold::VolumeBase::Type type, |
| 292 | std::list<std::string>& list) { |
| 293 | list.clear(); |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 294 | for (const auto& disk : mDisks) { |
Jeff Sharkey | c86ab6f | 2015-06-26 14:02:09 -0700 | [diff] [blame] | 295 | disk->listVolumes(type, list); |
| 296 | } |
| 297 | } |
| 298 | |
Jeff Sharkey | 3ce1825 | 2017-10-24 11:08:45 -0600 | [diff] [blame] | 299 | int VolumeManager::forgetPartition(const std::string& partGuid, const std::string& fsUuid) { |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 300 | std::string normalizedGuid; |
| 301 | if (android::vold::NormalizeHex(partGuid, normalizedGuid)) { |
| 302 | LOG(WARNING) << "Invalid GUID " << partGuid; |
| 303 | return -1; |
| 304 | } |
| 305 | |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame^] | 306 | bool success = true; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 307 | std::string keyPath = android::vold::BuildKeyPath(normalizedGuid); |
| 308 | if (unlink(keyPath.c_str()) != 0) { |
| 309 | LOG(ERROR) << "Failed to unlink " << keyPath; |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame^] | 310 | success = false; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 311 | } |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame^] | 312 | if (e4crypt_is_native()) { |
| 313 | if (!e4crypt_destroy_volume_keys(fsUuid)) { |
| 314 | success = false; |
| 315 | } |
| 316 | } |
| 317 | return success ? 0 : -1; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 318 | } |
| 319 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 320 | int VolumeManager::linkPrimary(userid_t userId) { |
| 321 | std::string source(mPrimary->getPath()); |
| 322 | if (mPrimary->getType() == android::vold::VolumeBase::Type::kEmulated) { |
| 323 | source = StringPrintf("%s/%d", source.c_str(), userId); |
Jeff Sharkey | 32679a8 | 2015-07-21 14:22:01 -0700 | [diff] [blame] | 324 | fs_prepare_dir(source.c_str(), 0755, AID_ROOT, AID_ROOT); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | std::string target(StringPrintf("/mnt/user/%d/primary", userId)); |
| 328 | if (TEMP_FAILURE_RETRY(unlink(target.c_str()))) { |
| 329 | if (errno != ENOENT) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 330 | PLOG(WARNING) << "Failed to unlink " << target; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 331 | } |
| 332 | } |
Jeff Sharkey | 1bfb375 | 2015-04-29 15:22:23 -0700 | [diff] [blame] | 333 | LOG(DEBUG) << "Linking " << source << " to " << target; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 334 | if (TEMP_FAILURE_RETRY(symlink(source.c_str(), target.c_str()))) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 335 | PLOG(WARNING) << "Failed to link"; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 336 | return -errno; |
| 337 | } |
| 338 | return 0; |
| 339 | } |
| 340 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 341 | int VolumeManager::onUserAdded(userid_t userId, int userSerialNumber) { |
| 342 | mAddedUsers[userId] = userSerialNumber; |
| 343 | return 0; |
| 344 | } |
| 345 | |
| 346 | int VolumeManager::onUserRemoved(userid_t userId) { |
| 347 | mAddedUsers.erase(userId); |
| 348 | return 0; |
| 349 | } |
| 350 | |
| 351 | int VolumeManager::onUserStarted(userid_t userId) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 352 | // Note that sometimes the system will spin up processes from Zygote |
| 353 | // before actually starting the user, so we're okay if Zygote |
| 354 | // already created this directory. |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 355 | std::string path(StringPrintf("%s/%d", kPathUserMount, userId)); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 356 | fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT); |
| 357 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 358 | mStartedUsers.insert(userId); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 359 | if (mPrimary) { |
| 360 | linkPrimary(userId); |
| 361 | } |
| 362 | return 0; |
| 363 | } |
| 364 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 365 | int VolumeManager::onUserStopped(userid_t userId) { |
| 366 | mStartedUsers.erase(userId); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 367 | return 0; |
| 368 | } |
| 369 | |
| 370 | int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol) { |
| 371 | mPrimary = vol; |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 372 | for (userid_t userId : mStartedUsers) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 373 | linkPrimary(userId); |
| 374 | } |
| 375 | return 0; |
| 376 | } |
| 377 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 378 | static int unmount_tree(const std::string& prefix) { |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 379 | FILE* fp = setmntent("/proc/mounts", "r"); |
| 380 | if (fp == NULL) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 381 | PLOG(ERROR) << "Failed to open /proc/mounts"; |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 382 | return -errno; |
| 383 | } |
| 384 | |
| 385 | // Some volumes can be stacked on each other, so force unmount in |
| 386 | // reverse order to give us the best chance of success. |
| 387 | std::list<std::string> toUnmount; |
| 388 | mntent* mentry; |
| 389 | while ((mentry = getmntent(fp)) != NULL) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 390 | auto test = std::string(mentry->mnt_dir) + "/"; |
| 391 | if (android::base::StartsWith(test, prefix.c_str())) { |
| 392 | toUnmount.push_front(test); |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 393 | } |
| 394 | } |
| 395 | endmntent(fp); |
| 396 | |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 397 | for (const auto& path : toUnmount) { |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 398 | if (umount2(path.c_str(), MNT_DETACH)) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 399 | PLOG(ERROR) << "Failed to unmount " << path; |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 400 | } |
| 401 | } |
| 402 | return 0; |
| 403 | } |
| 404 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 405 | int VolumeManager::remountUid(uid_t uid, const std::string& mode) { |
| 406 | LOG(DEBUG) << "Remounting " << uid << " as mode " << mode; |
| 407 | |
| 408 | DIR* dir; |
| 409 | struct dirent* de; |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 410 | std::string rootName; |
| 411 | std::string pidName; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 412 | int pidFd; |
| 413 | int nsFd; |
| 414 | struct stat sb; |
| 415 | pid_t child; |
| 416 | |
| 417 | if (!(dir = opendir("/proc"))) { |
| 418 | PLOG(ERROR) << "Failed to opendir"; |
| 419 | return -1; |
| 420 | } |
| 421 | |
| 422 | // Figure out root namespace to compare against below |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 423 | if (!android::vold::Readlinkat(dirfd(dir), "1/ns/mnt", &rootName)) { |
| 424 | PLOG(ERROR) << "Failed to read root namespace"; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 425 | closedir(dir); |
| 426 | return -1; |
| 427 | } |
| 428 | |
| 429 | // Poke through all running PIDs look for apps running as UID |
| 430 | while ((de = readdir(dir))) { |
Jeff Vander Stoep | 5889083 | 2017-10-23 17:12:31 -0700 | [diff] [blame] | 431 | pid_t pid; |
| 432 | if (de->d_type != DT_DIR) continue; |
| 433 | if (!android::base::ParseInt(de->d_name, &pid)) continue; |
| 434 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 435 | pidFd = -1; |
| 436 | nsFd = -1; |
| 437 | |
| 438 | pidFd = openat(dirfd(dir), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC); |
| 439 | if (pidFd < 0) { |
| 440 | goto next; |
| 441 | } |
| 442 | if (fstat(pidFd, &sb) != 0) { |
| 443 | PLOG(WARNING) << "Failed to stat " << de->d_name; |
| 444 | goto next; |
| 445 | } |
| 446 | if (sb.st_uid != uid) { |
| 447 | goto next; |
| 448 | } |
| 449 | |
| 450 | // Matches so far, but refuse to touch if in root namespace |
| 451 | LOG(DEBUG) << "Found matching PID " << de->d_name; |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 452 | if (!android::vold::Readlinkat(pidFd, "ns/mnt", &pidName)) { |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 453 | PLOG(WARNING) << "Failed to read namespace for " << de->d_name; |
| 454 | goto next; |
| 455 | } |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 456 | if (rootName == pidName) { |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 457 | LOG(WARNING) << "Skipping due to root namespace"; |
| 458 | goto next; |
| 459 | } |
| 460 | |
| 461 | // We purposefully leave the namespace open across the fork |
Jeff Sharkey | fd3dc3c | 2017-03-27 10:49:21 -0600 | [diff] [blame] | 462 | nsFd = openat(pidFd, "ns/mnt", O_RDONLY); // not O_CLOEXEC |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 463 | if (nsFd < 0) { |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 464 | PLOG(WARNING) << "Failed to open namespace for " << de->d_name; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 465 | goto next; |
| 466 | } |
| 467 | |
| 468 | if (!(child = fork())) { |
| 469 | if (setns(nsFd, CLONE_NEWNS) != 0) { |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 470 | PLOG(ERROR) << "Failed to setns for " << de->d_name; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 471 | _exit(1); |
| 472 | } |
| 473 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 474 | unmount_tree("/storage/"); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 475 | |
| 476 | std::string storageSource; |
| 477 | if (mode == "default") { |
Jeff Sharkey | 1bd078f | 2015-08-06 11:40:00 -0700 | [diff] [blame] | 478 | storageSource = "/mnt/runtime/default"; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 479 | } else if (mode == "read") { |
Jeff Sharkey | 1bd078f | 2015-08-06 11:40:00 -0700 | [diff] [blame] | 480 | storageSource = "/mnt/runtime/read"; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 481 | } else if (mode == "write") { |
Jeff Sharkey | 1bd078f | 2015-08-06 11:40:00 -0700 | [diff] [blame] | 482 | storageSource = "/mnt/runtime/write"; |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 483 | } else { |
| 484 | // Sane default of no storage visible |
| 485 | _exit(0); |
| 486 | } |
| 487 | if (TEMP_FAILURE_RETRY(mount(storageSource.c_str(), "/storage", |
Hidehiko Abe | 674bed1 | 2016-03-09 16:42:10 +0900 | [diff] [blame] | 488 | NULL, MS_BIND | MS_REC, NULL)) == -1) { |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 489 | PLOG(ERROR) << "Failed to mount " << storageSource << " for " |
| 490 | << de->d_name; |
| 491 | _exit(1); |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 492 | } |
Hidehiko Abe | 674bed1 | 2016-03-09 16:42:10 +0900 | [diff] [blame] | 493 | if (TEMP_FAILURE_RETRY(mount(NULL, "/storage", NULL, |
| 494 | MS_REC | MS_SLAVE, NULL)) == -1) { |
| 495 | PLOG(ERROR) << "Failed to set MS_SLAVE to /storage for " |
| 496 | << de->d_name; |
| 497 | _exit(1); |
| 498 | } |
Jeff Sharkey | c7b5b57 | 2015-06-30 15:54:17 -0700 | [diff] [blame] | 499 | |
| 500 | // Mount user-specific symlink helper into place |
| 501 | userid_t user_id = multiuser_get_user_id(uid); |
| 502 | std::string userSource(StringPrintf("/mnt/user/%d", user_id)); |
| 503 | if (TEMP_FAILURE_RETRY(mount(userSource.c_str(), "/storage/self", |
| 504 | NULL, MS_BIND, NULL)) == -1) { |
| 505 | PLOG(ERROR) << "Failed to mount " << userSource << " for " |
| 506 | << de->d_name; |
| 507 | _exit(1); |
| 508 | } |
| 509 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 510 | _exit(0); |
| 511 | } |
| 512 | |
| 513 | if (child == -1) { |
| 514 | PLOG(ERROR) << "Failed to fork"; |
| 515 | goto next; |
| 516 | } else { |
| 517 | TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0)); |
| 518 | } |
| 519 | |
| 520 | next: |
| 521 | close(nsFd); |
| 522 | close(pidFd); |
| 523 | } |
| 524 | closedir(dir); |
| 525 | return 0; |
| 526 | } |
| 527 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 528 | int VolumeManager::reset() { |
| 529 | // Tear down all existing disks/volumes and start from a blank slate so |
| 530 | // newly connected framework hears all events. |
Gao Xiang | d263da8 | 2017-08-14 11:32:13 +0800 | [diff] [blame] | 531 | if (mInternalEmulated != nullptr) { |
| 532 | mInternalEmulated->destroy(); |
| 533 | mInternalEmulated->create(); |
| 534 | } |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 535 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 536 | disk->destroy(); |
| 537 | disk->create(); |
| 538 | } |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 539 | updateVirtualDisk(); |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 540 | mAddedUsers.clear(); |
| 541 | mStartedUsers.clear(); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 542 | return 0; |
| 543 | } |
| 544 | |
Keun-young Park | a5bbb5e | 2017-03-13 18:02:50 -0700 | [diff] [blame] | 545 | // Can be called twice (sequentially) during shutdown. should be safe for that. |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 546 | int VolumeManager::shutdown() { |
Keun-young Park | a5bbb5e | 2017-03-13 18:02:50 -0700 | [diff] [blame] | 547 | if (mInternalEmulated == nullptr) { |
| 548 | return 0; // already shutdown |
| 549 | } |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 550 | android::vold::sSleepOnUnmount = false; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 551 | mInternalEmulated->destroy(); |
Keun-young Park | a5bbb5e | 2017-03-13 18:02:50 -0700 | [diff] [blame] | 552 | mInternalEmulated = nullptr; |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 553 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 554 | disk->destroy(); |
| 555 | } |
| 556 | mDisks.clear(); |
Paul Crowley | 56292ef | 2017-10-20 08:07:53 -0700 | [diff] [blame] | 557 | android::vold::sSleepOnUnmount = true; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 558 | return 0; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 559 | } |
| 560 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 561 | int VolumeManager::unmountAll() { |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 562 | std::lock_guard<std::mutex> lock(mLock); |
Jeff Sharkey | 67b8c49 | 2017-09-21 17:08:43 -0600 | [diff] [blame] | 563 | ATRACE_NAME("VolumeManager::unmountAll()"); |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 564 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 565 | // First, try gracefully unmounting all known devices |
| 566 | if (mInternalEmulated != nullptr) { |
| 567 | mInternalEmulated->unmount(); |
| 568 | } |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 569 | for (const auto& disk : mDisks) { |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 570 | disk->unmountAll(); |
| 571 | } |
| 572 | |
| 573 | // Worst case we might have some stale mounts lurking around, so |
| 574 | // force unmount those just to be safe. |
| 575 | FILE* fp = setmntent("/proc/mounts", "r"); |
| 576 | if (fp == NULL) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 577 | PLOG(ERROR) << "Failed to open /proc/mounts"; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 578 | return -errno; |
| 579 | } |
| 580 | |
| 581 | // Some volumes can be stacked on each other, so force unmount in |
| 582 | // reverse order to give us the best chance of success. |
| 583 | std::list<std::string> toUnmount; |
| 584 | mntent* mentry; |
| 585 | while ((mentry = getmntent(fp)) != NULL) { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 586 | auto test = std::string(mentry->mnt_dir); |
| 587 | if (android::base::StartsWith(test, "/mnt/") |
| 588 | || android::base::StartsWith(test, "/storage/")) { |
| 589 | toUnmount.push_front(test); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 590 | } |
| 591 | } |
| 592 | endmntent(fp); |
| 593 | |
Chih-Hung Hsieh | 11a2ce8 | 2016-07-27 14:11:02 -0700 | [diff] [blame] | 594 | for (const auto& path : toUnmount) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 595 | LOG(DEBUG) << "Tearing down stale mount " << path; |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 596 | android::vold::ForceUnmount(path); |
| 597 | } |
| 598 | |
| 599 | return 0; |
| 600 | } |
| 601 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 602 | extern "C" int vold_unmountAll(void) { |
Ken Sumrall | 425524d | 2012-06-14 20:55:28 -0700 | [diff] [blame] | 603 | VolumeManager *vm = VolumeManager::Instance(); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 604 | return vm->unmountAll(); |
Ken Sumrall | 425524d | 2012-06-14 20:55:28 -0700 | [diff] [blame] | 605 | } |
| 606 | |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 607 | int VolumeManager::mkdirs(const std::string& path) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 608 | // Only offer to create directories for paths managed by vold |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 609 | if (android::base::StartsWith(path, "/storage/")) { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 610 | // fs_mkdirs() does symlink checking and relative path enforcement |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 611 | return fs_mkdirs(path.c_str(), 0700); |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 612 | } else { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 613 | LOG(ERROR) << "Failed to find mounted volume for " << path; |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 614 | return -EINVAL; |
| 615 | } |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 616 | } |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 617 | |
| 618 | static size_t kAppFuseMaxMountPointName = 32; |
| 619 | |
| 620 | static android::status_t getMountPath(uid_t uid, const std::string& name, std::string* path) { |
| 621 | if (name.size() > kAppFuseMaxMountPointName) { |
| 622 | LOG(ERROR) << "AppFuse mount name is too long."; |
| 623 | return -EINVAL; |
| 624 | } |
| 625 | for (size_t i = 0; i < name.size(); i++) { |
| 626 | if (!isalnum(name[i])) { |
| 627 | LOG(ERROR) << "AppFuse mount name contains invalid character."; |
| 628 | return -EINVAL; |
| 629 | } |
| 630 | } |
| 631 | *path = android::base::StringPrintf("/mnt/appfuse/%d_%s", uid, name.c_str()); |
| 632 | return android::OK; |
| 633 | } |
| 634 | |
| 635 | static android::status_t mountInNamespace(uid_t uid, int device_fd, const std::string& path) { |
| 636 | // Remove existing mount. |
| 637 | android::vold::ForceUnmount(path); |
| 638 | |
| 639 | const auto opts = android::base::StringPrintf( |
| 640 | "fd=%i," |
| 641 | "rootmode=40000," |
| 642 | "default_permissions," |
| 643 | "allow_other," |
| 644 | "user_id=%d,group_id=%d," |
| 645 | "context=\"u:object_r:app_fuse_file:s0\"," |
| 646 | "fscontext=u:object_r:app_fusefs:s0", |
| 647 | device_fd, |
| 648 | uid, |
| 649 | uid); |
| 650 | |
| 651 | const int result = TEMP_FAILURE_RETRY(mount( |
| 652 | "/dev/fuse", path.c_str(), "fuse", |
| 653 | MS_NOSUID | MS_NODEV | MS_NOEXEC | MS_NOATIME, opts.c_str())); |
| 654 | if (result != 0) { |
| 655 | PLOG(ERROR) << "Failed to mount " << path; |
| 656 | return -errno; |
| 657 | } |
| 658 | |
| 659 | return android::OK; |
| 660 | } |
| 661 | |
| 662 | static android::status_t runCommandInNamespace(const std::string& command, |
| 663 | uid_t uid, |
| 664 | pid_t pid, |
| 665 | const std::string& path, |
| 666 | int device_fd) { |
| 667 | if (DEBUG_APPFUSE) { |
| 668 | LOG(DEBUG) << "Run app fuse command " << command << " for the path " << path |
| 669 | << " in namespace " << uid; |
| 670 | } |
| 671 | |
| 672 | unique_fd dir(open("/proc", O_RDONLY | O_DIRECTORY | O_CLOEXEC)); |
| 673 | if (dir.get() == -1) { |
| 674 | PLOG(ERROR) << "Failed to open /proc"; |
| 675 | return -errno; |
| 676 | } |
| 677 | |
| 678 | // Obtains process file descriptor. |
| 679 | const std::string pid_str = android::base::StringPrintf("%d", pid); |
| 680 | const unique_fd pid_fd( |
| 681 | openat(dir.get(), pid_str.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC)); |
| 682 | if (pid_fd.get() == -1) { |
| 683 | PLOG(ERROR) << "Failed to open /proc/" << pid; |
| 684 | return -errno; |
| 685 | } |
| 686 | |
| 687 | // Check UID of process. |
| 688 | { |
| 689 | struct stat sb; |
| 690 | const int result = fstat(pid_fd.get(), &sb); |
| 691 | if (result == -1) { |
| 692 | PLOG(ERROR) << "Failed to stat /proc/" << pid; |
| 693 | return -errno; |
| 694 | } |
| 695 | if (sb.st_uid != AID_SYSTEM) { |
| 696 | LOG(ERROR) << "Only system can mount appfuse. UID expected=" << AID_SYSTEM |
| 697 | << ", actual=" << sb.st_uid; |
| 698 | return -EPERM; |
| 699 | } |
| 700 | } |
| 701 | |
| 702 | // Matches so far, but refuse to touch if in root namespace |
| 703 | { |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 704 | std::string rootName; |
| 705 | std::string pidName; |
| 706 | if (!android::vold::Readlinkat(dir.get(), "1/ns/mnt", &rootName) |
| 707 | || !android::vold::Readlinkat(pid_fd.get(), "ns/mnt", &pidName)) { |
| 708 | PLOG(ERROR) << "Failed to read namespaces"; |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 709 | return -EPERM; |
| 710 | } |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 711 | if (rootName == pidName) { |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 712 | LOG(ERROR) << "Don't mount appfuse in root namespace"; |
| 713 | return -EPERM; |
| 714 | } |
| 715 | } |
| 716 | |
| 717 | // We purposefully leave the namespace open across the fork |
| 718 | unique_fd ns_fd(openat(pid_fd.get(), "ns/mnt", O_RDONLY)); // not O_CLOEXEC |
| 719 | if (ns_fd.get() < 0) { |
| 720 | PLOG(ERROR) << "Failed to open namespace for /proc/" << pid << "/ns/mnt"; |
| 721 | return -errno; |
| 722 | } |
| 723 | |
| 724 | int child = fork(); |
| 725 | if (child == 0) { |
| 726 | if (setns(ns_fd.get(), CLONE_NEWNS) != 0) { |
| 727 | PLOG(ERROR) << "Failed to setns"; |
| 728 | _exit(-errno); |
| 729 | } |
| 730 | |
| 731 | if (command == "mount") { |
| 732 | _exit(mountInNamespace(uid, device_fd, path)); |
| 733 | } else if (command == "unmount") { |
| 734 | // If it's just after all FD opened on mount point are closed, umount2 can fail with |
| 735 | // EBUSY. To avoid the case, specify MNT_DETACH. |
| 736 | if (umount2(path.c_str(), UMOUNT_NOFOLLOW | MNT_DETACH) != 0 && |
| 737 | errno != EINVAL && errno != ENOENT) { |
| 738 | PLOG(ERROR) << "Failed to unmount directory."; |
| 739 | _exit(-errno); |
| 740 | } |
| 741 | if (rmdir(path.c_str()) != 0) { |
| 742 | PLOG(ERROR) << "Failed to remove the mount directory."; |
| 743 | _exit(-errno); |
| 744 | } |
| 745 | _exit(android::OK); |
| 746 | } else { |
| 747 | LOG(ERROR) << "Unknown appfuse command " << command; |
| 748 | _exit(-EPERM); |
| 749 | } |
| 750 | } |
| 751 | |
| 752 | if (child == -1) { |
| 753 | PLOG(ERROR) << "Failed to folk child process"; |
| 754 | return -errno; |
| 755 | } |
| 756 | |
| 757 | android::status_t status; |
| 758 | TEMP_FAILURE_RETRY(waitpid(child, &status, 0)); |
| 759 | |
| 760 | return status; |
| 761 | } |
| 762 | |
| 763 | int VolumeManager::createObb(const std::string& sourcePath, const std::string& sourceKey, |
| 764 | int32_t ownerGid, std::string* outVolId) { |
| 765 | int id = mNextObbId++; |
| 766 | |
| 767 | auto vol = std::shared_ptr<android::vold::VolumeBase>( |
| 768 | new android::vold::ObbVolume(id, sourcePath, sourceKey, ownerGid)); |
| 769 | vol->create(); |
| 770 | |
| 771 | mObbVolumes.push_back(vol); |
| 772 | *outVolId = vol->getId(); |
| 773 | return android::OK; |
| 774 | } |
| 775 | |
| 776 | int VolumeManager::destroyObb(const std::string& volId) { |
| 777 | auto i = mObbVolumes.begin(); |
| 778 | while (i != mObbVolumes.end()) { |
| 779 | if ((*i)->getId() == volId) { |
| 780 | (*i)->destroy(); |
| 781 | i = mObbVolumes.erase(i); |
| 782 | } else { |
| 783 | ++i; |
| 784 | } |
| 785 | } |
| 786 | return android::OK; |
| 787 | } |
| 788 | |
| 789 | int VolumeManager::mountAppFuse(uid_t uid, pid_t pid, int mountId, |
| 790 | android::base::unique_fd* device_fd) { |
| 791 | std::string name = std::to_string(mountId); |
| 792 | |
| 793 | // Check mount point name. |
| 794 | std::string path; |
| 795 | if (getMountPath(uid, name, &path) != android::OK) { |
| 796 | LOG(ERROR) << "Invalid mount point name"; |
| 797 | return -1; |
| 798 | } |
| 799 | |
| 800 | // Create directories. |
| 801 | const android::status_t result = android::vold::PrepareDir(path, 0700, 0, 0); |
| 802 | if (result != android::OK) { |
| 803 | PLOG(ERROR) << "Failed to prepare directory " << path; |
| 804 | return -1; |
| 805 | } |
| 806 | |
| 807 | // Open device FD. |
| 808 | device_fd->reset(open("/dev/fuse", O_RDWR)); // not O_CLOEXEC |
| 809 | if (device_fd->get() == -1) { |
| 810 | PLOG(ERROR) << "Failed to open /dev/fuse"; |
| 811 | return -1; |
| 812 | } |
| 813 | |
| 814 | // Mount. |
| 815 | return runCommandInNamespace("mount", uid, pid, path, device_fd->get()); |
| 816 | } |
| 817 | |
| 818 | int VolumeManager::unmountAppFuse(uid_t uid, pid_t pid, int mountId) { |
| 819 | std::string name = std::to_string(mountId); |
| 820 | |
| 821 | // Check mount point name. |
| 822 | std::string path; |
| 823 | if (getMountPath(uid, name, &path) != android::OK) { |
| 824 | LOG(ERROR) << "Invalid mount point name"; |
| 825 | return -1; |
| 826 | } |
| 827 | |
| 828 | return runCommandInNamespace("unmount", uid, pid, path, -1 /* device_fd */); |
| 829 | } |