blob: 93046305e04d6e8345d0680bb257101197578829 [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
Yabin Cuid1104f72015-01-02 13:28:28 -080017#include <dirent.h>
San Mehatf1b736b2009-10-10 17:22:08 -070018#include <errno.h>
San Mehata2677e42009-12-13 10:40:18 -080019#include <fcntl.h>
Kenny Root344ca102012-04-03 17:23:01 -070020#include <fts.h>
Yabin Cuid1104f72015-01-02 13:28:28 -080021#include <mntent.h>
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <sys/ioctl.h>
26#include <sys/mount.h>
San Mehata19b2502010-01-06 10:33:53 -080027#include <sys/stat.h>
28#include <sys/types.h>
Jeff Sharkey66270a22015-06-24 11:49:24 -070029#include <sys/wait.h>
Yabin Cuid1104f72015-01-02 13:28:28 -080030#include <unistd.h>
San Mehata19b2502010-01-06 10:33:53 -080031
San Mehata2677e42009-12-13 10:40:18 -080032#include <linux/kdev_t.h>
San Mehatf1b736b2009-10-10 17:22:08 -070033
34#define LOG_TAG "Vold"
35
Kenny Root7b18a7b2010-03-15 13:13:41 -070036#include <openssl/md5.h>
37
Elliott Hughes7e128fb2015-12-04 15:50:53 -080038#include <android-base/logging.h>
39#include <android-base/stringprintf.h>
Jeff Sharkey71ebe152013-09-17 17:24:38 -070040#include <cutils/fs.h>
San Mehatf1b736b2009-10-10 17:22:08 -070041#include <cutils/log.h>
42
Robert Craigb9e3ba52014-02-04 10:53:00 -050043#include <selinux/android.h>
44
San Mehatfd7f5872009-10-12 11:32:47 -070045#include <sysutils/NetlinkEvent.h>
46
Kenny Root344ca102012-04-03 17:23:01 -070047#include <private/android_filesystem_config.h>
48
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -070049#include "Benchmark.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070050#include "EmulatedVolume.h"
San Mehatf1b736b2009-10-10 17:22:08 -070051#include "VolumeManager.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070052#include "NetlinkManager.h"
San Mehata2677e42009-12-13 10:40:18 -080053#include "ResponseCode.h"
San Mehata19b2502010-01-06 10:33:53 -080054#include "Loop.h"
Jeff Sharkeyd0640f62015-05-21 22:35:42 -070055#include "fs/Ext4.h"
56#include "fs/Vfat.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070057#include "Utils.h"
San Mehatb78a32c2010-01-10 13:02:12 -080058#include "Devmapper.h"
San Mehat586536c2010-02-16 17:12:00 -080059#include "Process.h"
San Mehatfcf24fe2010-03-03 12:37:32 -080060#include "Asec.h"
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +090061#include "VoldUtil.h"
Ken Sumrall29d8da82011-05-18 17:20:07 -070062#include "cryptfs.h"
San Mehat23969932010-01-09 07:08:06 -080063
Mike Lockwood97f2fc12011-06-07 10:51:38 -070064#define MASS_STORAGE_FILE_PATH "/sys/class/android_usb/android0/f_mass_storage/lun/file"
65
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -070066#define ROUND_UP_POWER_OF_2(number, po2) (((!!(number & ((1U << po2) - 1))) << po2)\
67 + (number & (~((1U << po2) - 1))))
68
Jeff Sharkey36801cc2015-03-13 16:09:20 -070069using android::base::StringPrintf;
70
Jeff Sharkey9f18fe72015-04-01 23:32:18 -070071/*
72 * Path to external storage where *only* root can access ASEC image files
73 */
74const char *VolumeManager::SEC_ASECDIR_EXT = "/mnt/secure/asec";
75
76/*
77 * Path to internal storage where *only* root can access ASEC image files
78 */
79const char *VolumeManager::SEC_ASECDIR_INT = "/data/app-asec";
80
81/*
82 * Path to where secure containers are mounted
83 */
84const char *VolumeManager::ASECDIR = "/mnt/asec";
85
86/*
87 * Path to where OBBs are mounted
88 */
89const char *VolumeManager::LOOPDIR = "/mnt/obb";
90
Jeff Sharkey36801cc2015-03-13 16:09:20 -070091static const char* kUserMountPath = "/mnt/user";
92
Jeff Sharkey36801cc2015-03-13 16:09:20 -070093static const unsigned int kMajorBlockMmc = 179;
94
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -070095/* writes superblock at end of file or device given by name */
96static int writeSuperBlock(const char* name, struct asec_superblock *sb, unsigned int numImgSectors) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070097 int sbfd = open(name, O_RDWR | O_CLOEXEC);
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -070098 if (sbfd < 0) {
99 SLOGE("Failed to open %s for superblock write (%s)", name, strerror(errno));
100 return -1;
101 }
102
103 if (lseek(sbfd, (numImgSectors * 512), SEEK_SET) < 0) {
104 SLOGE("Failed to lseek for superblock (%s)", strerror(errno));
105 close(sbfd);
106 return -1;
107 }
108
109 if (write(sbfd, sb, sizeof(struct asec_superblock)) != sizeof(struct asec_superblock)) {
110 SLOGE("Failed to write superblock (%s)", strerror(errno));
111 close(sbfd);
112 return -1;
113 }
114 close(sbfd);
115 return 0;
116}
117
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200118static unsigned long adjustSectorNumExt4(unsigned long numSectors) {
Daniel Rosenberge9196fe2014-06-10 17:16:03 -0700119 // Ext4 started to reserve 2% or 4096 clusters, whichever is smaller for
120 // preventing costly operations or unexpected ENOSPC error.
121 // Ext4::format() uses default block size without clustering.
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200122 unsigned long clusterSectors = 4096 / 512;
123 unsigned long reservedSectors = (numSectors * 2)/100 + (numSectors % 50 > 0);
Daniel Rosenberge9196fe2014-06-10 17:16:03 -0700124 numSectors += reservedSectors > (4096 * clusterSectors) ? (4096 * clusterSectors) : reservedSectors;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700125 return ROUND_UP_POWER_OF_2(numSectors, 3);
126}
127
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200128static unsigned long adjustSectorNumFAT(unsigned long numSectors) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700129 /*
130 * Add some headroom
131 */
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200132 unsigned long fatSize = (((numSectors * 4) / 512) + 1) * 2;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700133 numSectors += fatSize + 2;
134 /*
135 * FAT is aligned to 32 kb with 512b sectors.
136 */
137 return ROUND_UP_POWER_OF_2(numSectors, 6);
138}
139
140static int setupLoopDevice(char* buffer, size_t len, const char* asecFileName, const char* idHash, bool debug) {
141 if (Loop::lookupActive(idHash, buffer, len)) {
142 if (Loop::create(idHash, asecFileName, buffer, len)) {
143 SLOGE("ASEC loop device creation failed for %s (%s)", asecFileName, strerror(errno));
144 return -1;
145 }
146 if (debug) {
147 SLOGD("New loop device created at %s", buffer);
148 }
149 } else {
150 if (debug) {
151 SLOGD("Found active loopback for %s at %s", asecFileName, buffer);
152 }
153 }
154 return 0;
155}
156
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200157static int setupDevMapperDevice(char* buffer, size_t len, const char* loopDevice, const char* asecFileName, const char* key, const char* idHash , unsigned long numImgSectors, bool* createdDMDevice, bool debug) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700158 if (strcmp(key, "none")) {
159 if (Devmapper::lookupActive(idHash, buffer, len)) {
160 if (Devmapper::create(idHash, loopDevice, key, numImgSectors,
161 buffer, len)) {
162 SLOGE("ASEC device mapping failed for %s (%s)", asecFileName, strerror(errno));
163 return -1;
164 }
165 if (debug) {
166 SLOGD("New devmapper instance created at %s", buffer);
167 }
168 } else {
169 if (debug) {
170 SLOGD("Found active devmapper for %s at %s", asecFileName, buffer);
171 }
172 }
173 *createdDMDevice = true;
174 } else {
175 strcpy(buffer, loopDevice);
176 *createdDMDevice = false;
177 }
178 return 0;
179}
180
181static void waitForDevMapper(const char *dmDevice) {
182 /*
183 * Wait for the device mapper node to be created. Sometimes it takes a
184 * while. Wait for up to 1 second. We could also inspect incoming uevents,
185 * but that would take more effort.
186 */
187 int tries = 25;
188 while (tries--) {
189 if (!access(dmDevice, F_OK) || errno != ENOENT) {
190 break;
191 }
192 usleep(40 * 1000);
193 }
194}
195
San Mehatf1b736b2009-10-10 17:22:08 -0700196VolumeManager *VolumeManager::sInstance = NULL;
197
198VolumeManager *VolumeManager::Instance() {
199 if (!sInstance)
200 sInstance = new VolumeManager();
201 return sInstance;
202}
203
204VolumeManager::VolumeManager() {
San Mehatd9a4e352010-03-12 13:32:47 -0800205 mDebug = false;
San Mehat88705162010-01-15 09:26:28 -0800206 mActiveContainers = new AsecIdCollection();
San Mehatf1b736b2009-10-10 17:22:08 -0700207 mBroadcaster = NULL;
Mike Lockwooda28056b2010-10-28 15:21:24 -0400208 mUmsSharingCount = 0;
209 mSavedDirtyRatio = -1;
210 // set dirty ratio to 0 when UMS is active
211 mUmsDirtyRatio = 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700212}
213
214VolumeManager::~VolumeManager() {
San Mehat88705162010-01-15 09:26:28 -0800215 delete mActiveContainers;
San Mehatf1b736b2009-10-10 17:22:08 -0700216}
217
Kenny Root7b18a7b2010-03-15 13:13:41 -0700218char *VolumeManager::asecHash(const char *id, char *buffer, size_t len) {
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700219 static const char* digits = "0123456789abcdef";
220
Kenny Root7b18a7b2010-03-15 13:13:41 -0700221 unsigned char sig[MD5_DIGEST_LENGTH];
222
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700223 if (buffer == NULL) {
224 SLOGE("Destination buffer is NULL");
225 errno = ESPIPE;
226 return NULL;
227 } else if (id == NULL) {
228 SLOGE("Source buffer is NULL");
229 errno = ESPIPE;
230 return NULL;
231 } else if (len < MD5_ASCII_LENGTH_PLUS_NULL) {
Colin Cross59846b62014-02-06 20:34:29 -0800232 SLOGE("Target hash buffer size < %d bytes (%zu)",
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700233 MD5_ASCII_LENGTH_PLUS_NULL, len);
San Mehatd9a4e352010-03-12 13:32:47 -0800234 errno = ESPIPE;
235 return NULL;
236 }
Kenny Root7b18a7b2010-03-15 13:13:41 -0700237
238 MD5(reinterpret_cast<const unsigned char*>(id), strlen(id), sig);
San Mehatd9a4e352010-03-12 13:32:47 -0800239
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700240 char *p = buffer;
Kenny Root7b18a7b2010-03-15 13:13:41 -0700241 for (int i = 0; i < MD5_DIGEST_LENGTH; i++) {
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700242 *p++ = digits[sig[i] >> 4];
243 *p++ = digits[sig[i] & 0x0F];
San Mehatd9a4e352010-03-12 13:32:47 -0800244 }
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700245 *p = '\0';
San Mehatd9a4e352010-03-12 13:32:47 -0800246
247 return buffer;
248}
249
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700250int VolumeManager::setDebug(bool enable) {
San Mehatd9a4e352010-03-12 13:32:47 -0800251 mDebug = enable;
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700252 return 0;
San Mehatd9a4e352010-03-12 13:32:47 -0800253}
254
San Mehatf1b736b2009-10-10 17:22:08 -0700255int VolumeManager::start() {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700256 // Always start from a clean slate by unmounting everything in
257 // directories that we own, in case we crashed.
Jeff Sharkey9c484982015-03-31 10:35:33 -0700258 unmountAll();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700259
260 // Assume that we always have an emulated volume on internal
261 // storage; the framework will decide if it should be mounted.
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700262 CHECK(mInternalEmulated == nullptr);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700263 mInternalEmulated = std::shared_ptr<android::vold::VolumeBase>(
Jeff Sharkey3161fb32015-04-12 16:03:33 -0700264 new android::vold::EmulatedVolume("/data/media"));
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700265 mInternalEmulated->create();
266
San Mehatf1b736b2009-10-10 17:22:08 -0700267 return 0;
268}
269
270int VolumeManager::stop() {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700271 CHECK(mInternalEmulated != nullptr);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700272 mInternalEmulated->destroy();
273 mInternalEmulated = nullptr;
San Mehatf1b736b2009-10-10 17:22:08 -0700274 return 0;
275}
276
San Mehatfd7f5872009-10-12 11:32:47 -0700277void VolumeManager::handleBlockEvent(NetlinkEvent *evt) {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700278 std::lock_guard<std::mutex> lock(mLock);
279
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700280 if (mDebug) {
281 LOG(VERBOSE) << "----------------";
282 LOG(VERBOSE) << "handleBlockEvent with action " << (int) evt->getAction();
283 evt->dump();
284 }
San Mehatf1b736b2009-10-10 17:22:08 -0700285
Mateusz Nowak64403792015-08-03 16:39:19 +0200286 std::string eventPath(evt->findParam("DEVPATH")?evt->findParam("DEVPATH"):"");
287 std::string devType(evt->findParam("DEVTYPE")?evt->findParam("DEVTYPE"):"");
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700288
289 if (devType != "disk") return;
290
291 int major = atoi(evt->findParam("MAJOR"));
292 int minor = atoi(evt->findParam("MINOR"));
293 dev_t device = makedev(major, minor);
294
295 switch (evt->getAction()) {
296 case NetlinkEvent::Action::kAdd: {
297 for (auto source : mDiskSources) {
298 if (source->matches(eventPath)) {
299 // For now, assume that MMC devices are SD, and that
300 // everything else is USB
301 int flags = source->getFlags();
302 if (major == kMajorBlockMmc) {
303 flags |= android::vold::Disk::Flags::kSd;
304 } else {
305 flags |= android::vold::Disk::Flags::kUsb;
306 }
307
308 auto disk = new android::vold::Disk(eventPath, device,
309 source->getNickname(), flags);
310 disk->create();
311 mDisks.push_back(std::shared_ptr<android::vold::Disk>(disk));
312 break;
313 }
314 }
315 break;
316 }
317 case NetlinkEvent::Action::kChange: {
Jeff Sharkey7d9d0112015-04-14 23:14:23 -0700318 LOG(DEBUG) << "Disk at " << major << ":" << minor << " changed";
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700319 for (auto disk : mDisks) {
320 if (disk->getDevice() == device) {
321 disk->readMetadata();
322 disk->readPartitions();
323 }
324 }
325 break;
326 }
327 case NetlinkEvent::Action::kRemove: {
328 auto i = mDisks.begin();
329 while (i != mDisks.end()) {
330 if ((*i)->getDevice() == device) {
331 (*i)->destroy();
332 i = mDisks.erase(i);
333 } else {
334 ++i;
335 }
336 }
337 break;
338 }
339 default: {
340 LOG(WARNING) << "Unexpected block event action " << (int) evt->getAction();
341 break;
342 }
343 }
344}
345
346void VolumeManager::addDiskSource(const std::shared_ptr<DiskSource>& diskSource) {
347 mDiskSources.push_back(diskSource);
348}
349
350std::shared_ptr<android::vold::Disk> VolumeManager::findDisk(const std::string& id) {
351 for (auto disk : mDisks) {
352 if (disk->getId() == id) {
353 return disk;
San Mehatf1b736b2009-10-10 17:22:08 -0700354 }
355 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700356 return nullptr;
357}
San Mehatf1b736b2009-10-10 17:22:08 -0700358
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700359std::shared_ptr<android::vold::VolumeBase> VolumeManager::findVolume(const std::string& id) {
360 if (mInternalEmulated->getId() == id) {
361 return mInternalEmulated;
San Mehatf1b736b2009-10-10 17:22:08 -0700362 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700363 for (auto disk : mDisks) {
364 auto vol = disk->findVolume(id);
365 if (vol != nullptr) {
366 return vol;
367 }
368 }
369 return nullptr;
370}
371
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700372void VolumeManager::listVolumes(android::vold::VolumeBase::Type type,
373 std::list<std::string>& list) {
374 list.clear();
375 for (auto disk : mDisks) {
376 disk->listVolumes(type, list);
377 }
378}
379
380nsecs_t VolumeManager::benchmarkPrivate(const std::string& id) {
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700381 std::string path;
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700382 if (id == "private" || id == "null") {
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700383 path = "/data";
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700384 } else {
385 auto vol = findVolume(id);
386 if (vol != nullptr && vol->getState() == android::vold::VolumeBase::State::kMounted) {
387 path = vol->getPath();
388 }
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700389 }
390
391 if (path.empty()) {
392 LOG(WARNING) << "Failed to find volume for " << id;
393 return -1;
394 }
395
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -0700396 return android::vold::BenchmarkPrivate(path);
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700397}
398
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700399int VolumeManager::forgetPartition(const std::string& partGuid) {
400 std::string normalizedGuid;
401 if (android::vold::NormalizeHex(partGuid, normalizedGuid)) {
402 LOG(WARNING) << "Invalid GUID " << partGuid;
403 return -1;
404 }
405
406 std::string keyPath = android::vold::BuildKeyPath(normalizedGuid);
407 if (unlink(keyPath.c_str()) != 0) {
408 LOG(ERROR) << "Failed to unlink " << keyPath;
409 return -1;
410 }
411
412 return 0;
413}
414
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700415int VolumeManager::linkPrimary(userid_t userId) {
416 std::string source(mPrimary->getPath());
417 if (mPrimary->getType() == android::vold::VolumeBase::Type::kEmulated) {
418 source = StringPrintf("%s/%d", source.c_str(), userId);
Jeff Sharkey32679a82015-07-21 14:22:01 -0700419 fs_prepare_dir(source.c_str(), 0755, AID_ROOT, AID_ROOT);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700420 }
421
422 std::string target(StringPrintf("/mnt/user/%d/primary", userId));
423 if (TEMP_FAILURE_RETRY(unlink(target.c_str()))) {
424 if (errno != ENOENT) {
425 SLOGW("Failed to unlink %s: %s", target.c_str(), strerror(errno));
426 }
427 }
Jeff Sharkey1bfb3752015-04-29 15:22:23 -0700428 LOG(DEBUG) << "Linking " << source << " to " << target;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700429 if (TEMP_FAILURE_RETRY(symlink(source.c_str(), target.c_str()))) {
430 SLOGW("Failed to link %s to %s: %s", source.c_str(), target.c_str(),
431 strerror(errno));
432 return -errno;
433 }
434 return 0;
435}
436
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700437int VolumeManager::onUserAdded(userid_t userId, int userSerialNumber) {
438 mAddedUsers[userId] = userSerialNumber;
439 return 0;
440}
441
442int VolumeManager::onUserRemoved(userid_t userId) {
443 mAddedUsers.erase(userId);
444 return 0;
445}
446
447int VolumeManager::onUserStarted(userid_t userId) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700448 // Note that sometimes the system will spin up processes from Zygote
449 // before actually starting the user, so we're okay if Zygote
450 // already created this directory.
451 std::string path(StringPrintf("%s/%d", kUserMountPath, userId));
452 fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT);
453
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700454 mStartedUsers.insert(userId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700455 if (mPrimary) {
456 linkPrimary(userId);
457 }
458 return 0;
459}
460
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700461int VolumeManager::onUserStopped(userid_t userId) {
462 mStartedUsers.erase(userId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700463 return 0;
464}
465
466int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol) {
467 mPrimary = vol;
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700468 for (userid_t userId : mStartedUsers) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700469 linkPrimary(userId);
470 }
471 return 0;
472}
473
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700474static int unmount_tree(const char* path) {
475 size_t path_len = strlen(path);
476
477 FILE* fp = setmntent("/proc/mounts", "r");
478 if (fp == NULL) {
479 ALOGE("Error opening /proc/mounts: %s", strerror(errno));
480 return -errno;
481 }
482
483 // Some volumes can be stacked on each other, so force unmount in
484 // reverse order to give us the best chance of success.
485 std::list<std::string> toUnmount;
486 mntent* mentry;
487 while ((mentry = getmntent(fp)) != NULL) {
488 if (strncmp(mentry->mnt_dir, path, path_len) == 0) {
489 toUnmount.push_front(std::string(mentry->mnt_dir));
490 }
491 }
492 endmntent(fp);
493
494 for (auto path : toUnmount) {
495 if (umount2(path.c_str(), MNT_DETACH)) {
496 ALOGW("Failed to unmount %s: %s", path.c_str(), strerror(errno));
497 }
498 }
499 return 0;
500}
501
Jeff Sharkey66270a22015-06-24 11:49:24 -0700502int VolumeManager::remountUid(uid_t uid, const std::string& mode) {
503 LOG(DEBUG) << "Remounting " << uid << " as mode " << mode;
504
505 DIR* dir;
506 struct dirent* de;
507 char rootName[PATH_MAX];
508 char pidName[PATH_MAX];
509 int pidFd;
510 int nsFd;
511 struct stat sb;
512 pid_t child;
513
514 if (!(dir = opendir("/proc"))) {
515 PLOG(ERROR) << "Failed to opendir";
516 return -1;
517 }
518
519 // Figure out root namespace to compare against below
Daichi Hirono10d34882016-01-29 14:33:51 +0900520 if (android::vold::SaneReadLinkAt(dirfd(dir), "1/ns/mnt", rootName, PATH_MAX) == -1) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700521 PLOG(ERROR) << "Failed to readlink";
522 closedir(dir);
523 return -1;
524 }
525
526 // Poke through all running PIDs look for apps running as UID
527 while ((de = readdir(dir))) {
528 pidFd = -1;
529 nsFd = -1;
530
531 pidFd = openat(dirfd(dir), de->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
532 if (pidFd < 0) {
533 goto next;
534 }
535 if (fstat(pidFd, &sb) != 0) {
536 PLOG(WARNING) << "Failed to stat " << de->d_name;
537 goto next;
538 }
539 if (sb.st_uid != uid) {
540 goto next;
541 }
542
543 // Matches so far, but refuse to touch if in root namespace
544 LOG(DEBUG) << "Found matching PID " << de->d_name;
Daichi Hirono10d34882016-01-29 14:33:51 +0900545 if (android::vold::SaneReadLinkAt(pidFd, "ns/mnt", pidName, PATH_MAX) == -1) {
Jeff Sharkey66270a22015-06-24 11:49:24 -0700546 PLOG(WARNING) << "Failed to read namespace for " << de->d_name;
547 goto next;
548 }
549 if (!strcmp(rootName, pidName)) {
550 LOG(WARNING) << "Skipping due to root namespace";
551 goto next;
552 }
553
554 // We purposefully leave the namespace open across the fork
555 nsFd = openat(pidFd, "ns/mnt", O_RDONLY);
556 if (nsFd < 0) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700557 PLOG(WARNING) << "Failed to open namespace for " << de->d_name;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700558 goto next;
559 }
560
561 if (!(child = fork())) {
562 if (setns(nsFd, CLONE_NEWNS) != 0) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700563 PLOG(ERROR) << "Failed to setns for " << de->d_name;
Jeff Sharkey66270a22015-06-24 11:49:24 -0700564 _exit(1);
565 }
566
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700567 unmount_tree("/storage");
Jeff Sharkey66270a22015-06-24 11:49:24 -0700568
569 std::string storageSource;
570 if (mode == "default") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700571 storageSource = "/mnt/runtime/default";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700572 } else if (mode == "read") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700573 storageSource = "/mnt/runtime/read";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700574 } else if (mode == "write") {
Jeff Sharkey1bd078f2015-08-06 11:40:00 -0700575 storageSource = "/mnt/runtime/write";
Jeff Sharkey66270a22015-06-24 11:49:24 -0700576 } else {
577 // Sane default of no storage visible
578 _exit(0);
579 }
580 if (TEMP_FAILURE_RETRY(mount(storageSource.c_str(), "/storage",
581 NULL, MS_BIND | MS_REC | MS_SLAVE, NULL)) == -1) {
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700582 PLOG(ERROR) << "Failed to mount " << storageSource << " for "
583 << de->d_name;
584 _exit(1);
Jeff Sharkey66270a22015-06-24 11:49:24 -0700585 }
Jeff Sharkeyc7b5b572015-06-30 15:54:17 -0700586
587 // Mount user-specific symlink helper into place
588 userid_t user_id = multiuser_get_user_id(uid);
589 std::string userSource(StringPrintf("/mnt/user/%d", user_id));
590 if (TEMP_FAILURE_RETRY(mount(userSource.c_str(), "/storage/self",
591 NULL, MS_BIND, NULL)) == -1) {
592 PLOG(ERROR) << "Failed to mount " << userSource << " for "
593 << de->d_name;
594 _exit(1);
595 }
596
Jeff Sharkey66270a22015-06-24 11:49:24 -0700597 _exit(0);
598 }
599
600 if (child == -1) {
601 PLOG(ERROR) << "Failed to fork";
602 goto next;
603 } else {
604 TEMP_FAILURE_RETRY(waitpid(child, nullptr, 0));
605 }
606
607next:
608 close(nsFd);
609 close(pidFd);
610 }
611 closedir(dir);
612 return 0;
613}
614
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700615int VolumeManager::reset() {
616 // Tear down all existing disks/volumes and start from a blank slate so
617 // newly connected framework hears all events.
618 mInternalEmulated->destroy();
619 mInternalEmulated->create();
620 for (auto disk : mDisks) {
621 disk->destroy();
622 disk->create();
623 }
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700624 mAddedUsers.clear();
625 mStartedUsers.clear();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700626 return 0;
627}
628
629int VolumeManager::shutdown() {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700630 mInternalEmulated->destroy();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700631 for (auto disk : mDisks) {
632 disk->destroy();
633 }
634 mDisks.clear();
635 return 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700636}
637
Jeff Sharkey9c484982015-03-31 10:35:33 -0700638int VolumeManager::unmountAll() {
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700639 std::lock_guard<std::mutex> lock(mLock);
640
Jeff Sharkey9c484982015-03-31 10:35:33 -0700641 // First, try gracefully unmounting all known devices
642 if (mInternalEmulated != nullptr) {
643 mInternalEmulated->unmount();
644 }
645 for (auto disk : mDisks) {
646 disk->unmountAll();
647 }
648
649 // Worst case we might have some stale mounts lurking around, so
650 // force unmount those just to be safe.
651 FILE* fp = setmntent("/proc/mounts", "r");
652 if (fp == NULL) {
653 SLOGE("Error opening /proc/mounts: %s", strerror(errno));
654 return -errno;
655 }
656
657 // Some volumes can be stacked on each other, so force unmount in
658 // reverse order to give us the best chance of success.
659 std::list<std::string> toUnmount;
660 mntent* mentry;
661 while ((mentry = getmntent(fp)) != NULL) {
662 if (strncmp(mentry->mnt_dir, "/mnt/", 5) == 0
663 || strncmp(mentry->mnt_dir, "/storage/", 9) == 0) {
664 toUnmount.push_front(std::string(mentry->mnt_dir));
665 }
666 }
667 endmntent(fp);
668
669 for (auto path : toUnmount) {
670 SLOGW("Tearing down stale mount %s", path.c_str());
671 android::vold::ForceUnmount(path);
672 }
673
674 return 0;
675}
676
Kenny Root508c0e12010-07-12 09:59:49 -0700677int VolumeManager::getObbMountPath(const char *sourceFile, char *mountPath, int mountPathLen) {
678 char idHash[33];
679 if (!asecHash(sourceFile, idHash, sizeof(idHash))) {
680 SLOGE("Hash of '%s' failed (%s)", sourceFile, strerror(errno));
681 return -1;
682 }
683
684 memset(mountPath, 0, mountPathLen);
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700685 int written = snprintf(mountPath, mountPathLen, "%s/%s", VolumeManager::LOOPDIR, idHash);
rpcraigd1c226f2012-10-09 06:58:16 -0400686 if ((written < 0) || (written >= mountPathLen)) {
687 errno = EINVAL;
688 return -1;
689 }
Kenny Root508c0e12010-07-12 09:59:49 -0700690
691 if (access(mountPath, F_OK)) {
692 errno = ENOENT;
693 return -1;
694 }
695
696 return 0;
697}
698
San Mehata19b2502010-01-06 10:33:53 -0800699int VolumeManager::getAsecMountPath(const char *id, char *buffer, int maxlen) {
San Mehat88ac2c02010-03-23 11:15:58 -0700700 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700701
Nick Kralevich0de7c612014-01-27 14:58:06 -0800702 if (!isLegalAsecId(id)) {
703 SLOGE("getAsecMountPath: Invalid asec id \"%s\"", id);
704 errno = EINVAL;
705 return -1;
706 }
707
Kenny Root344ca102012-04-03 17:23:01 -0700708 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
709 SLOGE("Couldn't find ASEC %s", id);
710 return -1;
711 }
San Mehat88ac2c02010-03-23 11:15:58 -0700712
713 memset(buffer, 0, maxlen);
714 if (access(asecFileName, F_OK)) {
715 errno = ENOENT;
716 return -1;
717 }
San Mehata19b2502010-01-06 10:33:53 -0800718
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700719 int written = snprintf(buffer, maxlen, "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -0400720 if ((written < 0) || (written >= maxlen)) {
721 SLOGE("getAsecMountPath failed for %s: couldn't construct path in buffer", id);
722 errno = EINVAL;
723 return -1;
724 }
725
San Mehata19b2502010-01-06 10:33:53 -0800726 return 0;
727}
728
Dianne Hackborn736910c2011-06-27 13:37:07 -0700729int VolumeManager::getAsecFilesystemPath(const char *id, char *buffer, int maxlen) {
730 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700731
Nick Kralevich0de7c612014-01-27 14:58:06 -0800732 if (!isLegalAsecId(id)) {
733 SLOGE("getAsecFilesystemPath: Invalid asec id \"%s\"", id);
734 errno = EINVAL;
735 return -1;
736 }
737
Kenny Root344ca102012-04-03 17:23:01 -0700738 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
739 SLOGE("Couldn't find ASEC %s", id);
740 return -1;
741 }
Dianne Hackborn736910c2011-06-27 13:37:07 -0700742
743 memset(buffer, 0, maxlen);
744 if (access(asecFileName, F_OK)) {
745 errno = ENOENT;
746 return -1;
747 }
748
rpcraigd1c226f2012-10-09 06:58:16 -0400749 int written = snprintf(buffer, maxlen, "%s", asecFileName);
750 if ((written < 0) || (written >= maxlen)) {
751 errno = EINVAL;
752 return -1;
753 }
754
Dianne Hackborn736910c2011-06-27 13:37:07 -0700755 return 0;
756}
757
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200758int VolumeManager::createAsec(const char *id, unsigned long numSectors, const char *fstype,
Kenny Root344ca102012-04-03 17:23:01 -0700759 const char *key, const int ownerUid, bool isExternal) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800760 struct asec_superblock sb;
761 memset(&sb, 0, sizeof(sb));
762
Nick Kralevich0de7c612014-01-27 14:58:06 -0800763 if (!isLegalAsecId(id)) {
764 SLOGE("createAsec: Invalid asec id \"%s\"", id);
765 errno = EINVAL;
766 return -1;
767 }
768
Kenny Root344ca102012-04-03 17:23:01 -0700769 const bool wantFilesystem = strcmp(fstype, "none");
770 bool usingExt4 = false;
771 if (wantFilesystem) {
772 usingExt4 = !strcmp(fstype, "ext4");
773 if (usingExt4) {
774 sb.c_opts |= ASEC_SB_C_OPTS_EXT4;
775 } else if (strcmp(fstype, "fat")) {
776 SLOGE("Invalid filesystem type %s", fstype);
777 errno = EINVAL;
778 return -1;
779 }
780 }
781
San Mehatfcf24fe2010-03-03 12:37:32 -0800782 sb.magic = ASEC_SB_MAGIC;
783 sb.ver = ASEC_SB_VER;
San Mehata19b2502010-01-06 10:33:53 -0800784
San Mehatd31e3802010-02-18 08:37:45 -0800785 if (numSectors < ((1024*1024)/512)) {
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200786 SLOGE("Invalid container size specified (%lu sectors)", numSectors);
San Mehatd31e3802010-02-18 08:37:45 -0800787 errno = EINVAL;
788 return -1;
789 }
790
San Mehata19b2502010-01-06 10:33:53 -0800791 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700792
793 if (!findAsec(id, asecFileName, sizeof(asecFileName))) {
794 SLOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
795 asecFileName, strerror(errno));
796 errno = EADDRINUSE;
797 return -1;
798 }
799
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700800 const char *asecDir = isExternal ? VolumeManager::SEC_ASECDIR_EXT : VolumeManager::SEC_ASECDIR_INT;
Kenny Root344ca102012-04-03 17:23:01 -0700801
rpcraigd1c226f2012-10-09 06:58:16 -0400802 int written = snprintf(asecFileName, sizeof(asecFileName), "%s/%s.asec", asecDir, id);
803 if ((written < 0) || (size_t(written) >= sizeof(asecFileName))) {
804 errno = EINVAL;
805 return -1;
806 }
San Mehata19b2502010-01-06 10:33:53 -0800807
808 if (!access(asecFileName, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700809 SLOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
Kenny Root344ca102012-04-03 17:23:01 -0700810 asecFileName, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800811 errno = EADDRINUSE;
812 return -1;
813 }
814
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200815 unsigned long numImgSectors;
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -0700816 if (usingExt4)
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700817 numImgSectors = adjustSectorNumExt4(numSectors);
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -0700818 else
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700819 numImgSectors = adjustSectorNumFAT(numSectors);
San Mehatfcf24fe2010-03-03 12:37:32 -0800820
821 // Add +1 for our superblock which is at the end
822 if (Loop::createImageFile(asecFileName, numImgSectors + 1)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700823 SLOGE("ASEC image file creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800824 return -1;
825 }
826
San Mehatd9a4e352010-03-12 13:32:47 -0800827 char idHash[33];
828 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700829 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -0800830 unlink(asecFileName);
831 return -1;
832 }
833
San Mehata19b2502010-01-06 10:33:53 -0800834 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -0800835 if (Loop::create(idHash, asecFileName, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700836 SLOGE("ASEC loop device creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800837 unlink(asecFileName);
838 return -1;
839 }
840
San Mehatb78a32c2010-01-10 13:02:12 -0800841 char dmDevice[255];
842 bool cleanupDm = false;
San Mehata19b2502010-01-06 10:33:53 -0800843
San Mehatb78a32c2010-01-10 13:02:12 -0800844 if (strcmp(key, "none")) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800845 // XXX: This is all we support for now
846 sb.c_cipher = ASEC_SB_C_CIPHER_TWOFISH;
San Mehatd9a4e352010-03-12 13:32:47 -0800847 if (Devmapper::create(idHash, loopDevice, key, numImgSectors, dmDevice,
San Mehatb78a32c2010-01-10 13:02:12 -0800848 sizeof(dmDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700849 SLOGE("ASEC device mapping failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800850 Loop::destroyByDevice(loopDevice);
851 unlink(asecFileName);
852 return -1;
853 }
854 cleanupDm = true;
855 } else {
San Mehatfcf24fe2010-03-03 12:37:32 -0800856 sb.c_cipher = ASEC_SB_C_CIPHER_NONE;
San Mehatb78a32c2010-01-10 13:02:12 -0800857 strcpy(dmDevice, loopDevice);
858 }
859
San Mehatfcf24fe2010-03-03 12:37:32 -0800860 /*
861 * Drop down the superblock at the end of the file
862 */
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700863 if (writeSuperBlock(loopDevice, &sb, numImgSectors)) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800864 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800865 Devmapper::destroy(idHash);
San Mehatfcf24fe2010-03-03 12:37:32 -0800866 }
867 Loop::destroyByDevice(loopDevice);
868 unlink(asecFileName);
869 return -1;
870 }
871
Kenny Root344ca102012-04-03 17:23:01 -0700872 if (wantFilesystem) {
873 int formatStatus;
rpcraiga54e13a2012-09-21 14:17:08 -0400874 char mountPoint[255];
875
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700876 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -0400877 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
878 SLOGE("ASEC fs format failed: couldn't construct mountPoint");
879 if (cleanupDm) {
880 Devmapper::destroy(idHash);
881 }
882 Loop::destroyByDevice(loopDevice);
883 unlink(asecFileName);
884 return -1;
885 }
rpcraiga54e13a2012-09-21 14:17:08 -0400886
Kenny Root344ca102012-04-03 17:23:01 -0700887 if (usingExt4) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700888 formatStatus = android::vold::ext4::Format(dmDevice, numImgSectors, mountPoint);
Kenny Root344ca102012-04-03 17:23:01 -0700889 } else {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700890 formatStatus = android::vold::vfat::Format(dmDevice, numImgSectors);
San Mehatb78a32c2010-01-10 13:02:12 -0800891 }
San Mehata19b2502010-01-06 10:33:53 -0800892
Kenny Root344ca102012-04-03 17:23:01 -0700893 if (formatStatus < 0) {
894 SLOGE("ASEC fs format failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800895 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800896 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -0800897 }
San Mehateb13a902010-01-07 12:12:50 -0800898 Loop::destroyByDevice(loopDevice);
899 unlink(asecFileName);
900 return -1;
901 }
Kenny Root344ca102012-04-03 17:23:01 -0700902
Kenny Root344ca102012-04-03 17:23:01 -0700903 if (mkdir(mountPoint, 0000)) {
San Mehata1091cb2010-02-28 20:17:20 -0800904 if (errno != EEXIST) {
San Mehat97ac40e2010-03-24 10:24:19 -0700905 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehata1091cb2010-02-28 20:17:20 -0800906 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800907 Devmapper::destroy(idHash);
San Mehata1091cb2010-02-28 20:17:20 -0800908 }
909 Loop::destroyByDevice(loopDevice);
910 unlink(asecFileName);
911 return -1;
912 }
San Mehatb78a32c2010-01-10 13:02:12 -0800913 }
San Mehata1091cb2010-02-28 20:17:20 -0800914
Kenny Root344ca102012-04-03 17:23:01 -0700915 int mountStatus;
916 if (usingExt4) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700917 mountStatus = android::vold::ext4::Mount(dmDevice, mountPoint,
918 false, false, false);
Kenny Root344ca102012-04-03 17:23:01 -0700919 } else {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700920 mountStatus = android::vold::vfat::Mount(dmDevice, mountPoint,
921 false, false, false, ownerUid, 0, 0000, false);
Kenny Root344ca102012-04-03 17:23:01 -0700922 }
923
924 if (mountStatus) {
San Mehat97ac40e2010-03-24 10:24:19 -0700925 SLOGE("ASEC FAT mount failed (%s)", strerror(errno));
San Mehata1091cb2010-02-28 20:17:20 -0800926 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800927 Devmapper::destroy(idHash);
San Mehata1091cb2010-02-28 20:17:20 -0800928 }
929 Loop::destroyByDevice(loopDevice);
930 unlink(asecFileName);
931 return -1;
932 }
Kenny Root344ca102012-04-03 17:23:01 -0700933
934 if (usingExt4) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700935 int dirfd = open(mountPoint, O_DIRECTORY | O_CLOEXEC);
Kenny Root344ca102012-04-03 17:23:01 -0700936 if (dirfd >= 0) {
937 if (fchown(dirfd, ownerUid, AID_SYSTEM)
938 || fchmod(dirfd, S_IRUSR | S_IWUSR | S_IXUSR | S_ISGID | S_IRGRP | S_IXGRP)) {
939 SLOGI("Cannot chown/chmod new ASEC mount point %s", mountPoint);
940 }
941 close(dirfd);
942 }
943 }
San Mehata1091cb2010-02-28 20:17:20 -0800944 } else {
San Mehat97ac40e2010-03-24 10:24:19 -0700945 SLOGI("Created raw secure container %s (no filesystem)", id);
San Mehata19b2502010-01-06 10:33:53 -0800946 }
San Mehat88705162010-01-15 09:26:28 -0800947
Kenny Rootcbacf782010-09-24 15:11:48 -0700948 mActiveContainers->push_back(new ContainerData(strdup(id), ASEC));
San Mehata19b2502010-01-06 10:33:53 -0800949 return 0;
950}
951
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200952int VolumeManager::resizeAsec(const char *id, unsigned long numSectors, const char *key) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700953 char asecFileName[255];
954 char mountPoint[255];
955 bool cleanupDm = false;
956
957 if (!isLegalAsecId(id)) {
958 SLOGE("resizeAsec: Invalid asec id \"%s\"", id);
959 errno = EINVAL;
960 return -1;
961 }
962
963 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
964 SLOGE("Couldn't find ASEC %s", id);
965 return -1;
966 }
967
Jeff Sharkey9f18fe72015-04-01 23:32:18 -0700968 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700969 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
970 SLOGE("ASEC resize failed for %s: couldn't construct mountpoint", id);
971 return -1;
972 }
973
974 if (isMountpointMounted(mountPoint)) {
975 SLOGE("ASEC %s mounted. Unmount before resizing", id);
976 errno = EBUSY;
977 return -1;
978 }
979
980 struct asec_superblock sb;
981 int fd;
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200982 unsigned long oldNumSec = 0;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700983
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700984 if ((fd = open(asecFileName, O_RDONLY | O_CLOEXEC)) < 0) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700985 SLOGE("Failed to open ASEC file (%s)", strerror(errno));
986 return -1;
987 }
988
989 struct stat info;
990 if (fstat(fd, &info) < 0) {
991 SLOGE("Failed to get file size (%s)", strerror(errno));
992 close(fd);
993 return -1;
994 }
995
996 oldNumSec = info.st_size / 512;
997
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200998 unsigned long numImgSectors;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700999 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4)
1000 numImgSectors = adjustSectorNumExt4(numSectors);
1001 else
1002 numImgSectors = adjustSectorNumFAT(numSectors);
1003 /*
1004 * add one block for the superblock
1005 */
Mateusz Nowaka4f48d02015-08-03 18:06:39 +02001006 SLOGD("Resizing from %lu sectors to %lu sectors", oldNumSec, numImgSectors + 1);
Jeff Sharkey43ed1232014-08-22 12:29:05 -07001007 if (oldNumSec == numImgSectors + 1) {
1008 SLOGW("Size unchanged; ignoring resize request");
1009 return 0;
1010 } else if (oldNumSec > numImgSectors + 1) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001011 SLOGE("Only growing is currently supported.");
1012 close(fd);
1013 return -1;
1014 }
1015
1016 /*
1017 * Try to read superblock.
1018 */
1019 memset(&sb, 0, sizeof(struct asec_superblock));
1020 if (lseek(fd, ((oldNumSec - 1) * 512), SEEK_SET) < 0) {
1021 SLOGE("lseek failed (%s)", strerror(errno));
1022 close(fd);
1023 return -1;
1024 }
1025 if (read(fd, &sb, sizeof(struct asec_superblock)) != sizeof(struct asec_superblock)) {
1026 SLOGE("superblock read failed (%s)", strerror(errno));
1027 close(fd);
1028 return -1;
1029 }
1030 close(fd);
1031
1032 if (mDebug) {
1033 SLOGD("Container sb magic/ver (%.8x/%.2x)", sb.magic, sb.ver);
1034 }
1035 if (sb.magic != ASEC_SB_MAGIC || sb.ver != ASEC_SB_VER) {
1036 SLOGE("Bad container magic/version (%.8x/%.2x)", sb.magic, sb.ver);
1037 errno = EMEDIUMTYPE;
1038 return -1;
1039 }
1040
1041 if (!(sb.c_opts & ASEC_SB_C_OPTS_EXT4)) {
1042 SLOGE("Only ext4 partitions are supported for resize");
1043 errno = EINVAL;
1044 return -1;
1045 }
1046
1047 if (Loop::resizeImageFile(asecFileName, numImgSectors + 1)) {
1048 SLOGE("Resize of ASEC image file failed. Could not resize %s", id);
1049 return -1;
1050 }
1051
1052 /*
1053 * Drop down a copy of the superblock at the end of the file
1054 */
1055 if (writeSuperBlock(asecFileName, &sb, numImgSectors))
1056 goto fail;
1057
1058 char idHash[33];
1059 if (!asecHash(id, idHash, sizeof(idHash))) {
1060 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
1061 goto fail;
1062 }
1063
1064 char loopDevice[255];
1065 if (setupLoopDevice(loopDevice, sizeof(loopDevice), asecFileName, idHash, mDebug))
1066 goto fail;
1067
1068 char dmDevice[255];
1069
1070 if (setupDevMapperDevice(dmDevice, sizeof(dmDevice), loopDevice, asecFileName, key, idHash, numImgSectors, &cleanupDm, mDebug)) {
1071 Loop::destroyByDevice(loopDevice);
1072 goto fail;
1073 }
1074
1075 /*
1076 * Wait for the device mapper node to be created.
1077 */
1078 waitForDevMapper(dmDevice);
1079
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001080 if (android::vold::ext4::Resize(dmDevice, numImgSectors)) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001081 SLOGE("Unable to resize %s (%s)", id, strerror(errno));
1082 if (cleanupDm) {
1083 Devmapper::destroy(idHash);
1084 }
1085 Loop::destroyByDevice(loopDevice);
1086 goto fail;
1087 }
1088
1089 return 0;
1090fail:
1091 Loop::resizeImageFile(asecFileName, oldNumSec);
1092 return -1;
1093}
1094
San Mehata19b2502010-01-06 10:33:53 -08001095int VolumeManager::finalizeAsec(const char *id) {
1096 char asecFileName[255];
1097 char loopDevice[255];
1098 char mountPoint[255];
1099
Nick Kralevich0de7c612014-01-27 14:58:06 -08001100 if (!isLegalAsecId(id)) {
1101 SLOGE("finalizeAsec: Invalid asec id \"%s\"", id);
1102 errno = EINVAL;
1103 return -1;
1104 }
1105
Kenny Root344ca102012-04-03 17:23:01 -07001106 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1107 SLOGE("Couldn't find ASEC %s", id);
1108 return -1;
1109 }
San Mehata19b2502010-01-06 10:33:53 -08001110
San Mehatd9a4e352010-03-12 13:32:47 -08001111 char idHash[33];
1112 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001113 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -08001114 return -1;
1115 }
1116
1117 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001118 SLOGE("Unable to finalize %s (%s)", id, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001119 return -1;
1120 }
1121
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001122 unsigned long nr_sec = 0;
Kenny Root344ca102012-04-03 17:23:01 -07001123 struct asec_superblock sb;
1124
1125 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
1126 return -1;
1127 }
1128
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001129 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -04001130 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1131 SLOGE("ASEC finalize failed: couldn't construct mountPoint");
1132 return -1;
1133 }
Kenny Root344ca102012-04-03 17:23:01 -07001134
1135 int result = 0;
1136 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001137 result = android::vold::ext4::Mount(loopDevice, mountPoint,
1138 true, true, true);
Kenny Root344ca102012-04-03 17:23:01 -07001139 } else {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001140 result = android::vold::vfat::Mount(loopDevice, mountPoint,
1141 true, true, true, 0, 0, 0227, false);
Kenny Root344ca102012-04-03 17:23:01 -07001142 }
1143
1144 if (result) {
San Mehat97ac40e2010-03-24 10:24:19 -07001145 SLOGE("ASEC finalize mount failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001146 return -1;
1147 }
1148
San Mehatd9a4e352010-03-12 13:32:47 -08001149 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001150 SLOGD("ASEC %s finalized", id);
San Mehatd9a4e352010-03-12 13:32:47 -08001151 }
San Mehata19b2502010-01-06 10:33:53 -08001152 return 0;
1153}
1154
Kenny Root344ca102012-04-03 17:23:01 -07001155int VolumeManager::fixupAsecPermissions(const char *id, gid_t gid, const char* filename) {
1156 char asecFileName[255];
1157 char loopDevice[255];
1158 char mountPoint[255];
1159
1160 if (gid < AID_APP) {
1161 SLOGE("Group ID is not in application range");
1162 return -1;
1163 }
1164
Nick Kralevich0de7c612014-01-27 14:58:06 -08001165 if (!isLegalAsecId(id)) {
1166 SLOGE("fixupAsecPermissions: Invalid asec id \"%s\"", id);
1167 errno = EINVAL;
1168 return -1;
1169 }
1170
Kenny Root344ca102012-04-03 17:23:01 -07001171 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1172 SLOGE("Couldn't find ASEC %s", id);
1173 return -1;
1174 }
1175
1176 char idHash[33];
1177 if (!asecHash(id, idHash, sizeof(idHash))) {
1178 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
1179 return -1;
1180 }
1181
1182 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
1183 SLOGE("Unable fix permissions during lookup on %s (%s)", id, strerror(errno));
1184 return -1;
1185 }
1186
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001187 unsigned long nr_sec = 0;
Kenny Root344ca102012-04-03 17:23:01 -07001188 struct asec_superblock sb;
1189
1190 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
1191 return -1;
1192 }
1193
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001194 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -04001195 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1196 SLOGE("Unable remount to fix permissions for %s: couldn't construct mountpoint", id);
1197 return -1;
1198 }
Kenny Root344ca102012-04-03 17:23:01 -07001199
1200 int result = 0;
1201 if ((sb.c_opts & ASEC_SB_C_OPTS_EXT4) == 0) {
1202 return 0;
1203 }
1204
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001205 int ret = android::vold::ext4::Mount(loopDevice, mountPoint,
Kenny Root344ca102012-04-03 17:23:01 -07001206 false /* read-only */,
1207 true /* remount */,
1208 false /* executable */);
1209 if (ret) {
1210 SLOGE("Unable remount to fix permissions for %s (%s)", id, strerror(errno));
1211 return -1;
1212 }
1213
1214 char *paths[] = { mountPoint, NULL };
1215
1216 FTS *fts = fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL);
1217 if (fts) {
1218 // Traverse the entire hierarchy and chown to system UID.
1219 for (FTSENT *ftsent = fts_read(fts); ftsent != NULL; ftsent = fts_read(fts)) {
1220 // We don't care about the lost+found directory.
1221 if (!strcmp(ftsent->fts_name, "lost+found")) {
1222 continue;
1223 }
1224
1225 /*
1226 * There can only be one file marked as private right now.
1227 * This should be more robust, but it satisfies the requirements
1228 * we have for right now.
1229 */
1230 const bool privateFile = !strcmp(ftsent->fts_name, filename);
1231
Jeff Sharkeyce6a9132015-04-08 21:07:21 -07001232 int fd = open(ftsent->fts_accpath, O_NOFOLLOW | O_CLOEXEC);
Kenny Root344ca102012-04-03 17:23:01 -07001233 if (fd < 0) {
1234 SLOGE("Couldn't open file %s: %s", ftsent->fts_accpath, strerror(errno));
1235 result = -1;
1236 continue;
1237 }
1238
1239 result |= fchown(fd, AID_SYSTEM, privateFile? gid : AID_SYSTEM);
1240
1241 if (ftsent->fts_info & FTS_D) {
Kenny Root1a673c82012-05-10 16:45:29 -07001242 result |= fchmod(fd, 0755);
Kenny Root348c8ab2012-05-10 15:39:53 -07001243 } else if (ftsent->fts_info & FTS_F) {
Kenny Root344ca102012-04-03 17:23:01 -07001244 result |= fchmod(fd, privateFile ? 0640 : 0644);
1245 }
Robert Craigb9e3ba52014-02-04 10:53:00 -05001246
Stephen Smalley5093e612014-02-12 09:43:08 -05001247 if (selinux_android_restorecon(ftsent->fts_path, 0) < 0) {
Robert Craigb9e3ba52014-02-04 10:53:00 -05001248 SLOGE("restorecon failed for %s: %s\n", ftsent->fts_path, strerror(errno));
1249 result |= -1;
1250 }
1251
Kenny Root344ca102012-04-03 17:23:01 -07001252 close(fd);
1253 }
1254 fts_close(fts);
1255
1256 // Finally make the directory readable by everyone.
Jeff Sharkeyce6a9132015-04-08 21:07:21 -07001257 int dirfd = open(mountPoint, O_DIRECTORY | O_CLOEXEC);
Kenny Root344ca102012-04-03 17:23:01 -07001258 if (dirfd < 0 || fchmod(dirfd, 0755)) {
1259 SLOGE("Couldn't change owner of existing directory %s: %s", mountPoint, strerror(errno));
1260 result |= -1;
1261 }
1262 close(dirfd);
1263 } else {
1264 result |= -1;
1265 }
1266
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001267 result |= android::vold::ext4::Mount(loopDevice, mountPoint,
Kenny Root344ca102012-04-03 17:23:01 -07001268 true /* read-only */,
1269 true /* remount */,
1270 true /* execute */);
1271
1272 if (result) {
1273 SLOGE("ASEC fix permissions failed (%s)", strerror(errno));
1274 return -1;
1275 }
1276
1277 if (mDebug) {
1278 SLOGD("ASEC %s permissions fixed", id);
1279 }
1280 return 0;
1281}
1282
San Mehat048b0802010-01-23 08:17:06 -08001283int VolumeManager::renameAsec(const char *id1, const char *id2) {
Kenny Root344ca102012-04-03 17:23:01 -07001284 char asecFilename1[255];
San Mehat048b0802010-01-23 08:17:06 -08001285 char *asecFilename2;
1286 char mountPoint[255];
1287
Kenny Root344ca102012-04-03 17:23:01 -07001288 const char *dir;
1289
Nick Kralevich0de7c612014-01-27 14:58:06 -08001290 if (!isLegalAsecId(id1)) {
1291 SLOGE("renameAsec: Invalid asec id1 \"%s\"", id1);
1292 errno = EINVAL;
1293 return -1;
1294 }
1295
1296 if (!isLegalAsecId(id2)) {
1297 SLOGE("renameAsec: Invalid asec id2 \"%s\"", id2);
1298 errno = EINVAL;
1299 return -1;
1300 }
1301
Kenny Root344ca102012-04-03 17:23:01 -07001302 if (findAsec(id1, asecFilename1, sizeof(asecFilename1), &dir)) {
1303 SLOGE("Couldn't find ASEC %s", id1);
1304 return -1;
1305 }
1306
1307 asprintf(&asecFilename2, "%s/%s.asec", dir, id2);
San Mehat048b0802010-01-23 08:17:06 -08001308
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001309 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id1);
rpcraigd1c226f2012-10-09 06:58:16 -04001310 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1311 SLOGE("Rename failed: couldn't construct mountpoint");
1312 goto out_err;
1313 }
1314
San Mehat048b0802010-01-23 08:17:06 -08001315 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001316 SLOGW("Rename attempt when src mounted");
San Mehat048b0802010-01-23 08:17:06 -08001317 errno = EBUSY;
1318 goto out_err;
1319 }
1320
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001321 written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id2);
rpcraigd1c226f2012-10-09 06:58:16 -04001322 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1323 SLOGE("Rename failed: couldn't construct mountpoint2");
1324 goto out_err;
1325 }
1326
San Mehat96956ed2010-02-24 08:42:51 -08001327 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001328 SLOGW("Rename attempt when dst mounted");
San Mehat96956ed2010-02-24 08:42:51 -08001329 errno = EBUSY;
1330 goto out_err;
1331 }
1332
San Mehat048b0802010-01-23 08:17:06 -08001333 if (!access(asecFilename2, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001334 SLOGE("Rename attempt when dst exists");
San Mehat048b0802010-01-23 08:17:06 -08001335 errno = EADDRINUSE;
1336 goto out_err;
1337 }
1338
1339 if (rename(asecFilename1, asecFilename2)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001340 SLOGE("Rename of '%s' to '%s' failed (%s)", asecFilename1, asecFilename2, strerror(errno));
San Mehat048b0802010-01-23 08:17:06 -08001341 goto out_err;
1342 }
1343
San Mehat048b0802010-01-23 08:17:06 -08001344 free(asecFilename2);
1345 return 0;
1346
1347out_err:
San Mehat048b0802010-01-23 08:17:06 -08001348 free(asecFilename2);
1349 return -1;
1350}
1351
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001352#define UNMOUNT_RETRIES 5
1353#define UNMOUNT_SLEEP_BETWEEN_RETRY_MS (1000 * 1000)
San Mehat4ba89482010-02-18 09:00:18 -08001354int VolumeManager::unmountAsec(const char *id, bool force) {
San Mehata19b2502010-01-06 10:33:53 -08001355 char asecFileName[255];
1356 char mountPoint[255];
1357
Nick Kralevich0de7c612014-01-27 14:58:06 -08001358 if (!isLegalAsecId(id)) {
1359 SLOGE("unmountAsec: Invalid asec id \"%s\"", id);
1360 errno = EINVAL;
1361 return -1;
1362 }
1363
Kenny Root344ca102012-04-03 17:23:01 -07001364 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1365 SLOGE("Couldn't find ASEC %s", id);
1366 return -1;
1367 }
1368
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001369 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -04001370 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1371 SLOGE("ASEC unmount failed for %s: couldn't construct mountpoint", id);
1372 return -1;
1373 }
San Mehata19b2502010-01-06 10:33:53 -08001374
San Mehatd9a4e352010-03-12 13:32:47 -08001375 char idHash[33];
1376 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001377 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -08001378 return -1;
1379 }
1380
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001381 return unmountLoopImage(id, idHash, asecFileName, mountPoint, force);
1382}
1383
Kenny Root508c0e12010-07-12 09:59:49 -07001384int VolumeManager::unmountObb(const char *fileName, bool force) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001385 char mountPoint[255];
1386
1387 char idHash[33];
1388 if (!asecHash(fileName, idHash, sizeof(idHash))) {
1389 SLOGE("Hash of '%s' failed (%s)", fileName, strerror(errno));
1390 return -1;
1391 }
1392
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001393 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::LOOPDIR, idHash);
rpcraigd1c226f2012-10-09 06:58:16 -04001394 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1395 SLOGE("OBB unmount failed for %s: couldn't construct mountpoint", fileName);
1396 return -1;
1397 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001398
1399 return unmountLoopImage(fileName, idHash, fileName, mountPoint, force);
1400}
1401
1402int VolumeManager::unmountLoopImage(const char *id, const char *idHash,
1403 const char *fileName, const char *mountPoint, bool force) {
San Mehat0586d542010-01-12 15:38:59 -08001404 if (!isMountpointMounted(mountPoint)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001405 SLOGE("Unmount request for %s when not mounted", id);
Kenny Root918e5f92010-09-30 18:00:52 -07001406 errno = ENOENT;
San Mehatb78a32c2010-01-10 13:02:12 -08001407 return -1;
1408 }
San Mehat23969932010-01-09 07:08:06 -08001409
San Mehatb78a32c2010-01-10 13:02:12 -08001410 int i, rc;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001411 for (i = 1; i <= UNMOUNT_RETRIES; i++) {
San Mehatb78a32c2010-01-10 13:02:12 -08001412 rc = umount(mountPoint);
1413 if (!rc) {
1414 break;
San Mehata19b2502010-01-06 10:33:53 -08001415 }
San Mehatb78a32c2010-01-10 13:02:12 -08001416 if (rc && (errno == EINVAL || errno == ENOENT)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001417 SLOGI("Container %s unmounted OK", id);
San Mehatb78a32c2010-01-10 13:02:12 -08001418 rc = 0;
1419 break;
San Mehata19b2502010-01-06 10:33:53 -08001420 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001421 SLOGW("%s unmount attempt %d failed (%s)",
San Mehat8c940ef2010-02-13 14:19:53 -08001422 id, i, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001423
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001424 int signal = 0; // default is to just complain
San Mehat4ba89482010-02-18 09:00:18 -08001425
1426 if (force) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001427 if (i > (UNMOUNT_RETRIES - 2))
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001428 signal = SIGKILL;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001429 else if (i > (UNMOUNT_RETRIES - 3))
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001430 signal = SIGTERM;
San Mehat4ba89482010-02-18 09:00:18 -08001431 }
San Mehat8c940ef2010-02-13 14:19:53 -08001432
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001433 Process::killProcessesWithOpenFiles(mountPoint, signal);
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001434 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
San Mehatb78a32c2010-01-10 13:02:12 -08001435 }
1436
1437 if (rc) {
San Mehat4ba89482010-02-18 09:00:18 -08001438 errno = EBUSY;
San Mehat97ac40e2010-03-24 10:24:19 -07001439 SLOGE("Failed to unmount container %s (%s)", id, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001440 return -1;
1441 }
1442
San Mehat12f4b892010-02-24 11:43:22 -08001443 int retries = 10;
1444
1445 while(retries--) {
1446 if (!rmdir(mountPoint)) {
1447 break;
1448 }
1449
San Mehat97ac40e2010-03-24 10:24:19 -07001450 SLOGW("Failed to rmdir %s (%s)", mountPoint, strerror(errno));
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001451 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
San Mehat12f4b892010-02-24 11:43:22 -08001452 }
1453
1454 if (!retries) {
San Mehat97ac40e2010-03-24 10:24:19 -07001455 SLOGE("Timed out trying to rmdir %s (%s)", mountPoint, strerror(errno));
San Mehatf5c61982010-02-03 11:04:46 -08001456 }
San Mehat88705162010-01-15 09:26:28 -08001457
Paul Lawrence60dec162014-09-02 10:52:15 -07001458 for (i=1; i <= UNMOUNT_RETRIES; i++) {
1459 if (Devmapper::destroy(idHash) && errno != ENXIO) {
1460 SLOGE("Failed to destroy devmapper instance (%s)", strerror(errno));
1461 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
1462 continue;
1463 } else {
1464 break;
1465 }
San Mehata19b2502010-01-06 10:33:53 -08001466 }
1467
1468 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -08001469 if (!Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
San Mehata19b2502010-01-06 10:33:53 -08001470 Loop::destroyByDevice(loopDevice);
San Mehatd9a4e352010-03-12 13:32:47 -08001471 } else {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001472 SLOGW("Failed to find loop device for {%s} (%s)", fileName, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001473 }
San Mehat88705162010-01-15 09:26:28 -08001474
1475 AsecIdCollection::iterator it;
1476 for (it = mActiveContainers->begin(); it != mActiveContainers->end(); ++it) {
Kenny Rootcbacf782010-09-24 15:11:48 -07001477 ContainerData* cd = *it;
1478 if (!strcmp(cd->id, id)) {
San Mehat88705162010-01-15 09:26:28 -08001479 free(*it);
1480 mActiveContainers->erase(it);
1481 break;
1482 }
1483 }
1484 if (it == mActiveContainers->end()) {
San Mehat97ac40e2010-03-24 10:24:19 -07001485 SLOGW("mActiveContainers is inconsistent!");
San Mehat88705162010-01-15 09:26:28 -08001486 }
San Mehatb78a32c2010-01-10 13:02:12 -08001487 return 0;
1488}
1489
San Mehat4ba89482010-02-18 09:00:18 -08001490int VolumeManager::destroyAsec(const char *id, bool force) {
San Mehatb78a32c2010-01-10 13:02:12 -08001491 char asecFileName[255];
1492 char mountPoint[255];
1493
Nick Kralevich0de7c612014-01-27 14:58:06 -08001494 if (!isLegalAsecId(id)) {
1495 SLOGE("destroyAsec: Invalid asec id \"%s\"", id);
1496 errno = EINVAL;
1497 return -1;
1498 }
1499
Kenny Root344ca102012-04-03 17:23:01 -07001500 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1501 SLOGE("Couldn't find ASEC %s", id);
1502 return -1;
1503 }
1504
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001505 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -04001506 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1507 SLOGE("ASEC destroy failed for %s: couldn't construct mountpoint", id);
1508 return -1;
1509 }
San Mehatb78a32c2010-01-10 13:02:12 -08001510
San Mehat0586d542010-01-12 15:38:59 -08001511 if (isMountpointMounted(mountPoint)) {
San Mehatd9a4e352010-03-12 13:32:47 -08001512 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001513 SLOGD("Unmounting container before destroy");
San Mehatd9a4e352010-03-12 13:32:47 -08001514 }
San Mehat4ba89482010-02-18 09:00:18 -08001515 if (unmountAsec(id, force)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001516 SLOGE("Failed to unmount asec %s for destroy (%s)", id, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -08001517 return -1;
1518 }
1519 }
San Mehata19b2502010-01-06 10:33:53 -08001520
San Mehat0586d542010-01-12 15:38:59 -08001521 if (unlink(asecFileName)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001522 SLOGE("Failed to unlink asec '%s' (%s)", asecFileName, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -08001523 return -1;
1524 }
San Mehata19b2502010-01-06 10:33:53 -08001525
San Mehatd9a4e352010-03-12 13:32:47 -08001526 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001527 SLOGD("ASEC %s destroyed", id);
San Mehatd9a4e352010-03-12 13:32:47 -08001528 }
San Mehata19b2502010-01-06 10:33:53 -08001529 return 0;
1530}
1531
Nick Kralevich0de7c612014-01-27 14:58:06 -08001532/*
1533 * Legal ASEC ids consist of alphanumeric characters, '-',
1534 * '_', or '.'. ".." is not allowed. The first or last character
1535 * of the ASEC id cannot be '.' (dot).
1536 */
1537bool VolumeManager::isLegalAsecId(const char *id) const {
1538 size_t i;
1539 size_t len = strlen(id);
1540
1541 if (len == 0) {
1542 return false;
1543 }
1544 if ((id[0] == '.') || (id[len - 1] == '.')) {
1545 return false;
1546 }
1547
1548 for (i = 0; i < len; i++) {
1549 if (id[i] == '.') {
1550 // i=0 is guaranteed never to have a dot. See above.
1551 if (id[i-1] == '.') return false;
1552 continue;
1553 }
1554 if (id[i] == '_' || id[i] == '-') continue;
1555 if (id[i] >= 'a' && id[i] <= 'z') continue;
1556 if (id[i] >= 'A' && id[i] <= 'Z') continue;
1557 if (id[i] >= '0' && id[i] <= '9') continue;
1558 return false;
1559 }
1560
1561 return true;
1562}
1563
Kenny Root344ca102012-04-03 17:23:01 -07001564bool VolumeManager::isAsecInDirectory(const char *dir, const char *asecName) const {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -07001565 int dirfd = open(dir, O_DIRECTORY | O_CLOEXEC);
Kenny Root344ca102012-04-03 17:23:01 -07001566 if (dirfd < 0) {
1567 SLOGE("Couldn't open internal ASEC dir (%s)", strerror(errno));
Nick Kralevich25e581a2015-02-06 08:55:08 -08001568 return false;
Kenny Root344ca102012-04-03 17:23:01 -07001569 }
1570
Nick Kralevich25e581a2015-02-06 08:55:08 -08001571 struct stat sb;
1572 bool ret = (fstatat(dirfd, asecName, &sb, AT_SYMLINK_NOFOLLOW) == 0)
1573 && S_ISREG(sb.st_mode);
Kenny Root344ca102012-04-03 17:23:01 -07001574
1575 close(dirfd);
1576
1577 return ret;
1578}
1579
1580int VolumeManager::findAsec(const char *id, char *asecPath, size_t asecPathLen,
1581 const char **directory) const {
Kenny Root344ca102012-04-03 17:23:01 -07001582 char *asecName;
1583
Nick Kralevich0de7c612014-01-27 14:58:06 -08001584 if (!isLegalAsecId(id)) {
1585 SLOGE("findAsec: Invalid asec id \"%s\"", id);
1586 errno = EINVAL;
1587 return -1;
1588 }
1589
Kenny Root344ca102012-04-03 17:23:01 -07001590 if (asprintf(&asecName, "%s.asec", id) < 0) {
1591 SLOGE("Couldn't allocate string to write ASEC name");
1592 return -1;
1593 }
1594
1595 const char *dir;
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001596 if (isAsecInDirectory(VolumeManager::SEC_ASECDIR_INT, asecName)) {
1597 dir = VolumeManager::SEC_ASECDIR_INT;
1598 } else if (isAsecInDirectory(VolumeManager::SEC_ASECDIR_EXT, asecName)) {
1599 dir = VolumeManager::SEC_ASECDIR_EXT;
Kenny Root344ca102012-04-03 17:23:01 -07001600 } else {
1601 free(asecName);
1602 return -1;
1603 }
1604
1605 if (directory != NULL) {
1606 *directory = dir;
1607 }
1608
1609 if (asecPath != NULL) {
1610 int written = snprintf(asecPath, asecPathLen, "%s/%s", dir, asecName);
rpcraigd1c226f2012-10-09 06:58:16 -04001611 if ((written < 0) || (size_t(written) >= asecPathLen)) {
1612 SLOGE("findAsec failed for %s: couldn't construct ASEC path", id);
Kenny Root344ca102012-04-03 17:23:01 -07001613 free(asecName);
1614 return -1;
1615 }
1616 }
1617
1618 free(asecName);
1619 return 0;
1620}
1621
Jeff Sharkey43ed1232014-08-22 12:29:05 -07001622int VolumeManager::mountAsec(const char *id, const char *key, int ownerUid, bool readOnly) {
San Mehata19b2502010-01-06 10:33:53 -08001623 char asecFileName[255];
1624 char mountPoint[255];
1625
Nick Kralevich0de7c612014-01-27 14:58:06 -08001626 if (!isLegalAsecId(id)) {
1627 SLOGE("mountAsec: Invalid asec id \"%s\"", id);
1628 errno = EINVAL;
1629 return -1;
1630 }
1631
Kenny Root344ca102012-04-03 17:23:01 -07001632 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1633 SLOGE("Couldn't find ASEC %s", id);
1634 return -1;
1635 }
1636
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001637 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::ASECDIR, id);
rpcraigd1c226f2012-10-09 06:58:16 -04001638 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
Colin Cross59846b62014-02-06 20:34:29 -08001639 SLOGE("ASEC mount failed for %s: couldn't construct mountpoint", id);
rpcraigd1c226f2012-10-09 06:58:16 -04001640 return -1;
1641 }
San Mehata19b2502010-01-06 10:33:53 -08001642
1643 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001644 SLOGE("ASEC %s already mounted", id);
San Mehata19b2502010-01-06 10:33:53 -08001645 errno = EBUSY;
1646 return -1;
1647 }
1648
San Mehatd9a4e352010-03-12 13:32:47 -08001649 char idHash[33];
1650 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001651 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -08001652 return -1;
1653 }
Kenny Root7b18a7b2010-03-15 13:13:41 -07001654
San Mehata19b2502010-01-06 10:33:53 -08001655 char loopDevice[255];
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001656 if (setupLoopDevice(loopDevice, sizeof(loopDevice), asecFileName, idHash, mDebug))
1657 return -1;
San Mehatb78a32c2010-01-10 13:02:12 -08001658
1659 char dmDevice[255];
1660 bool cleanupDm = false;
Tim Murray8439dc92014-12-15 11:56:11 -08001661
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001662 unsigned long nr_sec = 0;
San Mehatfcf24fe2010-03-03 12:37:32 -08001663 struct asec_superblock sb;
San Mehatfcf24fe2010-03-03 12:37:32 -08001664
Kenny Root344ca102012-04-03 17:23:01 -07001665 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
1666 return -1;
1667 }
San Mehatfcf24fe2010-03-03 12:37:32 -08001668
San Mehatd9a4e352010-03-12 13:32:47 -08001669 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001670 SLOGD("Container sb magic/ver (%.8x/%.2x)", sb.magic, sb.ver);
San Mehatd9a4e352010-03-12 13:32:47 -08001671 }
San Mehatfcf24fe2010-03-03 12:37:32 -08001672 if (sb.magic != ASEC_SB_MAGIC || sb.ver != ASEC_SB_VER) {
San Mehat97ac40e2010-03-24 10:24:19 -07001673 SLOGE("Bad container magic/version (%.8x/%.2x)", sb.magic, sb.ver);
San Mehatfcf24fe2010-03-03 12:37:32 -08001674 Loop::destroyByDevice(loopDevice);
1675 errno = EMEDIUMTYPE;
1676 return -1;
1677 }
1678 nr_sec--; // We don't want the devmapping to extend onto our superblock
1679
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001680 if (setupDevMapperDevice(dmDevice, sizeof(dmDevice), loopDevice, asecFileName, key, idHash , nr_sec, &cleanupDm, mDebug)) {
1681 Loop::destroyByDevice(loopDevice);
1682 return -1;
San Mehata19b2502010-01-06 10:33:53 -08001683 }
1684
Kenny Root344ca102012-04-03 17:23:01 -07001685 if (mkdir(mountPoint, 0000)) {
San Mehatb78a32c2010-01-10 13:02:12 -08001686 if (errno != EEXIST) {
San Mehat97ac40e2010-03-24 10:24:19 -07001687 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001688 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -08001689 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -08001690 }
1691 Loop::destroyByDevice(loopDevice);
1692 return -1;
1693 }
San Mehata19b2502010-01-06 10:33:53 -08001694 }
1695
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001696 /*
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001697 * Wait for the device mapper node to be created.
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001698 */
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001699 waitForDevMapper(dmDevice);
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001700
Kenny Root344ca102012-04-03 17:23:01 -07001701 int result;
1702 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4) {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001703 result = android::vold::ext4::Mount(dmDevice, mountPoint,
1704 readOnly, false, readOnly);
Kenny Root344ca102012-04-03 17:23:01 -07001705 } else {
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001706 result = android::vold::vfat::Mount(dmDevice, mountPoint,
1707 readOnly, false, readOnly, ownerUid, 0, 0222, false);
Kenny Root344ca102012-04-03 17:23:01 -07001708 }
1709
1710 if (result) {
San Mehat97ac40e2010-03-24 10:24:19 -07001711 SLOGE("ASEC mount failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001712 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -08001713 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -08001714 }
1715 Loop::destroyByDevice(loopDevice);
San Mehata19b2502010-01-06 10:33:53 -08001716 return -1;
1717 }
1718
Kenny Rootcbacf782010-09-24 15:11:48 -07001719 mActiveContainers->push_back(new ContainerData(strdup(id), ASEC));
San Mehatd9a4e352010-03-12 13:32:47 -08001720 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001721 SLOGD("ASEC %s mounted", id);
San Mehatd9a4e352010-03-12 13:32:47 -08001722 }
San Mehata19b2502010-01-06 10:33:53 -08001723 return 0;
1724}
1725
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001726/**
1727 * Mounts an image file <code>img</code>.
1728 */
Jeff Sharkey69479042012-09-25 16:14:57 -07001729int VolumeManager::mountObb(const char *img, const char *key, int ownerGid) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001730 char mountPoint[255];
1731
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001732 char idHash[33];
1733 if (!asecHash(img, idHash, sizeof(idHash))) {
1734 SLOGE("Hash of '%s' failed (%s)", img, strerror(errno));
1735 return -1;
1736 }
1737
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001738 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", VolumeManager::LOOPDIR, idHash);
rpcraigd1c226f2012-10-09 06:58:16 -04001739 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
Colin Cross59846b62014-02-06 20:34:29 -08001740 SLOGE("OBB mount failed for %s: couldn't construct mountpoint", img);
rpcraigd1c226f2012-10-09 06:58:16 -04001741 return -1;
1742 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001743
1744 if (isMountpointMounted(mountPoint)) {
1745 SLOGE("Image %s already mounted", img);
1746 errno = EBUSY;
1747 return -1;
1748 }
1749
1750 char loopDevice[255];
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001751 if (setupLoopDevice(loopDevice, sizeof(loopDevice), img, idHash, mDebug))
1752 return -1;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001753
1754 char dmDevice[255];
1755 bool cleanupDm = false;
1756 int fd;
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001757 unsigned long nr_sec = 0;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001758
Jeff Sharkeyce6a9132015-04-08 21:07:21 -07001759 if ((fd = open(loopDevice, O_RDWR | O_CLOEXEC)) < 0) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001760 SLOGE("Failed to open loopdevice (%s)", strerror(errno));
1761 Loop::destroyByDevice(loopDevice);
1762 return -1;
1763 }
1764
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001765 get_blkdev_size(fd, &nr_sec);
1766 if (nr_sec == 0) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001767 SLOGE("Failed to get loop size (%s)", strerror(errno));
1768 Loop::destroyByDevice(loopDevice);
1769 close(fd);
1770 return -1;
1771 }
1772
1773 close(fd);
1774
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001775 if (setupDevMapperDevice(dmDevice, sizeof(loopDevice), loopDevice, img,key, idHash, nr_sec, &cleanupDm, mDebug)) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001776 Loop::destroyByDevice(loopDevice);
1777 return -1;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001778 }
1779
1780 if (mkdir(mountPoint, 0755)) {
1781 if (errno != EEXIST) {
1782 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
1783 if (cleanupDm) {
1784 Devmapper::destroy(idHash);
1785 }
1786 Loop::destroyByDevice(loopDevice);
1787 return -1;
1788 }
1789 }
1790
yoshiyuki hama476a6272015-01-28 16:37:23 +09001791 /*
1792 * Wait for the device mapper node to be created.
1793 */
1794 waitForDevMapper(dmDevice);
1795
Jeff Sharkeyd0640f62015-05-21 22:35:42 -07001796 if (android::vold::vfat::Mount(dmDevice, mountPoint,
1797 true, false, true, 0, ownerGid, 0227, false)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001798 SLOGE("Image mount failed (%s)", strerror(errno));
1799 if (cleanupDm) {
1800 Devmapper::destroy(idHash);
1801 }
1802 Loop::destroyByDevice(loopDevice);
1803 return -1;
1804 }
1805
Kenny Rootcbacf782010-09-24 15:11:48 -07001806 mActiveContainers->push_back(new ContainerData(strdup(img), OBB));
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001807 if (mDebug) {
1808 SLOGD("Image %s mounted", img);
1809 }
1810 return 0;
1811}
1812
Kenny Root508c0e12010-07-12 09:59:49 -07001813int VolumeManager::listMountedObbs(SocketClient* cli) {
Yabin Cuid1104f72015-01-02 13:28:28 -08001814 FILE *fp = setmntent("/proc/mounts", "r");
1815 if (fp == NULL) {
Kenny Root508c0e12010-07-12 09:59:49 -07001816 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
1817 return -1;
1818 }
1819
1820 // Create a string to compare against that has a trailing slash
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001821 int loopDirLen = strlen(VolumeManager::LOOPDIR);
Kenny Root508c0e12010-07-12 09:59:49 -07001822 char loopDir[loopDirLen + 2];
Jeff Sharkey9f18fe72015-04-01 23:32:18 -07001823 strcpy(loopDir, VolumeManager::LOOPDIR);
Kenny Root508c0e12010-07-12 09:59:49 -07001824 loopDir[loopDirLen++] = '/';
1825 loopDir[loopDirLen] = '\0';
1826
Yabin Cuid1104f72015-01-02 13:28:28 -08001827 mntent* mentry;
1828 while ((mentry = getmntent(fp)) != NULL) {
1829 if (!strncmp(mentry->mnt_dir, loopDir, loopDirLen)) {
Jeff Sharkeyce6a9132015-04-08 21:07:21 -07001830 int fd = open(mentry->mnt_fsname, O_RDONLY | O_CLOEXEC);
Kenny Root508c0e12010-07-12 09:59:49 -07001831 if (fd >= 0) {
1832 struct loop_info64 li;
1833 if (ioctl(fd, LOOP_GET_STATUS64, &li) >= 0) {
1834 cli->sendMsg(ResponseCode::AsecListResult,
1835 (const char*) li.lo_file_name, false);
1836 }
1837 close(fd);
1838 }
1839 }
1840 }
Yabin Cuid1104f72015-01-02 13:28:28 -08001841 endmntent(fp);
Kenny Root508c0e12010-07-12 09:59:49 -07001842 return 0;
1843}
1844
Jeff Sharkey9c484982015-03-31 10:35:33 -07001845extern "C" int vold_unmountAll(void) {
Ken Sumrall425524d2012-06-14 20:55:28 -07001846 VolumeManager *vm = VolumeManager::Instance();
Jeff Sharkey9c484982015-03-31 10:35:33 -07001847 return vm->unmountAll();
Ken Sumrall425524d2012-06-14 20:55:28 -07001848}
1849
San Mehata19b2502010-01-06 10:33:53 -08001850bool VolumeManager::isMountpointMounted(const char *mp)
1851{
Yabin Cuid1104f72015-01-02 13:28:28 -08001852 FILE *fp = setmntent("/proc/mounts", "r");
1853 if (fp == NULL) {
San Mehat97ac40e2010-03-24 10:24:19 -07001854 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001855 return false;
1856 }
1857
Yabin Cuid1104f72015-01-02 13:28:28 -08001858 bool found_mp = false;
1859 mntent* mentry;
1860 while ((mentry = getmntent(fp)) != NULL) {
1861 if (strcmp(mentry->mnt_dir, mp) == 0) {
1862 found_mp = true;
1863 break;
San Mehata19b2502010-01-06 10:33:53 -08001864 }
San Mehata19b2502010-01-06 10:33:53 -08001865 }
Yabin Cuid1104f72015-01-02 13:28:28 -08001866 endmntent(fp);
1867 return found_mp;
San Mehata19b2502010-01-06 10:33:53 -08001868}
1869
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001870int VolumeManager::mkdirs(char* path) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001871 // Only offer to create directories for paths managed by vold
1872 if (strncmp(path, "/storage/", 9) == 0) {
1873 // fs_mkdirs() does symlink checking and relative path enforcement
1874 return fs_mkdirs(path, 0700);
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001875 } else {
Cylen Yao27cfee32014-05-02 19:23:42 +08001876 SLOGE("Failed to find mounted volume for %s", path);
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001877 return -EINVAL;
1878 }
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001879}