blob: e744c190de61f8df300da29ad5f97078cdf178a8 [file] [log] [blame]
San Mehatf1b736b2009-10-10 17:22:08 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jeff Sharkey67b8c492017-09-21 17:08:43 -060017#define ATRACE_TAG ATRACE_TAG_PACKAGE_MANAGER
18
Yabin Cuid1104f72015-01-02 13:28:28 -080019#include <dirent.h>
San Mehatf1b736b2009-10-10 17:22:08 -070020#include <errno.h>
San Mehata2677e42009-12-13 10:40:18 -080021#include <fcntl.h>
Yabin Cuid1104f72015-01-02 13:28:28 -080022#include <mntent.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <sys/ioctl.h>
27#include <sys/mount.h>
San Mehata19b2502010-01-06 10:33:53 -080028#include <sys/stat.h>
29#include <sys/types.h>
Elliott Hughes0e08e842017-05-18 09:08:24 -070030#include <sys/sysmacros.h>
Jeff Sharkey66270a22015-06-24 11:49:24 -070031#include <sys/wait.h>
Yabin Cuid1104f72015-01-02 13:28:28 -080032#include <unistd.h>
San Mehata19b2502010-01-06 10:33:53 -080033
San Mehata2677e42009-12-13 10:40:18 -080034#include <linux/kdev_t.h>
San Mehatf1b736b2009-10-10 17:22:08 -070035
Elliott Hughes7e128fb2015-12-04 15:50:53 -080036#include <android-base/logging.h>
Jeff Vander Stoep58890832017-10-23 17:12:31 -070037#include <android-base/parseint.h>
Jeff Sharkey3472e522017-10-06 18:02:53 -060038#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080039#include <android-base/stringprintf.h>
Jeff Vander Stoep58890832017-10-23 17:12:31 -070040#include <android-base/strings.h>
41
Jeff Sharkey71ebe152013-09-17 17:24:38 -070042#include <cutils/fs.h>
Jeff Sharkey67b8c492017-09-21 17:08:43 -060043#include <utils/Trace.h>
San Mehatf1b736b2009-10-10 17:22:08 -070044
Robert Craigb9e3ba52014-02-04 10:53:00 -050045#include <selinux/android.h>
46
San Mehatfd7f5872009-10-12 11:32:47 -070047#include <sysutils/NetlinkEvent.h>
48
Kenny Root344ca102012-04-03 17:23:01 -070049#include <private/android_filesystem_config.h>
50
Paul Crowleyc6433a22017-10-24 14:54:43 -070051#include <ext4_utils/ext4_crypt.h>
52
53#include "Devmapper.h"
54#include "Ext4Crypt.h"
San Mehata19b2502010-01-06 10:33:53 -080055#include "Loop.h"
Paul Crowleyc6433a22017-10-24 14:54:43 -070056#include "NetlinkManager.h"
57#include "Process.h"
58#include "Utils.h"
59#include "VoldUtil.h"
60#include "VolumeManager.h"
61#include "cryptfs.h"
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070062#include "fs/Ext4.h"
63#include "fs/Vfat.h"
Paul Crowleyc6433a22017-10-24 14:54:43 -070064#include "model/EmulatedVolume.h"
65#include "model/ObbVolume.h"
San Mehat23969932010-01-09 07:08:06 -080066
Sudheer Shanka53947a32018-08-01 10:24:13 -070067using android::base::GetBoolProperty;
68using android::base::StringAppendF;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070069using android::base::StringPrintf;
Jeff Sharkey11c2d382017-09-11 10:32:01 -060070using android::base::unique_fd;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070071
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060072static const char* kPathUserMount = "/mnt/user";
73static const char* kPathVirtualDisk = "/data/misc/vold/virtual_disk";
74
Sudheer Shanka53947a32018-08-01 10:24:13 -070075static const char* kIsolatedStorage = "persist.sys.isolated_storage";
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060076static const char* kPropVirtualDisk = "persist.sys.virtual_disk";
77
Sudheer Shanka53947a32018-08-01 10:24:13 -070078static const std::string kEmptyString("");
79
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060080/* 512MiB is large enough for testing purposes */
81static const unsigned int kSizeVirtualDisk = 536870912;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070082
Jeff Sharkey36801cc2015-03-13 16:09:20 -070083static const unsigned int kMajorBlockMmc = 179;
Yu Ning942d4e82016-01-08 17:36:47 +080084static const unsigned int kMajorBlockExperimentalMin = 240;
85static const unsigned int kMajorBlockExperimentalMax = 254;
Jeff Sharkey36801cc2015-03-13 16:09:20 -070086
San Mehatf1b736b2009-10-10 17:22:08 -070087VolumeManager *VolumeManager::sInstance = NULL;
88
89VolumeManager *VolumeManager::Instance() {
90 if (!sInstance)
91 sInstance = new VolumeManager();
92 return sInstance;
93}
94
95VolumeManager::VolumeManager() {
San Mehatd9a4e352010-03-12 13:32:47 -080096 mDebug = false;
Jeff Sharkey11c2d382017-09-11 10:32:01 -060097 mNextObbId = 0;
Jeff Sharkey401b2602017-12-14 22:15:20 -070098 // For security reasons, assume that a secure keyguard is
99 // showing until we hear otherwise
100 mSecureKeyguardShowing = true;
San Mehatf1b736b2009-10-10 17:22:08 -0700101}
102
103VolumeManager::~VolumeManager() {
San Mehatd9a4e352010-03-12 13:32:47 -0800104}
105
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600106int VolumeManager::updateVirtualDisk() {
Jeff Sharkey67b8c492017-09-21 17:08:43 -0600107 ATRACE_NAME("VolumeManager::updateVirtualDisk");
Jeff Sharkey3472e522017-10-06 18:02:53 -0600108 if (android::base::GetBoolProperty(kPropVirtualDisk, false)) {
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600109 if (access(kPathVirtualDisk, F_OK) != 0) {
110 Loop::createImageFile(kPathVirtualDisk, kSizeVirtualDisk / 512);
111 }
112
113 if (mVirtualDisk == nullptr) {
114 if (Loop::create(kPathVirtualDisk, mVirtualDiskPath) != 0) {
115 LOG(ERROR) << "Failed to create virtual disk";
116 return -1;
117 }
118
119 struct stat buf;
120 if (stat(mVirtualDiskPath.c_str(), &buf) < 0) {
121 PLOG(ERROR) << "Failed to stat " << mVirtualDiskPath;
122 return -1;
123 }
124
125 auto disk = new android::vold::Disk("virtual", buf.st_rdev, "virtual",
126 android::vold::Disk::Flags::kAdoptable | android::vold::Disk::Flags::kSd);
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600127 mVirtualDisk = std::shared_ptr<android::vold::Disk>(disk);
Jeff Sharkey401b2602017-12-14 22:15:20 -0700128 handleDiskAdded(mVirtualDisk);
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600129 }
130 } else {
131 if (mVirtualDisk != nullptr) {
132 dev_t device = mVirtualDisk->getDevice();
Jeff Sharkey401b2602017-12-14 22:15:20 -0700133 handleDiskRemoved(device);
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600134
135 Loop::destroyByDevice(mVirtualDiskPath.c_str());
136 mVirtualDisk = nullptr;
137 }
138
139 if (access(kPathVirtualDisk, F_OK) == 0) {
140 unlink(kPathVirtualDisk);
141 }
142 }
143 return 0;
144}
145
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700146int VolumeManager::setDebug(bool enable) {
San Mehatd9a4e352010-03-12 13:32:47 -0800147 mDebug = enable;
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700148 return 0;
San Mehatd9a4e352010-03-12 13:32:47 -0800149}
150
San Mehatf1b736b2009-10-10 17:22:08 -0700151int VolumeManager::start() {
Jeff Sharkey67b8c492017-09-21 17:08:43 -0600152 ATRACE_NAME("VolumeManager::start");
153
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700154 // Always start from a clean slate by unmounting everything in
155 // directories that we own, in case we crashed.
Jeff Sharkey9c484982015-03-31 10:35:33 -0700156 unmountAll();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700157
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600158 Devmapper::destroyAll();
159 Loop::destroyAll();
160
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700161 // Assume that we always have an emulated volume on internal
162 // storage; the framework will decide if it should be mounted.
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700163 CHECK(mInternalEmulated == nullptr);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700164 mInternalEmulated = std::shared_ptr<android::vold::VolumeBase>(
Jeff Sharkey3161fb32015-04-12 16:03:33 -0700165 new android::vold::EmulatedVolume("/data/media"));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700166 mInternalEmulated->create();
167
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600168 // Consider creating a virtual disk
169 updateVirtualDisk();
170
San Mehatf1b736b2009-10-10 17:22:08 -0700171 return 0;
172}
173
174int VolumeManager::stop() {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700175 CHECK(mInternalEmulated != nullptr);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700176 mInternalEmulated->destroy();
177 mInternalEmulated = nullptr;
San Mehatf1b736b2009-10-10 17:22:08 -0700178 return 0;
179}
180
San Mehatfd7f5872009-10-12 11:32:47 -0700181void VolumeManager::handleBlockEvent(NetlinkEvent *evt) {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700182 std::lock_guard<std::mutex> lock(mLock);
183
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700184 if (mDebug) {
185 LOG(VERBOSE) << "----------------";
186 LOG(VERBOSE) << "handleBlockEvent with action " << (int) evt->getAction();
187 evt->dump();
188 }
San Mehatf1b736b2009-10-10 17:22:08 -0700189
Mateusz Nowak64403792015-08-03 16:39:19 +0200190 std::string eventPath(evt->findParam("DEVPATH")?evt->findParam("DEVPATH"):"");
191 std::string devType(evt->findParam("DEVTYPE")?evt->findParam("DEVTYPE"):"");
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700192
193 if (devType != "disk") return;
194
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600195 int major = std::stoi(evt->findParam("MAJOR"));
196 int minor = std::stoi(evt->findParam("MINOR"));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700197 dev_t device = makedev(major, minor);
198
199 switch (evt->getAction()) {
200 case NetlinkEvent::Action::kAdd: {
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700201 for (const auto& source : mDiskSources) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700202 if (source->matches(eventPath)) {
Yu Ning942d4e82016-01-08 17:36:47 +0800203 // For now, assume that MMC and virtio-blk (the latter is
204 // emulator-specific; see Disk.cpp for details) devices are SD,
205 // and that everything else is USB
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700206 int flags = source->getFlags();
Yu Ning942d4e82016-01-08 17:36:47 +0800207 if (major == kMajorBlockMmc
208 || (android::vold::IsRunningInEmulator()
209 && major >= (int) kMajorBlockExperimentalMin
210 && major <= (int) kMajorBlockExperimentalMax)) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700211 flags |= android::vold::Disk::Flags::kSd;
212 } else {
213 flags |= android::vold::Disk::Flags::kUsb;
214 }
215
216 auto disk = new android::vold::Disk(eventPath, device,
217 source->getNickname(), flags);
Jeff Sharkey401b2602017-12-14 22:15:20 -0700218 handleDiskAdded(std::shared_ptr<android::vold::Disk>(disk));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700219 break;
220 }
221 }
222 break;
223 }
224 case NetlinkEvent::Action::kChange: {
Jeff Sharkey7d9d0112015-04-14 23:14:23 -0700225 LOG(DEBUG) << "Disk at " << major << ":" << minor << " changed";
Jeff Sharkey401b2602017-12-14 22:15:20 -0700226 handleDiskChanged(device);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700227 break;
228 }
229 case NetlinkEvent::Action::kRemove: {
Jeff Sharkey401b2602017-12-14 22:15:20 -0700230 handleDiskRemoved(device);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700231 break;
232 }
233 default: {
234 LOG(WARNING) << "Unexpected block event action " << (int) evt->getAction();
235 break;
236 }
237 }
238}
239
Jeff Sharkey401b2602017-12-14 22:15:20 -0700240void VolumeManager::handleDiskAdded(const std::shared_ptr<android::vold::Disk>& disk) {
241 // For security reasons, if secure keyguard is showing, wait
242 // until the user unlocks the device to actually touch it
243 if (mSecureKeyguardShowing) {
244 LOG(INFO) << "Found disk at " << disk->getEventPath()
245 << " but delaying scan due to secure keyguard";
246 mPendingDisks.push_back(disk);
247 } else {
248 disk->create();
249 mDisks.push_back(disk);
250 }
251}
252
253void VolumeManager::handleDiskChanged(dev_t device) {
254 for (const auto& disk : mDisks) {
255 if (disk->getDevice() == device) {
256 disk->readMetadata();
257 disk->readPartitions();
258 }
259 }
260
261 // For security reasons, we ignore all pending disks, since
262 // we'll scan them once the device is unlocked
263}
264
265void VolumeManager::handleDiskRemoved(dev_t device) {
266 auto i = mDisks.begin();
267 while (i != mDisks.end()) {
268 if ((*i)->getDevice() == device) {
269 (*i)->destroy();
270 i = mDisks.erase(i);
271 } else {
272 ++i;
273 }
274 }
275 auto j = mPendingDisks.begin();
276 while (j != mPendingDisks.end()) {
277 if ((*j)->getDevice() == device) {
278 j = mPendingDisks.erase(j);
279 } else {
280 ++j;
281 }
282 }
283}
284
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700285void VolumeManager::addDiskSource(const std::shared_ptr<DiskSource>& diskSource) {
Wei Wang6b455c22017-01-20 11:52:33 -0800286 std::lock_guard<std::mutex> lock(mLock);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700287 mDiskSources.push_back(diskSource);
288}
289
290std::shared_ptr<android::vold::Disk> VolumeManager::findDisk(const std::string& id) {
291 for (auto disk : mDisks) {
292 if (disk->getId() == id) {
293 return disk;
San Mehatf1b736b2009-10-10 17:22:08 -0700294 }
295 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700296 return nullptr;
297}
San Mehatf1b736b2009-10-10 17:22:08 -0700298
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700299std::shared_ptr<android::vold::VolumeBase> VolumeManager::findVolume(const std::string& id) {
Gao Xiangd263da82017-08-14 11:32:13 +0800300 // Vold could receive "mount" after "shutdown" command in the extreme case.
301 // If this happens, mInternalEmulated will equal nullptr and
302 // we need to deal with it in order to avoid null pointer crash.
303 if (mInternalEmulated != nullptr && mInternalEmulated->getId() == id) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700304 return mInternalEmulated;
San Mehatf1b736b2009-10-10 17:22:08 -0700305 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700306 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700307 auto vol = disk->findVolume(id);
308 if (vol != nullptr) {
309 return vol;
310 }
311 }
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600312 for (const auto& vol : mObbVolumes) {
313 if (vol->getId() == id) {
314 return vol;
315 }
316 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700317 return nullptr;
318}
319
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700320void VolumeManager::listVolumes(android::vold::VolumeBase::Type type,
321 std::list<std::string>& list) {
322 list.clear();
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700323 for (const auto& disk : mDisks) {
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700324 disk->listVolumes(type, list);
325 }
326}
327
Jeff Sharkey3ce18252017-10-24 11:08:45 -0600328int VolumeManager::forgetPartition(const std::string& partGuid, const std::string& fsUuid) {
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700329 std::string normalizedGuid;
330 if (android::vold::NormalizeHex(partGuid, normalizedGuid)) {
331 LOG(WARNING) << "Invalid GUID " << partGuid;
332 return -1;
333 }
334
Paul Crowleyc6433a22017-10-24 14:54:43 -0700335 bool success = true;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700336 std::string keyPath = android::vold::BuildKeyPath(normalizedGuid);
337 if (unlink(keyPath.c_str()) != 0) {
338 LOG(ERROR) << "Failed to unlink " << keyPath;
Paul Crowleyc6433a22017-10-24 14:54:43 -0700339 success = false;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700340 }
Paul Crowleyc6433a22017-10-24 14:54:43 -0700341 if (e4crypt_is_native()) {
342 if (!e4crypt_destroy_volume_keys(fsUuid)) {
343 success = false;
344 }
345 }
346 return success ? 0 : -1;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700347}
348
Sudheer Shanka53947a32018-08-01 10:24:13 -0700349int VolumeManager::linkPrimary(userid_t userId, const std::vector<std::string>& packageNames) {
350 if (GetBoolProperty(kIsolatedStorage, false)) {
351 std::string source(StringPrintf("/mnt/runtime/write/%s", mPrimary->getLabel().c_str()));
352 bool isPrimaryEmulated =
353 (mPrimary->getType() == android::vold::VolumeBase::Type::kEmulated);
354 if (isPrimaryEmulated) {
355 StringAppendF(&source, "/%d", userId);
356 if (fs_prepare_dir(source.c_str(), 0755, AID_ROOT, AID_ROOT) != 0) {
357 PLOG(ERROR) << "fs_prepare_dir failed on " << source;
358 return -errno;
359 }
360 }
Sudheer Shankaa695f252018-08-03 18:07:52 -0700361 if (mountSandboxesForPrimaryVol(source, userId, packageNames, isPrimaryEmulated) != 0) {
362 return -errno;
363 }
364 // Keep /sdcard working for shell process
365 std::string primarySource(mPrimary->getPath());
366 if (isPrimaryEmulated) {
367 StringAppendF(&primarySource, "/%d", userId);
368 }
369 std::string target(StringPrintf("/mnt/user/%d/primary", userId));
370 if (TEMP_FAILURE_RETRY(unlink(target.c_str()))) {
371 if (errno != ENOENT) {
372 PLOG(WARNING) << "Failed to unlink " << target;
373 }
374 }
375 if (TEMP_FAILURE_RETRY(symlink(primarySource.c_str(), target.c_str()))) {
376 PLOG(WARNING) << "Failed to link " << primarySource << " at " << target;
377 return -errno;
378 }
Sudheer Shanka53947a32018-08-01 10:24:13 -0700379 } else {
380 std::string source(mPrimary->getPath());
381 if (mPrimary->getType() == android::vold::VolumeBase::Type::kEmulated) {
382 source = StringPrintf("%s/%d", source.c_str(), userId);
383 fs_prepare_dir(source.c_str(), 0755, AID_ROOT, AID_ROOT);
384 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700385
Sudheer Shanka53947a32018-08-01 10:24:13 -0700386 std::string target(StringPrintf("/mnt/user/%d/primary", userId));
387 if (TEMP_FAILURE_RETRY(unlink(target.c_str()))) {
388 if (errno != ENOENT) {
389 PLOG(WARNING) << "Failed to unlink " << target;
390 }
391 }
392 LOG(DEBUG) << "Linking " << source << " to " << target;
393 if (TEMP_FAILURE_RETRY(symlink(source.c_str(), target.c_str()))) {
394 PLOG(WARNING) << "Failed to link";
395 return -errno;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700396 }
397 }
Sudheer Shanka53947a32018-08-01 10:24:13 -0700398 return 0;
399}
400
401int VolumeManager::mountSandboxesForPrimaryVol(const std::string& primaryRoot, userid_t userId,
402 const std::vector<std::string>& packageNames, bool isPrimaryEmulated) {
403
404 std::string sandboxRoot = prepareSubDirs(primaryRoot, "Android/sandbox/",
405 0700, AID_ROOT, AID_ROOT);
406 if (sandboxRoot.empty()) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700407 return -errno;
408 }
Sudheer Shanka53947a32018-08-01 10:24:13 -0700409
410 std::string dataRoot = prepareSubDirs(primaryRoot, "Android/data/",
411 0700, AID_ROOT, AID_ROOT);
412 if (dataRoot.empty()) {
413 return -errno;
414 }
415
Sudheer Shankaa695f252018-08-03 18:07:52 -0700416 std::string mntTargetRoot = StringPrintf("/mnt/user/%d", userId);
417 if (fs_prepare_dir(mntTargetRoot.c_str(), 0751, AID_ROOT, AID_ROOT) != 0) {
418 PLOG(ERROR) << "fs_prepare_dir failed on " << mntTargetRoot;
419 return -errno;
420 }
421 mntTargetRoot.append("/package");
422 if (fs_prepare_dir(mntTargetRoot.c_str(), 0700, AID_ROOT, AID_ROOT) != 0) {
423 PLOG(ERROR) << "fs_prepare_dir failed on " << mntTargetRoot;
Sudheer Shanka53947a32018-08-01 10:24:13 -0700424 return -errno;
425 }
426
427 for (auto& packageName : packageNames) {
428 const auto& it = mAppIds.find(packageName);
429 if (it == mAppIds.end()) {
430 PLOG(ERROR) << "appId is not available for " << packageName;
431 continue;
432 }
433 appid_t appId = it->second;
434 std::string sandboxId = mSandboxIds[appId];
435 uid_t uid = multiuser_get_uid(userId, appId);
436
437 // Create [1] /mnt/runtime/write/emulated/0/Android/sandbox/<sandboxId>
438 // Create [2] /mnt/user/0/package/<packageName>/emulated/0
439 // Mount [1] at [2]
440 std::string pkgSandboxSourceDir = prepareSandboxSource(uid, sandboxId, sandboxRoot);
441 if (pkgSandboxSourceDir.empty()) {
442 return -errno;
443 }
444 std::string pkgSandboxTargetDir = prepareSandboxTarget(packageName, uid,
445 mPrimary->getLabel(), mntTargetRoot, isPrimaryEmulated);
446 if (pkgSandboxTargetDir.empty()) {
447 return -errno;
448 }
449 if (TEMP_FAILURE_RETRY(mount(pkgSandboxSourceDir.c_str(), pkgSandboxTargetDir.c_str(),
450 nullptr, MS_BIND | MS_REC | MS_SLAVE, nullptr)) == -1) {
451 PLOG(ERROR) << "Failed to mount " << pkgSandboxSourceDir << " at "
452 << pkgSandboxTargetDir;
453 return -errno;
454 }
455
456 // Create [1] /mnt/runtime/write/emulated/0/Android/data/<packageName>
457 // Create [2] /mnt/user/0/package/<packageName>/emulated/0/Android/data/<packageName>
458 // Mount [1] at [2]
459 std::string pkgDataSourceDir = preparePkgDataSource(packageName, uid, dataRoot);
460 if (pkgDataSourceDir.empty()) {
461 return -errno;
462 }
463 std::string pkgDataTargetDir = preparePkgDataTarget(packageName, uid,
464 pkgSandboxTargetDir);
465 if (pkgDataTargetDir.empty()) {
466 return -errno;
467 }
468 if (TEMP_FAILURE_RETRY(mount(pkgDataSourceDir.c_str(), pkgDataTargetDir.c_str(),
469 nullptr, MS_BIND | MS_REC | MS_SLAVE, nullptr)) == -1) {
470 PLOG(ERROR) << "Failed to mount " << pkgDataSourceDir << " at "
471 << pkgDataTargetDir;
472 return -errno;
473 }
474
475 // Create [1] /mnt/user/0/package/<packageName>/self/primary
476 // Already created [2] /mnt/user/0/package/<packageName>/emulated/0
477 // Mount [2] at [1]
478 std::string pkgPrimaryTargetDir = prepareSubDirs(
479 StringPrintf("%s/%s", mntTargetRoot.c_str(), packageName.c_str()),
480 "self/primary/", 0755, uid, uid);
481 if (pkgPrimaryTargetDir.empty()) {
482 return -errno;
483 }
484 if (TEMP_FAILURE_RETRY(mount(pkgSandboxTargetDir.c_str(), pkgPrimaryTargetDir.c_str(),
485 nullptr, MS_BIND | MS_REC | MS_SLAVE, nullptr)) == -1) {
486 PLOG(ERROR) << "Failed to mount " << pkgSandboxTargetDir << " at "
487 << pkgPrimaryTargetDir;
488 return -errno;
489 }
490 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700491 return 0;
492}
493
Sudheer Shanka53947a32018-08-01 10:24:13 -0700494std::string VolumeManager::prepareSubDirs(const std::string& pathPrefix,
495 const std::string& subDirs, mode_t mode, uid_t uid, gid_t gid) {
496 std::string path(pathPrefix);
497 std::vector<std::string> subDirList = android::base::Split(subDirs, "/");
498 for (size_t i = 0; i < subDirList.size(); ++i) {
499 std::string subDir = subDirList[i];
500 if (subDir.empty()) {
501 continue;
502 }
503 StringAppendF(&path, "/%s", subDir.c_str());
504 if (fs_prepare_dir(path.c_str(), mode, uid, gid) != 0) {
505 PLOG(ERROR) << "fs_prepare_dir failed on " << path;
506 return kEmptyString;
507 }
508 }
509 return path;
510}
511
512std::string VolumeManager::prepareSandboxSource(uid_t uid, const std::string& sandboxId,
513 const std::string& sandboxRootDir) {
514 std::string sandboxSourceDir = StringPrintf("%s/%s",
515 sandboxRootDir.c_str(), sandboxId.c_str());
516 if (fs_prepare_dir(sandboxSourceDir.c_str(), 0755, uid, uid) != 0) {
517 PLOG(ERROR) << "fs_prepare_dir failed on " << sandboxSourceDir;
518 return kEmptyString;
519 }
520 return sandboxSourceDir;
521}
522
523std::string VolumeManager::prepareSandboxTarget(const std::string& packageName, uid_t uid,
524 const std::string& volumeLabel, const std::string& mntTargetRootDir,
525 bool isUserDependent) {
526 std::string segment;
527 if (isUserDependent) {
528 segment = StringPrintf("%s/%s/%d/",
529 packageName.c_str(), volumeLabel.c_str(), multiuser_get_user_id(uid));
530 } else {
531 segment = StringPrintf("%s/%s/",
532 packageName.c_str(), volumeLabel.c_str());
533 }
534 return prepareSubDirs(mntTargetRootDir, segment.c_str(), 0755, uid, uid);
535}
536
537std::string VolumeManager::preparePkgDataSource(const std::string& packageName, uid_t uid,
538 const std::string& dataRootDir) {
539 std::string dataSourceDir = StringPrintf("%s/%s", dataRootDir.c_str(), packageName.c_str());
540 if (fs_prepare_dir(dataSourceDir.c_str(), 0755, uid, uid) != 0) {
541 PLOG(ERROR) << "fs_prepare_dir failed on " << dataSourceDir;
542 return kEmptyString;
543 }
544 return dataSourceDir;
545}
546
547std::string VolumeManager::preparePkgDataTarget(const std::string& packageName, uid_t uid,
548 const std::string& pkgSandboxDir) {
549 std::string segment = StringPrintf("Android/data/%s/", packageName.c_str());
550 return prepareSubDirs(pkgSandboxDir, segment.c_str(), 0755, uid, uid);
551}
552
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700553int VolumeManager::onUserAdded(userid_t userId, int userSerialNumber) {
554 mAddedUsers[userId] = userSerialNumber;
555 return 0;
556}
557
558int VolumeManager::onUserRemoved(userid_t userId) {
559 mAddedUsers.erase(userId);
560 return 0;
561}
562
Sudheer Shankaebaad1c2018-07-31 16:39:59 -0700563int VolumeManager::onUserStarted(userid_t userId, const std::vector<std::string>& packageNames) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700564 // Note that sometimes the system will spin up processes from Zygote
565 // before actually starting the user, so we're okay if Zygote
566 // already created this directory.
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600567 std::string path(StringPrintf("%s/%d", kPathUserMount, userId));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700568 fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT);
569
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700570 mStartedUsers.insert(userId);
Sudheer Shanka62bbb2b2018-08-01 01:09:10 -0700571 mUserPackages[userId] = packageNames;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700572 if (mPrimary) {
Sudheer Shanka53947a32018-08-01 10:24:13 -0700573 linkPrimary(userId, packageNames);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700574 }
575 return 0;
576}
577
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700578int VolumeManager::onUserStopped(userid_t userId) {
579 mStartedUsers.erase(userId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700580 return 0;
581}
582
Sudheer Shankad484aa92018-07-31 10:07:34 -0700583int VolumeManager::addAppIds(const std::vector<std::string>& packageNames,
584 const std::vector<int32_t>& appIds) {
Sudheer Shanka62bbb2b2018-08-01 01:09:10 -0700585 for (size_t i = 0; i < packageNames.size(); ++i) {
586 mAppIds[packageNames[i]] = appIds[i];
587 }
Sudheer Shankad484aa92018-07-31 10:07:34 -0700588 return 0;
589}
590
591int VolumeManager::addSandboxIds(const std::vector<int32_t>& appIds,
592 const std::vector<std::string>& sandboxIds) {
Sudheer Shanka62bbb2b2018-08-01 01:09:10 -0700593 for (size_t i = 0; i < appIds.size(); ++i) {
594 mSandboxIds[appIds[i]] = sandboxIds[i];
595 }
Sudheer Shankad484aa92018-07-31 10:07:34 -0700596 return 0;
597}
598
Jeff Sharkey401b2602017-12-14 22:15:20 -0700599int VolumeManager::onSecureKeyguardStateChanged(bool isShowing) {
600 mSecureKeyguardShowing = isShowing;
601 if (!mSecureKeyguardShowing) {
602 // Now that secure keyguard has been dismissed, process
603 // any pending disks
604 for (const auto& disk : mPendingDisks) {
605 disk->create();
606 mDisks.push_back(disk);
607 }
608 mPendingDisks.clear();
609 }
610 return 0;
611}
612
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700613int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol) {
614 mPrimary = vol;
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700615 for (userid_t userId : mStartedUsers) {
Sudheer Shanka53947a32018-08-01 10:24:13 -0700616 linkPrimary(userId, mUserPackages[userId]);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700617 }
618 return 0;
619}
620
Jeff Sharkey3472e522017-10-06 18:02:53 -0600621static int unmount_tree(const std::string& prefix) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700622 FILE* fp = setmntent("/proc/mounts", "r");
623 if (fp == NULL) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600624 PLOG(ERROR) << "Failed to open /proc/mounts";
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700625 return -errno;
626 }
627
628 // Some volumes can be stacked on each other, so force unmount in
629 // reverse order to give us the best chance of success.
630 std::list<std::string> toUnmount;
631 mntent* mentry;
632 while ((mentry = getmntent(fp)) != NULL) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600633 auto test = std::string(mentry->mnt_dir) + "/";
Elliott Hughes32a5b9a2017-12-20 12:38:47 -0800634 if (android::base::StartsWith(test, prefix)) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600635 toUnmount.push_front(test);
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700636 }
637 }
638 endmntent(fp);
639
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700640 for (const auto& path : toUnmount) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700641 if (umount2(path.c_str(), MNT_DETACH)) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600642 PLOG(ERROR) << "Failed to unmount " << path;
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700643 }
644 }
645 return 0;
646}
647
Jeff Sharkey66270a22015-06-24 11:49:24 -0700648int VolumeManager::remountUid(uid_t uid, const std::string& mode) {
Sudheer Shanka53947a32018-08-01 10:24:13 -0700649 // If the isolated storage is enabled, return -1 since in the isolated storage world, there
650 // are no longer any runtime storage permissions, so this shouldn't be called anymore.
651 if (GetBoolProperty(kIsolatedStorage, false)) {
652 return -1;
653 }
Jeff Sharkey66270a22015-06-24 11:49:24 -0700654 LOG(DEBUG) << "Remounting " << uid << " as mode " << mode;
655
656 DIR* dir;
657 struct dirent* de;
Jeff Sharkey3472e522017-10-06 18:02:53 -0600658 std::string rootName;
659 std::string pidName;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700660 int pidFd;
661 int nsFd;
662 struct stat sb;
663 pid_t child;
664
665 if (!(dir = opendir("/proc"))) {
666 PLOG(ERROR) << "Failed to opendir";
667 return -1;
668 }
669
670 // Figure out root namespace to compare against below
Jeff Sharkey3472e522017-10-06 18:02:53 -0600671 if (!android::vold::Readlinkat(dirfd(dir), "1/ns/mnt", &rootName)) {
672 PLOG(ERROR) << "Failed to read root namespace";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700673 closedir(dir);
674 return -1;
675 }
676
677 // Poke through all running PIDs look for apps running as UID
678 while ((de = readdir(dir))) {
Jeff Vander Stoep58890832017-10-23 17:12:31 -0700679 pid_t pid;
680 if (de->d_type != DT_DIR) continue;
681 if (!android::base::ParseInt(de->d_name, &pid)) continue;
682
Jeff Sharkey66270a22015-06-24 11:49:24 -0700683 pidFd = -1;
684 nsFd = -1;
685
686 pidFd = openat(dirfd(dir), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
687 if (pidFd < 0) {
688 goto next;
689 }
690 if (fstat(pidFd, &sb) != 0) {
691 PLOG(WARNING) << "Failed to stat " << de->d_name;
692 goto next;
693 }
694 if (sb.st_uid != uid) {
695 goto next;
696 }
697
698 // Matches so far, but refuse to touch if in root namespace
699 LOG(DEBUG) << "Found matching PID " << de->d_name;
Jeff Sharkey3472e522017-10-06 18:02:53 -0600700 if (!android::vold::Readlinkat(pidFd, "ns/mnt", &pidName)) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700701 PLOG(WARNING) << "Failed to read namespace for " << de->d_name;
702 goto next;
703 }
Jeff Sharkey3472e522017-10-06 18:02:53 -0600704 if (rootName == pidName) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700705 LOG(WARNING) << "Skipping due to root namespace";
706 goto next;
707 }
708
709 // We purposefully leave the namespace open across the fork
Jeff Sharkeyfd3dc3c2017-03-27 10:49:21 -0600710 nsFd = openat(pidFd, "ns/mnt", O_RDONLY); // not O_CLOEXEC
Jeff Sharkey66270a22015-06-24 11:49:24 -0700711 if (nsFd < 0) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700712 PLOG(WARNING) << "Failed to open namespace for " << de->d_name;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700713 goto next;
714 }
715
716 if (!(child = fork())) {
717 if (setns(nsFd, CLONE_NEWNS) != 0) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700718 PLOG(ERROR) << "Failed to setns for " << de->d_name;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700719 _exit(1);
720 }
721
Jeff Sharkey3472e522017-10-06 18:02:53 -0600722 unmount_tree("/storage/");
Jeff Sharkey66270a22015-06-24 11:49:24 -0700723
724 std::string storageSource;
725 if (mode == "default") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700726 storageSource = "/mnt/runtime/default";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700727 } else if (mode == "read") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700728 storageSource = "/mnt/runtime/read";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700729 } else if (mode == "write") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700730 storageSource = "/mnt/runtime/write";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700731 } else {
732 // Sane default of no storage visible
733 _exit(0);
734 }
735 if (TEMP_FAILURE_RETRY(mount(storageSource.c_str(), "/storage",
Hidehiko Abe674bed12016-03-09 16:42:10 +0900736 NULL, MS_BIND | MS_REC, NULL)) == -1) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700737 PLOG(ERROR) << "Failed to mount " << storageSource << " for "
738 << de->d_name;
739 _exit(1);
Jeff Sharkey66270a22015-06-24 11:49:24 -0700740 }
Hidehiko Abe674bed12016-03-09 16:42:10 +0900741 if (TEMP_FAILURE_RETRY(mount(NULL, "/storage", NULL,
742 MS_REC | MS_SLAVE, NULL)) == -1) {
743 PLOG(ERROR) << "Failed to set MS_SLAVE to /storage for "
744 << de->d_name;
745 _exit(1);
746 }
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700747
748 // Mount user-specific symlink helper into place
749 userid_t user_id = multiuser_get_user_id(uid);
750 std::string userSource(StringPrintf("/mnt/user/%d", user_id));
751 if (TEMP_FAILURE_RETRY(mount(userSource.c_str(), "/storage/self",
752 NULL, MS_BIND, NULL)) == -1) {
753 PLOG(ERROR) << "Failed to mount " << userSource << " for "
754 << de->d_name;
755 _exit(1);
756 }
757
Jeff Sharkey66270a22015-06-24 11:49:24 -0700758 _exit(0);
759 }
760
761 if (child == -1) {
762 PLOG(ERROR) << "Failed to fork";
763 goto next;
764 } else {
765 TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0));
766 }
767
768next:
769 close(nsFd);
770 close(pidFd);
771 }
772 closedir(dir);
773 return 0;
774}
775
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700776int VolumeManager::reset() {
777 // Tear down all existing disks/volumes and start from a blank slate so
778 // newly connected framework hears all events.
Gao Xiangd263da82017-08-14 11:32:13 +0800779 if (mInternalEmulated != nullptr) {
780 mInternalEmulated->destroy();
781 mInternalEmulated->create();
782 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700783 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700784 disk->destroy();
785 disk->create();
786 }
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600787 updateVirtualDisk();
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700788 mAddedUsers.clear();
789 mStartedUsers.clear();
Sudheer Shanka62bbb2b2018-08-01 01:09:10 -0700790
791 mUserPackages.clear();
792 mAppIds.clear();
793 mSandboxIds.clear();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700794 return 0;
795}
796
Keun-young Parka5bbb5e2017-03-13 18:02:50 -0700797// Can be called twice (sequentially) during shutdown. should be safe for that.
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700798int VolumeManager::shutdown() {
Keun-young Parka5bbb5e2017-03-13 18:02:50 -0700799 if (mInternalEmulated == nullptr) {
800 return 0; // already shutdown
801 }
Paul Crowley56292ef2017-10-20 08:07:53 -0700802 android::vold::sSleepOnUnmount = false;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700803 mInternalEmulated->destroy();
Keun-young Parka5bbb5e2017-03-13 18:02:50 -0700804 mInternalEmulated = nullptr;
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700805 for (const auto& disk : mDisks) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700806 disk->destroy();
807 }
808 mDisks.clear();
Jeff Sharkey401b2602017-12-14 22:15:20 -0700809 mPendingDisks.clear();
Paul Crowley56292ef2017-10-20 08:07:53 -0700810 android::vold::sSleepOnUnmount = true;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700811 return 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700812}
813
Jeff Sharkey9c484982015-03-31 10:35:33 -0700814int VolumeManager::unmountAll() {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700815 std::lock_guard<std::mutex> lock(mLock);
Jeff Sharkey67b8c492017-09-21 17:08:43 -0600816 ATRACE_NAME("VolumeManager::unmountAll()");
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700817
Jeff Sharkey9c484982015-03-31 10:35:33 -0700818 // First, try gracefully unmounting all known devices
819 if (mInternalEmulated != nullptr) {
820 mInternalEmulated->unmount();
821 }
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700822 for (const auto& disk : mDisks) {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700823 disk->unmountAll();
824 }
825
826 // Worst case we might have some stale mounts lurking around, so
827 // force unmount those just to be safe.
828 FILE* fp = setmntent("/proc/mounts", "r");
829 if (fp == NULL) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600830 PLOG(ERROR) << "Failed to open /proc/mounts";
Jeff Sharkey9c484982015-03-31 10:35:33 -0700831 return -errno;
832 }
833
834 // Some volumes can be stacked on each other, so force unmount in
835 // reverse order to give us the best chance of success.
836 std::list<std::string> toUnmount;
837 mntent* mentry;
838 while ((mentry = getmntent(fp)) != NULL) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600839 auto test = std::string(mentry->mnt_dir);
Tri Vobca5cd72018-04-16 14:27:10 -0700840 if ((android::base::StartsWith(test, "/mnt/") &&
Bowgo Tsaic0cd37b2018-06-29 10:31:07 +0800841 !android::base::StartsWith(test, "/mnt/vendor") &&
842 !android::base::StartsWith(test, "/mnt/product")) ||
Tri Vobca5cd72018-04-16 14:27:10 -0700843 android::base::StartsWith(test, "/storage/")) {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600844 toUnmount.push_front(test);
Jeff Sharkey9c484982015-03-31 10:35:33 -0700845 }
846 }
847 endmntent(fp);
848
Chih-Hung Hsieh11a2ce82016-07-27 14:11:02 -0700849 for (const auto& path : toUnmount) {
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600850 LOG(DEBUG) << "Tearing down stale mount " << path;
Jeff Sharkey9c484982015-03-31 10:35:33 -0700851 android::vold::ForceUnmount(path);
852 }
853
854 return 0;
855}
856
Jeff Sharkey3472e522017-10-06 18:02:53 -0600857int VolumeManager::mkdirs(const std::string& path) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700858 // Only offer to create directories for paths managed by vold
Jeff Sharkey3472e522017-10-06 18:02:53 -0600859 if (android::base::StartsWith(path, "/storage/")) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700860 // fs_mkdirs() does symlink checking and relative path enforcement
Jeff Sharkey3472e522017-10-06 18:02:53 -0600861 return fs_mkdirs(path.c_str(), 0700);
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700862 } else {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600863 LOG(ERROR) << "Failed to find mounted volume for " << path;
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700864 return -EINVAL;
865 }
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700866}
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600867
868static size_t kAppFuseMaxMountPointName = 32;
869
870static android::status_t getMountPath(uid_t uid, const std::string& name, std::string* path) {
871 if (name.size() > kAppFuseMaxMountPointName) {
872 LOG(ERROR) << "AppFuse mount name is too long.";
873 return -EINVAL;
874 }
875 for (size_t i = 0; i < name.size(); i++) {
876 if (!isalnum(name[i])) {
877 LOG(ERROR) << "AppFuse mount name contains invalid character.";
878 return -EINVAL;
879 }
880 }
881 *path = android::base::StringPrintf("/mnt/appfuse/%d_%s", uid, name.c_str());
882 return android::OK;
883}
884
885static android::status_t mountInNamespace(uid_t uid, int device_fd, const std::string& path) {
886 // Remove existing mount.
887 android::vold::ForceUnmount(path);
888
889 const auto opts = android::base::StringPrintf(
890 "fd=%i,"
891 "rootmode=40000,"
892 "default_permissions,"
893 "allow_other,"
894 "user_id=%d,group_id=%d,"
895 "context=\"u:object_r:app_fuse_file:s0\","
896 "fscontext=u:object_r:app_fusefs:s0",
897 device_fd,
898 uid,
899 uid);
900
901 const int result = TEMP_FAILURE_RETRY(mount(
902 "/dev/fuse", path.c_str(), "fuse",
903 MS_NOSUID | MS_NODEV | MS_NOEXEC | MS_NOATIME, opts.c_str()));
904 if (result != 0) {
905 PLOG(ERROR) << "Failed to mount " << path;
906 return -errno;
907 }
908
909 return android::OK;
910}
911
912static android::status_t runCommandInNamespace(const std::string& command,
913 uid_t uid,
914 pid_t pid,
915 const std::string& path,
916 int device_fd) {
917 if (DEBUG_APPFUSE) {
918 LOG(DEBUG) << "Run app fuse command " << command << " for the path " << path
919 << " in namespace " << uid;
920 }
921
922 unique_fd dir(open("/proc", O_RDONLY | O_DIRECTORY | O_CLOEXEC));
923 if (dir.get() == -1) {
924 PLOG(ERROR) << "Failed to open /proc";
925 return -errno;
926 }
927
928 // Obtains process file descriptor.
929 const std::string pid_str = android::base::StringPrintf("%d", pid);
930 const unique_fd pid_fd(
931 openat(dir.get(), pid_str.c_str(), O_RDONLY | O_DIRECTORY | O_CLOEXEC));
932 if (pid_fd.get() == -1) {
933 PLOG(ERROR) << "Failed to open /proc/" << pid;
934 return -errno;
935 }
936
937 // Check UID of process.
938 {
939 struct stat sb;
940 const int result = fstat(pid_fd.get(), &sb);
941 if (result == -1) {
942 PLOG(ERROR) << "Failed to stat /proc/" << pid;
943 return -errno;
944 }
945 if (sb.st_uid != AID_SYSTEM) {
946 LOG(ERROR) << "Only system can mount appfuse. UID expected=" << AID_SYSTEM
947 << ", actual=" << sb.st_uid;
948 return -EPERM;
949 }
950 }
951
952 // Matches so far, but refuse to touch if in root namespace
953 {
Jeff Sharkey3472e522017-10-06 18:02:53 -0600954 std::string rootName;
955 std::string pidName;
956 if (!android::vold::Readlinkat(dir.get(), "1/ns/mnt", &rootName)
957 || !android::vold::Readlinkat(pid_fd.get(), "ns/mnt", &pidName)) {
958 PLOG(ERROR) << "Failed to read namespaces";
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600959 return -EPERM;
960 }
Jeff Sharkey3472e522017-10-06 18:02:53 -0600961 if (rootName == pidName) {
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600962 LOG(ERROR) << "Don't mount appfuse in root namespace";
963 return -EPERM;
964 }
965 }
966
967 // We purposefully leave the namespace open across the fork
968 unique_fd ns_fd(openat(pid_fd.get(), "ns/mnt", O_RDONLY)); // not O_CLOEXEC
969 if (ns_fd.get() < 0) {
970 PLOG(ERROR) << "Failed to open namespace for /proc/" << pid << "/ns/mnt";
971 return -errno;
972 }
973
974 int child = fork();
975 if (child == 0) {
976 if (setns(ns_fd.get(), CLONE_NEWNS) != 0) {
977 PLOG(ERROR) << "Failed to setns";
978 _exit(-errno);
979 }
980
981 if (command == "mount") {
982 _exit(mountInNamespace(uid, device_fd, path));
983 } else if (command == "unmount") {
984 // If it's just after all FD opened on mount point are closed, umount2 can fail with
985 // EBUSY. To avoid the case, specify MNT_DETACH.
986 if (umount2(path.c_str(), UMOUNT_NOFOLLOW | MNT_DETACH) != 0 &&
987 errno != EINVAL && errno != ENOENT) {
988 PLOG(ERROR) << "Failed to unmount directory.";
989 _exit(-errno);
990 }
991 if (rmdir(path.c_str()) != 0) {
992 PLOG(ERROR) << "Failed to remove the mount directory.";
993 _exit(-errno);
994 }
995 _exit(android::OK);
996 } else {
997 LOG(ERROR) << "Unknown appfuse command " << command;
998 _exit(-EPERM);
999 }
1000 }
1001
1002 if (child == -1) {
1003 PLOG(ERROR) << "Failed to folk child process";
1004 return -errno;
1005 }
1006
1007 android::status_t status;
1008 TEMP_FAILURE_RETRY(waitpid(child, &status, 0));
1009
1010 return status;
1011}
1012
1013int VolumeManager::createObb(const std::string& sourcePath, const std::string& sourceKey,
1014 int32_t ownerGid, std::string* outVolId) {
1015 int id = mNextObbId++;
1016
1017 auto vol = std::shared_ptr<android::vold::VolumeBase>(
1018 new android::vold::ObbVolume(id, sourcePath, sourceKey, ownerGid));
1019 vol->create();
1020
1021 mObbVolumes.push_back(vol);
1022 *outVolId = vol->getId();
1023 return android::OK;
1024}
1025
1026int VolumeManager::destroyObb(const std::string& volId) {
1027 auto i = mObbVolumes.begin();
1028 while (i != mObbVolumes.end()) {
1029 if ((*i)->getId() == volId) {
1030 (*i)->destroy();
1031 i = mObbVolumes.erase(i);
1032 } else {
1033 ++i;
1034 }
1035 }
1036 return android::OK;
1037}
1038
1039int VolumeManager::mountAppFuse(uid_t uid, pid_t pid, int mountId,
1040 android::base::unique_fd* device_fd) {
1041 std::string name = std::to_string(mountId);
1042
1043 // Check mount point name.
1044 std::string path;
1045 if (getMountPath(uid, name, &path) != android::OK) {
1046 LOG(ERROR) << "Invalid mount point name";
1047 return -1;
1048 }
1049
1050 // Create directories.
1051 const android::status_t result = android::vold::PrepareDir(path, 0700, 0, 0);
1052 if (result != android::OK) {
1053 PLOG(ERROR) << "Failed to prepare directory " << path;
1054 return -1;
1055 }
1056
1057 // Open device FD.
1058 device_fd->reset(open("/dev/fuse", O_RDWR)); // not O_CLOEXEC
1059 if (device_fd->get() == -1) {
1060 PLOG(ERROR) << "Failed to open /dev/fuse";
1061 return -1;
1062 }
1063
1064 // Mount.
1065 return runCommandInNamespace("mount", uid, pid, path, device_fd->get());
1066}
1067
1068int VolumeManager::unmountAppFuse(uid_t uid, pid_t pid, int mountId) {
1069 std::string name = std::to_string(mountId);
1070
1071 // Check mount point name.
1072 std::string path;
1073 if (getMountPath(uid, name, &path) != android::OK) {
1074 LOG(ERROR) << "Invalid mount point name";
1075 return -1;
1076 }
1077
1078 return runCommandInNamespace("unmount", uid, pid, path, -1 /* device_fd */);
1079}