blob: 5296114d44d8e1b89b55db7548cffa382f512c2a [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>
Yabin Cuid1104f72015-01-02 13:28:28 -080029#include <unistd.h>
San Mehata19b2502010-01-06 10:33:53 -080030
San Mehata2677e42009-12-13 10:40:18 -080031#include <linux/kdev_t.h>
San Mehatf1b736b2009-10-10 17:22:08 -070032
33#define LOG_TAG "Vold"
34
Kenny Root7b18a7b2010-03-15 13:13:41 -070035#include <openssl/md5.h>
36
Jeff Sharkey36801cc2015-03-13 16:09:20 -070037#include <base/logging.h>
38#include <base/stringprintf.h>
Jeff Sharkey71ebe152013-09-17 17:24:38 -070039#include <cutils/fs.h>
San Mehatf1b736b2009-10-10 17:22:08 -070040#include <cutils/log.h>
41
Robert Craigb9e3ba52014-02-04 10:53:00 -050042#include <selinux/android.h>
43
San Mehatfd7f5872009-10-12 11:32:47 -070044#include <sysutils/NetlinkEvent.h>
45
Kenny Root344ca102012-04-03 17:23:01 -070046#include <private/android_filesystem_config.h>
47
Jeff Sharkey36801cc2015-03-13 16:09:20 -070048#include "EmulatedVolume.h"
San Mehatf1b736b2009-10-10 17:22:08 -070049#include "VolumeManager.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070050#include "NetlinkManager.h"
San Mehatae10b912009-10-12 14:57:05 -070051#include "DirectVolume.h"
San Mehata2677e42009-12-13 10:40:18 -080052#include "ResponseCode.h"
San Mehata19b2502010-01-06 10:33:53 -080053#include "Loop.h"
Kenny Root344ca102012-04-03 17:23:01 -070054#include "Ext4.h"
San Mehata19b2502010-01-06 10:33:53 -080055#include "Fat.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070056#include "Utils.h"
San Mehatb78a32c2010-01-10 13:02:12 -080057#include "Devmapper.h"
San Mehat586536c2010-02-16 17:12:00 -080058#include "Process.h"
San Mehatfcf24fe2010-03-03 12:37:32 -080059#include "Asec.h"
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +090060#include "VoldUtil.h"
Ken Sumrall29d8da82011-05-18 17:20:07 -070061#include "cryptfs.h"
San Mehat23969932010-01-09 07:08:06 -080062
Jeff Sharkey36801cc2015-03-13 16:09:20 -070063#define DEBUG_NETLINK 0
64
Mike Lockwood97f2fc12011-06-07 10:51:38 -070065#define MASS_STORAGE_FILE_PATH "/sys/class/android_usb/android0/f_mass_storage/lun/file"
66
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -070067#define ROUND_UP_POWER_OF_2(number, po2) (((!!(number & ((1U << po2) - 1))) << po2)\
68 + (number & (~((1U << po2) - 1))))
69
Jeff Sharkey36801cc2015-03-13 16:09:20 -070070using android::base::StringPrintf;
71
72static const char* kUserMountPath = "/mnt/user";
73
74static const unsigned int kMajorBlockScsi = 8;
75static const unsigned int kMajorBlockMmc = 179;
76
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -070077/* writes superblock at end of file or device given by name */
78static int writeSuperBlock(const char* name, struct asec_superblock *sb, unsigned int numImgSectors) {
79 int sbfd = open(name, O_RDWR);
80 if (sbfd < 0) {
81 SLOGE("Failed to open %s for superblock write (%s)", name, strerror(errno));
82 return -1;
83 }
84
85 if (lseek(sbfd, (numImgSectors * 512), SEEK_SET) < 0) {
86 SLOGE("Failed to lseek for superblock (%s)", strerror(errno));
87 close(sbfd);
88 return -1;
89 }
90
91 if (write(sbfd, sb, sizeof(struct asec_superblock)) != sizeof(struct asec_superblock)) {
92 SLOGE("Failed to write superblock (%s)", strerror(errno));
93 close(sbfd);
94 return -1;
95 }
96 close(sbfd);
97 return 0;
98}
99
100static int adjustSectorNumExt4(unsigned numSectors) {
Daniel Rosenberge9196fe2014-06-10 17:16:03 -0700101 // Ext4 started to reserve 2% or 4096 clusters, whichever is smaller for
102 // preventing costly operations or unexpected ENOSPC error.
103 // Ext4::format() uses default block size without clustering.
104 unsigned clusterSectors = 4096 / 512;
105 unsigned reservedSectors = (numSectors * 2)/100 + (numSectors % 50 > 0);
106 numSectors += reservedSectors > (4096 * clusterSectors) ? (4096 * clusterSectors) : reservedSectors;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700107 return ROUND_UP_POWER_OF_2(numSectors, 3);
108}
109
110static int adjustSectorNumFAT(unsigned numSectors) {
111 /*
112 * Add some headroom
113 */
114 unsigned fatSize = (((numSectors * 4) / 512) + 1) * 2;
115 numSectors += fatSize + 2;
116 /*
117 * FAT is aligned to 32 kb with 512b sectors.
118 */
119 return ROUND_UP_POWER_OF_2(numSectors, 6);
120}
121
122static int setupLoopDevice(char* buffer, size_t len, const char* asecFileName, const char* idHash, bool debug) {
123 if (Loop::lookupActive(idHash, buffer, len)) {
124 if (Loop::create(idHash, asecFileName, buffer, len)) {
125 SLOGE("ASEC loop device creation failed for %s (%s)", asecFileName, strerror(errno));
126 return -1;
127 }
128 if (debug) {
129 SLOGD("New loop device created at %s", buffer);
130 }
131 } else {
132 if (debug) {
133 SLOGD("Found active loopback for %s at %s", asecFileName, buffer);
134 }
135 }
136 return 0;
137}
138
139static int setupDevMapperDevice(char* buffer, size_t len, const char* loopDevice, const char* asecFileName, const char* key, const char* idHash , int numImgSectors, bool* createdDMDevice, bool debug) {
140 if (strcmp(key, "none")) {
141 if (Devmapper::lookupActive(idHash, buffer, len)) {
142 if (Devmapper::create(idHash, loopDevice, key, numImgSectors,
143 buffer, len)) {
144 SLOGE("ASEC device mapping failed for %s (%s)", asecFileName, strerror(errno));
145 return -1;
146 }
147 if (debug) {
148 SLOGD("New devmapper instance created at %s", buffer);
149 }
150 } else {
151 if (debug) {
152 SLOGD("Found active devmapper for %s at %s", asecFileName, buffer);
153 }
154 }
155 *createdDMDevice = true;
156 } else {
157 strcpy(buffer, loopDevice);
158 *createdDMDevice = false;
159 }
160 return 0;
161}
162
163static void waitForDevMapper(const char *dmDevice) {
164 /*
165 * Wait for the device mapper node to be created. Sometimes it takes a
166 * while. Wait for up to 1 second. We could also inspect incoming uevents,
167 * but that would take more effort.
168 */
169 int tries = 25;
170 while (tries--) {
171 if (!access(dmDevice, F_OK) || errno != ENOENT) {
172 break;
173 }
174 usleep(40 * 1000);
175 }
176}
177
San Mehatf1b736b2009-10-10 17:22:08 -0700178VolumeManager *VolumeManager::sInstance = NULL;
179
180VolumeManager *VolumeManager::Instance() {
181 if (!sInstance)
182 sInstance = new VolumeManager();
183 return sInstance;
184}
185
186VolumeManager::VolumeManager() {
San Mehatd9a4e352010-03-12 13:32:47 -0800187 mDebug = false;
San Mehatf1b736b2009-10-10 17:22:08 -0700188 mVolumes = new VolumeCollection();
San Mehat88705162010-01-15 09:26:28 -0800189 mActiveContainers = new AsecIdCollection();
San Mehatf1b736b2009-10-10 17:22:08 -0700190 mBroadcaster = NULL;
Mike Lockwooda28056b2010-10-28 15:21:24 -0400191 mUmsSharingCount = 0;
192 mSavedDirtyRatio = -1;
193 // set dirty ratio to 0 when UMS is active
194 mUmsDirtyRatio = 0;
Ken Sumrall3b170052011-07-11 15:38:57 -0700195 mVolManagerDisabled = 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700196}
197
198VolumeManager::~VolumeManager() {
San Mehat88705162010-01-15 09:26:28 -0800199 delete mVolumes;
200 delete mActiveContainers;
San Mehatf1b736b2009-10-10 17:22:08 -0700201}
202
Kenny Root7b18a7b2010-03-15 13:13:41 -0700203char *VolumeManager::asecHash(const char *id, char *buffer, size_t len) {
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700204 static const char* digits = "0123456789abcdef";
205
Kenny Root7b18a7b2010-03-15 13:13:41 -0700206 unsigned char sig[MD5_DIGEST_LENGTH];
207
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700208 if (buffer == NULL) {
209 SLOGE("Destination buffer is NULL");
210 errno = ESPIPE;
211 return NULL;
212 } else if (id == NULL) {
213 SLOGE("Source buffer is NULL");
214 errno = ESPIPE;
215 return NULL;
216 } else if (len < MD5_ASCII_LENGTH_PLUS_NULL) {
Colin Cross59846b62014-02-06 20:34:29 -0800217 SLOGE("Target hash buffer size < %d bytes (%zu)",
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700218 MD5_ASCII_LENGTH_PLUS_NULL, len);
San Mehatd9a4e352010-03-12 13:32:47 -0800219 errno = ESPIPE;
220 return NULL;
221 }
Kenny Root7b18a7b2010-03-15 13:13:41 -0700222
223 MD5(reinterpret_cast<const unsigned char*>(id), strlen(id), sig);
San Mehatd9a4e352010-03-12 13:32:47 -0800224
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700225 char *p = buffer;
Kenny Root7b18a7b2010-03-15 13:13:41 -0700226 for (int i = 0; i < MD5_DIGEST_LENGTH; i++) {
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700227 *p++ = digits[sig[i] >> 4];
228 *p++ = digits[sig[i] & 0x0F];
San Mehatd9a4e352010-03-12 13:32:47 -0800229 }
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700230 *p = '\0';
San Mehatd9a4e352010-03-12 13:32:47 -0800231
232 return buffer;
233}
234
235void VolumeManager::setDebug(bool enable) {
236 mDebug = enable;
237 VolumeCollection::iterator it;
238 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
239 (*it)->setDebug(enable);
240 }
241}
242
San Mehatf1b736b2009-10-10 17:22:08 -0700243int VolumeManager::start() {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700244 // Always start from a clean slate by unmounting everything in
245 // directories that we own, in case we crashed.
Jeff Sharkey9c484982015-03-31 10:35:33 -0700246 unmountAll();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700247
248 // Assume that we always have an emulated volume on internal
249 // storage; the framework will decide if it should be mounted.
250 mInternalEmulated = std::shared_ptr<android::vold::VolumeBase>(
251 new android::vold::EmulatedVolume("/data/media", ""));
252 mInternalEmulated->create();
253
San Mehatf1b736b2009-10-10 17:22:08 -0700254 return 0;
255}
256
257int VolumeManager::stop() {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700258 mInternalEmulated->destroy();
259 mInternalEmulated = nullptr;
San Mehatf1b736b2009-10-10 17:22:08 -0700260 return 0;
261}
262
263int VolumeManager::addVolume(Volume *v) {
264 mVolumes->push_back(v);
265 return 0;
266}
267
San Mehatfd7f5872009-10-12 11:32:47 -0700268void VolumeManager::handleBlockEvent(NetlinkEvent *evt) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700269#if DEBUG_NETLINK
270 LOG(VERBOSE) << "handleBlockEvent with action " << (int) evt->getAction();
271 evt->dump();
Tim Murray8439dc92014-12-15 11:56:11 -0800272#endif
San Mehatf1b736b2009-10-10 17:22:08 -0700273
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700274 std::string eventPath(evt->findParam("DEVPATH"));
275 std::string devType(evt->findParam("DEVTYPE"));
276
277 if (devType != "disk") return;
278
279 int major = atoi(evt->findParam("MAJOR"));
280 int minor = atoi(evt->findParam("MINOR"));
281 dev_t device = makedev(major, minor);
282
283 switch (evt->getAction()) {
284 case NetlinkEvent::Action::kAdd: {
285 for (auto source : mDiskSources) {
286 if (source->matches(eventPath)) {
287 // For now, assume that MMC devices are SD, and that
288 // everything else is USB
289 int flags = source->getFlags();
290 if (major == kMajorBlockMmc) {
291 flags |= android::vold::Disk::Flags::kSd;
292 } else {
293 flags |= android::vold::Disk::Flags::kUsb;
294 }
295
296 auto disk = new android::vold::Disk(eventPath, device,
297 source->getNickname(), flags);
298 disk->create();
299 mDisks.push_back(std::shared_ptr<android::vold::Disk>(disk));
300 break;
301 }
302 }
303 break;
304 }
305 case NetlinkEvent::Action::kChange: {
306 for (auto disk : mDisks) {
307 if (disk->getDevice() == device) {
308 disk->readMetadata();
309 disk->readPartitions();
310 }
311 }
312 break;
313 }
314 case NetlinkEvent::Action::kRemove: {
315 auto i = mDisks.begin();
316 while (i != mDisks.end()) {
317 if ((*i)->getDevice() == device) {
318 (*i)->destroy();
319 i = mDisks.erase(i);
320 } else {
321 ++i;
322 }
323 }
324 break;
325 }
326 default: {
327 LOG(WARNING) << "Unexpected block event action " << (int) evt->getAction();
328 break;
329 }
330 }
331}
332
333void VolumeManager::addDiskSource(const std::shared_ptr<DiskSource>& diskSource) {
334 mDiskSources.push_back(diskSource);
335}
336
337std::shared_ptr<android::vold::Disk> VolumeManager::findDisk(const std::string& id) {
338 for (auto disk : mDisks) {
339 if (disk->getId() == id) {
340 return disk;
San Mehatf1b736b2009-10-10 17:22:08 -0700341 }
342 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700343 return nullptr;
344}
San Mehatf1b736b2009-10-10 17:22:08 -0700345
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700346std::shared_ptr<android::vold::VolumeBase> VolumeManager::findVolume(const std::string& id) {
347 if (mInternalEmulated->getId() == id) {
348 return mInternalEmulated;
San Mehatf1b736b2009-10-10 17:22:08 -0700349 }
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700350 for (auto disk : mDisks) {
351 auto vol = disk->findVolume(id);
352 if (vol != nullptr) {
353 return vol;
354 }
355 }
356 return nullptr;
357}
358
359int VolumeManager::linkPrimary(userid_t userId) {
360 std::string source(mPrimary->getPath());
361 if (mPrimary->getType() == android::vold::VolumeBase::Type::kEmulated) {
362 source = StringPrintf("%s/%d", source.c_str(), userId);
363 }
364
365 std::string target(StringPrintf("/mnt/user/%d/primary", userId));
366 if (TEMP_FAILURE_RETRY(unlink(target.c_str()))) {
367 if (errno != ENOENT) {
368 SLOGW("Failed to unlink %s: %s", target.c_str(), strerror(errno));
369 }
370 }
371 if (TEMP_FAILURE_RETRY(symlink(source.c_str(), target.c_str()))) {
372 SLOGW("Failed to link %s to %s: %s", source.c_str(), target.c_str(),
373 strerror(errno));
374 return -errno;
375 }
376 return 0;
377}
378
379int VolumeManager::startUser(userid_t userId) {
380 // Note that sometimes the system will spin up processes from Zygote
381 // before actually starting the user, so we're okay if Zygote
382 // already created this directory.
383 std::string path(StringPrintf("%s/%d", kUserMountPath, userId));
384 fs_prepare_dir(path.c_str(), 0755, AID_ROOT, AID_ROOT);
385
386 mUsers.push_back(userId);
387 if (mPrimary) {
388 linkPrimary(userId);
389 }
390 return 0;
391}
392
393int VolumeManager::cleanupUser(userid_t userId) {
394 mUsers.remove(userId);
395 return 0;
396}
397
398int VolumeManager::setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol) {
399 mPrimary = vol;
400 for (userid_t userId : mUsers) {
401 linkPrimary(userId);
402 }
403 return 0;
404}
405
406int VolumeManager::reset() {
407 // Tear down all existing disks/volumes and start from a blank slate so
408 // newly connected framework hears all events.
409 mInternalEmulated->destroy();
410 mInternalEmulated->create();
411 for (auto disk : mDisks) {
412 disk->destroy();
413 disk->create();
414 }
415 mUsers.clear();
416 return 0;
417}
418
419int VolumeManager::shutdown() {
Jeff Sharkey9c484982015-03-31 10:35:33 -0700420 mInternalEmulated->destroy();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700421 for (auto disk : mDisks) {
422 disk->destroy();
423 }
424 mDisks.clear();
425 return 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700426}
427
Jeff Sharkey9c484982015-03-31 10:35:33 -0700428int VolumeManager::unmountAll() {
429 // First, try gracefully unmounting all known devices
430 if (mInternalEmulated != nullptr) {
431 mInternalEmulated->unmount();
432 }
433 for (auto disk : mDisks) {
434 disk->unmountAll();
435 }
436
437 // Worst case we might have some stale mounts lurking around, so
438 // force unmount those just to be safe.
439 FILE* fp = setmntent("/proc/mounts", "r");
440 if (fp == NULL) {
441 SLOGE("Error opening /proc/mounts: %s", strerror(errno));
442 return -errno;
443 }
444
445 // Some volumes can be stacked on each other, so force unmount in
446 // reverse order to give us the best chance of success.
447 std::list<std::string> toUnmount;
448 mntent* mentry;
449 while ((mentry = getmntent(fp)) != NULL) {
450 if (strncmp(mentry->mnt_dir, "/mnt/", 5) == 0
451 || strncmp(mentry->mnt_dir, "/storage/", 9) == 0) {
452 toUnmount.push_front(std::string(mentry->mnt_dir));
453 }
454 }
455 endmntent(fp);
456
457 for (auto path : toUnmount) {
458 SLOGW("Tearing down stale mount %s", path.c_str());
459 android::vold::ForceUnmount(path);
460 }
461
462 return 0;
463}
464
JP Abgrall40b64a62014-07-24 18:02:16 -0700465int VolumeManager::listVolumes(SocketClient *cli, bool broadcast) {
San Mehatf1b736b2009-10-10 17:22:08 -0700466 VolumeCollection::iterator i;
JP Abgrall40b64a62014-07-24 18:02:16 -0700467 char msg[256];
San Mehatf1b736b2009-10-10 17:22:08 -0700468
469 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
470 char *buffer;
471 asprintf(&buffer, "%s %s %d",
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -0700472 (*i)->getLabel(), (*i)->getFuseMountpoint(),
San Mehatf1b736b2009-10-10 17:22:08 -0700473 (*i)->getState());
San Mehata2677e42009-12-13 10:40:18 -0800474 cli->sendMsg(ResponseCode::VolumeListResult, buffer, false);
San Mehatf1b736b2009-10-10 17:22:08 -0700475 free(buffer);
JP Abgrall40b64a62014-07-24 18:02:16 -0700476 if (broadcast) {
477 if((*i)->getUuid()) {
478 snprintf(msg, sizeof(msg), "%s %s \"%s\"", (*i)->getLabel(),
479 (*i)->getFuseMountpoint(), (*i)->getUuid());
480 mBroadcaster->sendBroadcast(ResponseCode::VolumeUuidChange,
481 msg, false);
482 }
483 if((*i)->getUserLabel()) {
484 snprintf(msg, sizeof(msg), "%s %s \"%s\"", (*i)->getLabel(),
485 (*i)->getFuseMountpoint(), (*i)->getUserLabel());
486 mBroadcaster->sendBroadcast(ResponseCode::VolumeUserLabelChange,
487 msg, false);
488 }
489 }
San Mehatf1b736b2009-10-10 17:22:08 -0700490 }
San Mehata2677e42009-12-13 10:40:18 -0800491 cli->sendMsg(ResponseCode::CommandOkay, "Volumes listed.", false);
San Mehatf1b736b2009-10-10 17:22:08 -0700492 return 0;
493}
San Mehat49e2bce2009-10-12 16:29:01 -0700494
Ken Sumrall9caab762013-06-11 19:10:20 -0700495int VolumeManager::formatVolume(const char *label, bool wipe) {
San Mehata2677e42009-12-13 10:40:18 -0800496 Volume *v = lookupVolume(label);
497
498 if (!v) {
499 errno = ENOENT;
500 return -1;
501 }
502
Ken Sumrall3b170052011-07-11 15:38:57 -0700503 if (mVolManagerDisabled) {
504 errno = EBUSY;
505 return -1;
506 }
507
Ken Sumrall9caab762013-06-11 19:10:20 -0700508 return v->formatVol(wipe);
San Mehata2677e42009-12-13 10:40:18 -0800509}
510
Kenny Root508c0e12010-07-12 09:59:49 -0700511int VolumeManager::getObbMountPath(const char *sourceFile, char *mountPath, int mountPathLen) {
512 char idHash[33];
513 if (!asecHash(sourceFile, idHash, sizeof(idHash))) {
514 SLOGE("Hash of '%s' failed (%s)", sourceFile, strerror(errno));
515 return -1;
516 }
517
518 memset(mountPath, 0, mountPathLen);
rpcraigd1c226f2012-10-09 06:58:16 -0400519 int written = snprintf(mountPath, mountPathLen, "%s/%s", Volume::LOOPDIR, idHash);
520 if ((written < 0) || (written >= mountPathLen)) {
521 errno = EINVAL;
522 return -1;
523 }
Kenny Root508c0e12010-07-12 09:59:49 -0700524
525 if (access(mountPath, F_OK)) {
526 errno = ENOENT;
527 return -1;
528 }
529
530 return 0;
531}
532
San Mehata19b2502010-01-06 10:33:53 -0800533int VolumeManager::getAsecMountPath(const char *id, char *buffer, int maxlen) {
San Mehat88ac2c02010-03-23 11:15:58 -0700534 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700535
Nick Kralevich0de7c612014-01-27 14:58:06 -0800536 if (!isLegalAsecId(id)) {
537 SLOGE("getAsecMountPath: Invalid asec id \"%s\"", id);
538 errno = EINVAL;
539 return -1;
540 }
541
Kenny Root344ca102012-04-03 17:23:01 -0700542 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
543 SLOGE("Couldn't find ASEC %s", id);
544 return -1;
545 }
San Mehat88ac2c02010-03-23 11:15:58 -0700546
547 memset(buffer, 0, maxlen);
548 if (access(asecFileName, F_OK)) {
549 errno = ENOENT;
550 return -1;
551 }
San Mehata19b2502010-01-06 10:33:53 -0800552
rpcraigd1c226f2012-10-09 06:58:16 -0400553 int written = snprintf(buffer, maxlen, "%s/%s", Volume::ASECDIR, id);
554 if ((written < 0) || (written >= maxlen)) {
555 SLOGE("getAsecMountPath failed for %s: couldn't construct path in buffer", id);
556 errno = EINVAL;
557 return -1;
558 }
559
San Mehata19b2502010-01-06 10:33:53 -0800560 return 0;
561}
562
Dianne Hackborn736910c2011-06-27 13:37:07 -0700563int VolumeManager::getAsecFilesystemPath(const char *id, char *buffer, int maxlen) {
564 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700565
Nick Kralevich0de7c612014-01-27 14:58:06 -0800566 if (!isLegalAsecId(id)) {
567 SLOGE("getAsecFilesystemPath: Invalid asec id \"%s\"", id);
568 errno = EINVAL;
569 return -1;
570 }
571
Kenny Root344ca102012-04-03 17:23:01 -0700572 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
573 SLOGE("Couldn't find ASEC %s", id);
574 return -1;
575 }
Dianne Hackborn736910c2011-06-27 13:37:07 -0700576
577 memset(buffer, 0, maxlen);
578 if (access(asecFileName, F_OK)) {
579 errno = ENOENT;
580 return -1;
581 }
582
rpcraigd1c226f2012-10-09 06:58:16 -0400583 int written = snprintf(buffer, maxlen, "%s", asecFileName);
584 if ((written < 0) || (written >= maxlen)) {
585 errno = EINVAL;
586 return -1;
587 }
588
Dianne Hackborn736910c2011-06-27 13:37:07 -0700589 return 0;
590}
591
Kenny Root344ca102012-04-03 17:23:01 -0700592int VolumeManager::createAsec(const char *id, unsigned int numSectors, const char *fstype,
593 const char *key, const int ownerUid, bool isExternal) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800594 struct asec_superblock sb;
595 memset(&sb, 0, sizeof(sb));
596
Nick Kralevich0de7c612014-01-27 14:58:06 -0800597 if (!isLegalAsecId(id)) {
598 SLOGE("createAsec: Invalid asec id \"%s\"", id);
599 errno = EINVAL;
600 return -1;
601 }
602
Kenny Root344ca102012-04-03 17:23:01 -0700603 const bool wantFilesystem = strcmp(fstype, "none");
604 bool usingExt4 = false;
605 if (wantFilesystem) {
606 usingExt4 = !strcmp(fstype, "ext4");
607 if (usingExt4) {
608 sb.c_opts |= ASEC_SB_C_OPTS_EXT4;
609 } else if (strcmp(fstype, "fat")) {
610 SLOGE("Invalid filesystem type %s", fstype);
611 errno = EINVAL;
612 return -1;
613 }
614 }
615
San Mehatfcf24fe2010-03-03 12:37:32 -0800616 sb.magic = ASEC_SB_MAGIC;
617 sb.ver = ASEC_SB_VER;
San Mehata19b2502010-01-06 10:33:53 -0800618
San Mehatd31e3802010-02-18 08:37:45 -0800619 if (numSectors < ((1024*1024)/512)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700620 SLOGE("Invalid container size specified (%d sectors)", numSectors);
San Mehatd31e3802010-02-18 08:37:45 -0800621 errno = EINVAL;
622 return -1;
623 }
624
San Mehata19b2502010-01-06 10:33:53 -0800625 if (lookupVolume(id)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700626 SLOGE("ASEC id '%s' currently exists", id);
San Mehata19b2502010-01-06 10:33:53 -0800627 errno = EADDRINUSE;
628 return -1;
629 }
630
631 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700632
633 if (!findAsec(id, asecFileName, sizeof(asecFileName))) {
634 SLOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
635 asecFileName, strerror(errno));
636 errno = EADDRINUSE;
637 return -1;
638 }
639
640 const char *asecDir = isExternal ? Volume::SEC_ASECDIR_EXT : Volume::SEC_ASECDIR_INT;
641
rpcraigd1c226f2012-10-09 06:58:16 -0400642 int written = snprintf(asecFileName, sizeof(asecFileName), "%s/%s.asec", asecDir, id);
643 if ((written < 0) || (size_t(written) >= sizeof(asecFileName))) {
644 errno = EINVAL;
645 return -1;
646 }
San Mehata19b2502010-01-06 10:33:53 -0800647
648 if (!access(asecFileName, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700649 SLOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
Kenny Root344ca102012-04-03 17:23:01 -0700650 asecFileName, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800651 errno = EADDRINUSE;
652 return -1;
653 }
654
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700655 unsigned numImgSectors;
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -0700656 if (usingExt4)
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700657 numImgSectors = adjustSectorNumExt4(numSectors);
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -0700658 else
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700659 numImgSectors = adjustSectorNumFAT(numSectors);
San Mehatfcf24fe2010-03-03 12:37:32 -0800660
661 // Add +1 for our superblock which is at the end
662 if (Loop::createImageFile(asecFileName, numImgSectors + 1)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700663 SLOGE("ASEC image file creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800664 return -1;
665 }
666
San Mehatd9a4e352010-03-12 13:32:47 -0800667 char idHash[33];
668 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700669 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -0800670 unlink(asecFileName);
671 return -1;
672 }
673
San Mehata19b2502010-01-06 10:33:53 -0800674 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -0800675 if (Loop::create(idHash, asecFileName, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700676 SLOGE("ASEC loop device creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800677 unlink(asecFileName);
678 return -1;
679 }
680
San Mehatb78a32c2010-01-10 13:02:12 -0800681 char dmDevice[255];
682 bool cleanupDm = false;
San Mehata19b2502010-01-06 10:33:53 -0800683
San Mehatb78a32c2010-01-10 13:02:12 -0800684 if (strcmp(key, "none")) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800685 // XXX: This is all we support for now
686 sb.c_cipher = ASEC_SB_C_CIPHER_TWOFISH;
San Mehatd9a4e352010-03-12 13:32:47 -0800687 if (Devmapper::create(idHash, loopDevice, key, numImgSectors, dmDevice,
San Mehatb78a32c2010-01-10 13:02:12 -0800688 sizeof(dmDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700689 SLOGE("ASEC device mapping failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800690 Loop::destroyByDevice(loopDevice);
691 unlink(asecFileName);
692 return -1;
693 }
694 cleanupDm = true;
695 } else {
San Mehatfcf24fe2010-03-03 12:37:32 -0800696 sb.c_cipher = ASEC_SB_C_CIPHER_NONE;
San Mehatb78a32c2010-01-10 13:02:12 -0800697 strcpy(dmDevice, loopDevice);
698 }
699
San Mehatfcf24fe2010-03-03 12:37:32 -0800700 /*
701 * Drop down the superblock at the end of the file
702 */
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700703 if (writeSuperBlock(loopDevice, &sb, numImgSectors)) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800704 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800705 Devmapper::destroy(idHash);
San Mehatfcf24fe2010-03-03 12:37:32 -0800706 }
707 Loop::destroyByDevice(loopDevice);
708 unlink(asecFileName);
709 return -1;
710 }
711
Kenny Root344ca102012-04-03 17:23:01 -0700712 if (wantFilesystem) {
713 int formatStatus;
rpcraiga54e13a2012-09-21 14:17:08 -0400714 char mountPoint[255];
715
rpcraigd1c226f2012-10-09 06:58:16 -0400716 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
717 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
718 SLOGE("ASEC fs format failed: couldn't construct mountPoint");
719 if (cleanupDm) {
720 Devmapper::destroy(idHash);
721 }
722 Loop::destroyByDevice(loopDevice);
723 unlink(asecFileName);
724 return -1;
725 }
rpcraiga54e13a2012-09-21 14:17:08 -0400726
Kenny Root344ca102012-04-03 17:23:01 -0700727 if (usingExt4) {
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -0700728 formatStatus = Ext4::format(dmDevice, numImgSectors, mountPoint);
Kenny Root344ca102012-04-03 17:23:01 -0700729 } else {
Ken Sumrall9caab762013-06-11 19:10:20 -0700730 formatStatus = Fat::format(dmDevice, numImgSectors, 0);
San Mehatb78a32c2010-01-10 13:02:12 -0800731 }
San Mehata19b2502010-01-06 10:33:53 -0800732
Kenny Root344ca102012-04-03 17:23:01 -0700733 if (formatStatus < 0) {
734 SLOGE("ASEC fs format failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800735 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800736 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -0800737 }
San Mehateb13a902010-01-07 12:12:50 -0800738 Loop::destroyByDevice(loopDevice);
739 unlink(asecFileName);
740 return -1;
741 }
Kenny Root344ca102012-04-03 17:23:01 -0700742
Kenny Root344ca102012-04-03 17:23:01 -0700743 if (mkdir(mountPoint, 0000)) {
San Mehata1091cb2010-02-28 20:17:20 -0800744 if (errno != EEXIST) {
San Mehat97ac40e2010-03-24 10:24:19 -0700745 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehata1091cb2010-02-28 20:17:20 -0800746 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800747 Devmapper::destroy(idHash);
San Mehata1091cb2010-02-28 20:17:20 -0800748 }
749 Loop::destroyByDevice(loopDevice);
750 unlink(asecFileName);
751 return -1;
752 }
San Mehatb78a32c2010-01-10 13:02:12 -0800753 }
San Mehata1091cb2010-02-28 20:17:20 -0800754
Kenny Root344ca102012-04-03 17:23:01 -0700755 int mountStatus;
756 if (usingExt4) {
757 mountStatus = Ext4::doMount(dmDevice, mountPoint, false, false, false);
758 } else {
759 mountStatus = Fat::doMount(dmDevice, mountPoint, false, false, false, ownerUid, 0, 0000,
760 false);
761 }
762
763 if (mountStatus) {
San Mehat97ac40e2010-03-24 10:24:19 -0700764 SLOGE("ASEC FAT mount failed (%s)", strerror(errno));
San Mehata1091cb2010-02-28 20:17:20 -0800765 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800766 Devmapper::destroy(idHash);
San Mehata1091cb2010-02-28 20:17:20 -0800767 }
768 Loop::destroyByDevice(loopDevice);
769 unlink(asecFileName);
770 return -1;
771 }
Kenny Root344ca102012-04-03 17:23:01 -0700772
773 if (usingExt4) {
774 int dirfd = open(mountPoint, O_DIRECTORY);
775 if (dirfd >= 0) {
776 if (fchown(dirfd, ownerUid, AID_SYSTEM)
777 || fchmod(dirfd, S_IRUSR | S_IWUSR | S_IXUSR | S_ISGID | S_IRGRP | S_IXGRP)) {
778 SLOGI("Cannot chown/chmod new ASEC mount point %s", mountPoint);
779 }
780 close(dirfd);
781 }
782 }
San Mehata1091cb2010-02-28 20:17:20 -0800783 } else {
San Mehat97ac40e2010-03-24 10:24:19 -0700784 SLOGI("Created raw secure container %s (no filesystem)", id);
San Mehata19b2502010-01-06 10:33:53 -0800785 }
San Mehat88705162010-01-15 09:26:28 -0800786
Kenny Rootcbacf782010-09-24 15:11:48 -0700787 mActiveContainers->push_back(new ContainerData(strdup(id), ASEC));
San Mehata19b2502010-01-06 10:33:53 -0800788 return 0;
789}
790
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700791int VolumeManager::resizeAsec(const char *id, unsigned numSectors, const char *key) {
792 char asecFileName[255];
793 char mountPoint[255];
794 bool cleanupDm = false;
795
796 if (!isLegalAsecId(id)) {
797 SLOGE("resizeAsec: Invalid asec id \"%s\"", id);
798 errno = EINVAL;
799 return -1;
800 }
801
802 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
803 SLOGE("Couldn't find ASEC %s", id);
804 return -1;
805 }
806
807 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
808 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
809 SLOGE("ASEC resize failed for %s: couldn't construct mountpoint", id);
810 return -1;
811 }
812
813 if (isMountpointMounted(mountPoint)) {
814 SLOGE("ASEC %s mounted. Unmount before resizing", id);
815 errno = EBUSY;
816 return -1;
817 }
818
819 struct asec_superblock sb;
820 int fd;
821 unsigned int oldNumSec = 0;
822
823 if ((fd = open(asecFileName, O_RDONLY)) < 0) {
824 SLOGE("Failed to open ASEC file (%s)", strerror(errno));
825 return -1;
826 }
827
828 struct stat info;
829 if (fstat(fd, &info) < 0) {
830 SLOGE("Failed to get file size (%s)", strerror(errno));
831 close(fd);
832 return -1;
833 }
834
835 oldNumSec = info.st_size / 512;
836
837 unsigned numImgSectors;
838 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4)
839 numImgSectors = adjustSectorNumExt4(numSectors);
840 else
841 numImgSectors = adjustSectorNumFAT(numSectors);
842 /*
843 * add one block for the superblock
844 */
845 SLOGD("Resizing from %d sectors to %d sectors", oldNumSec, numImgSectors + 1);
Jeff Sharkey43ed1232014-08-22 12:29:05 -0700846 if (oldNumSec == numImgSectors + 1) {
847 SLOGW("Size unchanged; ignoring resize request");
848 return 0;
849 } else if (oldNumSec > numImgSectors + 1) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700850 SLOGE("Only growing is currently supported.");
851 close(fd);
852 return -1;
853 }
854
855 /*
856 * Try to read superblock.
857 */
858 memset(&sb, 0, sizeof(struct asec_superblock));
859 if (lseek(fd, ((oldNumSec - 1) * 512), SEEK_SET) < 0) {
860 SLOGE("lseek failed (%s)", strerror(errno));
861 close(fd);
862 return -1;
863 }
864 if (read(fd, &sb, sizeof(struct asec_superblock)) != sizeof(struct asec_superblock)) {
865 SLOGE("superblock read failed (%s)", strerror(errno));
866 close(fd);
867 return -1;
868 }
869 close(fd);
870
871 if (mDebug) {
872 SLOGD("Container sb magic/ver (%.8x/%.2x)", sb.magic, sb.ver);
873 }
874 if (sb.magic != ASEC_SB_MAGIC || sb.ver != ASEC_SB_VER) {
875 SLOGE("Bad container magic/version (%.8x/%.2x)", sb.magic, sb.ver);
876 errno = EMEDIUMTYPE;
877 return -1;
878 }
879
880 if (!(sb.c_opts & ASEC_SB_C_OPTS_EXT4)) {
881 SLOGE("Only ext4 partitions are supported for resize");
882 errno = EINVAL;
883 return -1;
884 }
885
886 if (Loop::resizeImageFile(asecFileName, numImgSectors + 1)) {
887 SLOGE("Resize of ASEC image file failed. Could not resize %s", id);
888 return -1;
889 }
890
891 /*
892 * Drop down a copy of the superblock at the end of the file
893 */
894 if (writeSuperBlock(asecFileName, &sb, numImgSectors))
895 goto fail;
896
897 char idHash[33];
898 if (!asecHash(id, idHash, sizeof(idHash))) {
899 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
900 goto fail;
901 }
902
903 char loopDevice[255];
904 if (setupLoopDevice(loopDevice, sizeof(loopDevice), asecFileName, idHash, mDebug))
905 goto fail;
906
907 char dmDevice[255];
908
909 if (setupDevMapperDevice(dmDevice, sizeof(dmDevice), loopDevice, asecFileName, key, idHash, numImgSectors, &cleanupDm, mDebug)) {
910 Loop::destroyByDevice(loopDevice);
911 goto fail;
912 }
913
914 /*
915 * Wait for the device mapper node to be created.
916 */
917 waitForDevMapper(dmDevice);
918
919 if (Ext4::resize(dmDevice, numImgSectors)) {
920 SLOGE("Unable to resize %s (%s)", id, strerror(errno));
921 if (cleanupDm) {
922 Devmapper::destroy(idHash);
923 }
924 Loop::destroyByDevice(loopDevice);
925 goto fail;
926 }
927
928 return 0;
929fail:
930 Loop::resizeImageFile(asecFileName, oldNumSec);
931 return -1;
932}
933
San Mehata19b2502010-01-06 10:33:53 -0800934int VolumeManager::finalizeAsec(const char *id) {
935 char asecFileName[255];
936 char loopDevice[255];
937 char mountPoint[255];
938
Nick Kralevich0de7c612014-01-27 14:58:06 -0800939 if (!isLegalAsecId(id)) {
940 SLOGE("finalizeAsec: Invalid asec id \"%s\"", id);
941 errno = EINVAL;
942 return -1;
943 }
944
Kenny Root344ca102012-04-03 17:23:01 -0700945 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
946 SLOGE("Couldn't find ASEC %s", id);
947 return -1;
948 }
San Mehata19b2502010-01-06 10:33:53 -0800949
San Mehatd9a4e352010-03-12 13:32:47 -0800950 char idHash[33];
951 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700952 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -0800953 return -1;
954 }
955
956 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700957 SLOGE("Unable to finalize %s (%s)", id, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800958 return -1;
959 }
960
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +0900961 unsigned long nr_sec = 0;
Kenny Root344ca102012-04-03 17:23:01 -0700962 struct asec_superblock sb;
963
964 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
965 return -1;
966 }
967
rpcraigd1c226f2012-10-09 06:58:16 -0400968 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
969 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
970 SLOGE("ASEC finalize failed: couldn't construct mountPoint");
971 return -1;
972 }
Kenny Root344ca102012-04-03 17:23:01 -0700973
974 int result = 0;
975 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4) {
976 result = Ext4::doMount(loopDevice, mountPoint, true, true, true);
977 } else {
978 result = Fat::doMount(loopDevice, mountPoint, true, true, true, 0, 0, 0227, false);
979 }
980
981 if (result) {
San Mehat97ac40e2010-03-24 10:24:19 -0700982 SLOGE("ASEC finalize mount failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800983 return -1;
984 }
985
San Mehatd9a4e352010-03-12 13:32:47 -0800986 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700987 SLOGD("ASEC %s finalized", id);
San Mehatd9a4e352010-03-12 13:32:47 -0800988 }
San Mehata19b2502010-01-06 10:33:53 -0800989 return 0;
990}
991
Kenny Root344ca102012-04-03 17:23:01 -0700992int VolumeManager::fixupAsecPermissions(const char *id, gid_t gid, const char* filename) {
993 char asecFileName[255];
994 char loopDevice[255];
995 char mountPoint[255];
996
997 if (gid < AID_APP) {
998 SLOGE("Group ID is not in application range");
999 return -1;
1000 }
1001
Nick Kralevich0de7c612014-01-27 14:58:06 -08001002 if (!isLegalAsecId(id)) {
1003 SLOGE("fixupAsecPermissions: Invalid asec id \"%s\"", id);
1004 errno = EINVAL;
1005 return -1;
1006 }
1007
Kenny Root344ca102012-04-03 17:23:01 -07001008 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1009 SLOGE("Couldn't find ASEC %s", id);
1010 return -1;
1011 }
1012
1013 char idHash[33];
1014 if (!asecHash(id, idHash, sizeof(idHash))) {
1015 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
1016 return -1;
1017 }
1018
1019 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
1020 SLOGE("Unable fix permissions during lookup on %s (%s)", id, strerror(errno));
1021 return -1;
1022 }
1023
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001024 unsigned long nr_sec = 0;
Kenny Root344ca102012-04-03 17:23:01 -07001025 struct asec_superblock sb;
1026
1027 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
1028 return -1;
1029 }
1030
rpcraigd1c226f2012-10-09 06:58:16 -04001031 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
1032 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1033 SLOGE("Unable remount to fix permissions for %s: couldn't construct mountpoint", id);
1034 return -1;
1035 }
Kenny Root344ca102012-04-03 17:23:01 -07001036
1037 int result = 0;
1038 if ((sb.c_opts & ASEC_SB_C_OPTS_EXT4) == 0) {
1039 return 0;
1040 }
1041
1042 int ret = Ext4::doMount(loopDevice, mountPoint,
1043 false /* read-only */,
1044 true /* remount */,
1045 false /* executable */);
1046 if (ret) {
1047 SLOGE("Unable remount to fix permissions for %s (%s)", id, strerror(errno));
1048 return -1;
1049 }
1050
1051 char *paths[] = { mountPoint, NULL };
1052
1053 FTS *fts = fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL);
1054 if (fts) {
1055 // Traverse the entire hierarchy and chown to system UID.
1056 for (FTSENT *ftsent = fts_read(fts); ftsent != NULL; ftsent = fts_read(fts)) {
1057 // We don't care about the lost+found directory.
1058 if (!strcmp(ftsent->fts_name, "lost+found")) {
1059 continue;
1060 }
1061
1062 /*
1063 * There can only be one file marked as private right now.
1064 * This should be more robust, but it satisfies the requirements
1065 * we have for right now.
1066 */
1067 const bool privateFile = !strcmp(ftsent->fts_name, filename);
1068
1069 int fd = open(ftsent->fts_accpath, O_NOFOLLOW);
1070 if (fd < 0) {
1071 SLOGE("Couldn't open file %s: %s", ftsent->fts_accpath, strerror(errno));
1072 result = -1;
1073 continue;
1074 }
1075
1076 result |= fchown(fd, AID_SYSTEM, privateFile? gid : AID_SYSTEM);
1077
1078 if (ftsent->fts_info & FTS_D) {
Kenny Root1a673c82012-05-10 16:45:29 -07001079 result |= fchmod(fd, 0755);
Kenny Root348c8ab2012-05-10 15:39:53 -07001080 } else if (ftsent->fts_info & FTS_F) {
Kenny Root344ca102012-04-03 17:23:01 -07001081 result |= fchmod(fd, privateFile ? 0640 : 0644);
1082 }
Robert Craigb9e3ba52014-02-04 10:53:00 -05001083
Stephen Smalley5093e612014-02-12 09:43:08 -05001084 if (selinux_android_restorecon(ftsent->fts_path, 0) < 0) {
Robert Craigb9e3ba52014-02-04 10:53:00 -05001085 SLOGE("restorecon failed for %s: %s\n", ftsent->fts_path, strerror(errno));
1086 result |= -1;
1087 }
1088
Kenny Root344ca102012-04-03 17:23:01 -07001089 close(fd);
1090 }
1091 fts_close(fts);
1092
1093 // Finally make the directory readable by everyone.
1094 int dirfd = open(mountPoint, O_DIRECTORY);
1095 if (dirfd < 0 || fchmod(dirfd, 0755)) {
1096 SLOGE("Couldn't change owner of existing directory %s: %s", mountPoint, strerror(errno));
1097 result |= -1;
1098 }
1099 close(dirfd);
1100 } else {
1101 result |= -1;
1102 }
1103
1104 result |= Ext4::doMount(loopDevice, mountPoint,
1105 true /* read-only */,
1106 true /* remount */,
1107 true /* execute */);
1108
1109 if (result) {
1110 SLOGE("ASEC fix permissions failed (%s)", strerror(errno));
1111 return -1;
1112 }
1113
1114 if (mDebug) {
1115 SLOGD("ASEC %s permissions fixed", id);
1116 }
1117 return 0;
1118}
1119
San Mehat048b0802010-01-23 08:17:06 -08001120int VolumeManager::renameAsec(const char *id1, const char *id2) {
Kenny Root344ca102012-04-03 17:23:01 -07001121 char asecFilename1[255];
San Mehat048b0802010-01-23 08:17:06 -08001122 char *asecFilename2;
1123 char mountPoint[255];
1124
Kenny Root344ca102012-04-03 17:23:01 -07001125 const char *dir;
1126
Nick Kralevich0de7c612014-01-27 14:58:06 -08001127 if (!isLegalAsecId(id1)) {
1128 SLOGE("renameAsec: Invalid asec id1 \"%s\"", id1);
1129 errno = EINVAL;
1130 return -1;
1131 }
1132
1133 if (!isLegalAsecId(id2)) {
1134 SLOGE("renameAsec: Invalid asec id2 \"%s\"", id2);
1135 errno = EINVAL;
1136 return -1;
1137 }
1138
Kenny Root344ca102012-04-03 17:23:01 -07001139 if (findAsec(id1, asecFilename1, sizeof(asecFilename1), &dir)) {
1140 SLOGE("Couldn't find ASEC %s", id1);
1141 return -1;
1142 }
1143
1144 asprintf(&asecFilename2, "%s/%s.asec", dir, id2);
San Mehat048b0802010-01-23 08:17:06 -08001145
rpcraigd1c226f2012-10-09 06:58:16 -04001146 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id1);
1147 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1148 SLOGE("Rename failed: couldn't construct mountpoint");
1149 goto out_err;
1150 }
1151
San Mehat048b0802010-01-23 08:17:06 -08001152 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001153 SLOGW("Rename attempt when src mounted");
San Mehat048b0802010-01-23 08:17:06 -08001154 errno = EBUSY;
1155 goto out_err;
1156 }
1157
rpcraigd1c226f2012-10-09 06:58:16 -04001158 written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id2);
1159 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1160 SLOGE("Rename failed: couldn't construct mountpoint2");
1161 goto out_err;
1162 }
1163
San Mehat96956ed2010-02-24 08:42:51 -08001164 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001165 SLOGW("Rename attempt when dst mounted");
San Mehat96956ed2010-02-24 08:42:51 -08001166 errno = EBUSY;
1167 goto out_err;
1168 }
1169
San Mehat048b0802010-01-23 08:17:06 -08001170 if (!access(asecFilename2, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001171 SLOGE("Rename attempt when dst exists");
San Mehat048b0802010-01-23 08:17:06 -08001172 errno = EADDRINUSE;
1173 goto out_err;
1174 }
1175
1176 if (rename(asecFilename1, asecFilename2)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001177 SLOGE("Rename of '%s' to '%s' failed (%s)", asecFilename1, asecFilename2, strerror(errno));
San Mehat048b0802010-01-23 08:17:06 -08001178 goto out_err;
1179 }
1180
San Mehat048b0802010-01-23 08:17:06 -08001181 free(asecFilename2);
1182 return 0;
1183
1184out_err:
San Mehat048b0802010-01-23 08:17:06 -08001185 free(asecFilename2);
1186 return -1;
1187}
1188
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001189#define UNMOUNT_RETRIES 5
1190#define UNMOUNT_SLEEP_BETWEEN_RETRY_MS (1000 * 1000)
San Mehat4ba89482010-02-18 09:00:18 -08001191int VolumeManager::unmountAsec(const char *id, bool force) {
San Mehata19b2502010-01-06 10:33:53 -08001192 char asecFileName[255];
1193 char mountPoint[255];
1194
Nick Kralevich0de7c612014-01-27 14:58:06 -08001195 if (!isLegalAsecId(id)) {
1196 SLOGE("unmountAsec: Invalid asec id \"%s\"", id);
1197 errno = EINVAL;
1198 return -1;
1199 }
1200
Kenny Root344ca102012-04-03 17:23:01 -07001201 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1202 SLOGE("Couldn't find ASEC %s", id);
1203 return -1;
1204 }
1205
rpcraigd1c226f2012-10-09 06:58:16 -04001206 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
1207 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1208 SLOGE("ASEC unmount failed for %s: couldn't construct mountpoint", id);
1209 return -1;
1210 }
San Mehata19b2502010-01-06 10:33:53 -08001211
San Mehatd9a4e352010-03-12 13:32:47 -08001212 char idHash[33];
1213 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001214 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -08001215 return -1;
1216 }
1217
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001218 return unmountLoopImage(id, idHash, asecFileName, mountPoint, force);
1219}
1220
Kenny Root508c0e12010-07-12 09:59:49 -07001221int VolumeManager::unmountObb(const char *fileName, bool force) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001222 char mountPoint[255];
1223
1224 char idHash[33];
1225 if (!asecHash(fileName, idHash, sizeof(idHash))) {
1226 SLOGE("Hash of '%s' failed (%s)", fileName, strerror(errno));
1227 return -1;
1228 }
1229
rpcraigd1c226f2012-10-09 06:58:16 -04001230 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::LOOPDIR, idHash);
1231 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1232 SLOGE("OBB unmount failed for %s: couldn't construct mountpoint", fileName);
1233 return -1;
1234 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001235
1236 return unmountLoopImage(fileName, idHash, fileName, mountPoint, force);
1237}
1238
1239int VolumeManager::unmountLoopImage(const char *id, const char *idHash,
1240 const char *fileName, const char *mountPoint, bool force) {
San Mehat0586d542010-01-12 15:38:59 -08001241 if (!isMountpointMounted(mountPoint)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001242 SLOGE("Unmount request for %s when not mounted", id);
Kenny Root918e5f92010-09-30 18:00:52 -07001243 errno = ENOENT;
San Mehatb78a32c2010-01-10 13:02:12 -08001244 return -1;
1245 }
San Mehat23969932010-01-09 07:08:06 -08001246
San Mehatb78a32c2010-01-10 13:02:12 -08001247 int i, rc;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001248 for (i = 1; i <= UNMOUNT_RETRIES; i++) {
San Mehatb78a32c2010-01-10 13:02:12 -08001249 rc = umount(mountPoint);
1250 if (!rc) {
1251 break;
San Mehata19b2502010-01-06 10:33:53 -08001252 }
San Mehatb78a32c2010-01-10 13:02:12 -08001253 if (rc && (errno == EINVAL || errno == ENOENT)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001254 SLOGI("Container %s unmounted OK", id);
San Mehatb78a32c2010-01-10 13:02:12 -08001255 rc = 0;
1256 break;
San Mehata19b2502010-01-06 10:33:53 -08001257 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001258 SLOGW("%s unmount attempt %d failed (%s)",
San Mehat8c940ef2010-02-13 14:19:53 -08001259 id, i, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001260
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001261 int signal = 0; // default is to just complain
San Mehat4ba89482010-02-18 09:00:18 -08001262
1263 if (force) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001264 if (i > (UNMOUNT_RETRIES - 2))
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001265 signal = SIGKILL;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001266 else if (i > (UNMOUNT_RETRIES - 3))
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001267 signal = SIGTERM;
San Mehat4ba89482010-02-18 09:00:18 -08001268 }
San Mehat8c940ef2010-02-13 14:19:53 -08001269
Jeff Sharkey36801cc2015-03-13 16:09:20 -07001270 Process::killProcessesWithOpenFiles(mountPoint, signal);
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001271 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
San Mehatb78a32c2010-01-10 13:02:12 -08001272 }
1273
1274 if (rc) {
San Mehat4ba89482010-02-18 09:00:18 -08001275 errno = EBUSY;
San Mehat97ac40e2010-03-24 10:24:19 -07001276 SLOGE("Failed to unmount container %s (%s)", id, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001277 return -1;
1278 }
1279
San Mehat12f4b892010-02-24 11:43:22 -08001280 int retries = 10;
1281
1282 while(retries--) {
1283 if (!rmdir(mountPoint)) {
1284 break;
1285 }
1286
San Mehat97ac40e2010-03-24 10:24:19 -07001287 SLOGW("Failed to rmdir %s (%s)", mountPoint, strerror(errno));
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001288 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
San Mehat12f4b892010-02-24 11:43:22 -08001289 }
1290
1291 if (!retries) {
San Mehat97ac40e2010-03-24 10:24:19 -07001292 SLOGE("Timed out trying to rmdir %s (%s)", mountPoint, strerror(errno));
San Mehatf5c61982010-02-03 11:04:46 -08001293 }
San Mehat88705162010-01-15 09:26:28 -08001294
Paul Lawrence60dec162014-09-02 10:52:15 -07001295 for (i=1; i <= UNMOUNT_RETRIES; i++) {
1296 if (Devmapper::destroy(idHash) && errno != ENXIO) {
1297 SLOGE("Failed to destroy devmapper instance (%s)", strerror(errno));
1298 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
1299 continue;
1300 } else {
1301 break;
1302 }
San Mehata19b2502010-01-06 10:33:53 -08001303 }
1304
1305 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -08001306 if (!Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
San Mehata19b2502010-01-06 10:33:53 -08001307 Loop::destroyByDevice(loopDevice);
San Mehatd9a4e352010-03-12 13:32:47 -08001308 } else {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001309 SLOGW("Failed to find loop device for {%s} (%s)", fileName, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001310 }
San Mehat88705162010-01-15 09:26:28 -08001311
1312 AsecIdCollection::iterator it;
1313 for (it = mActiveContainers->begin(); it != mActiveContainers->end(); ++it) {
Kenny Rootcbacf782010-09-24 15:11:48 -07001314 ContainerData* cd = *it;
1315 if (!strcmp(cd->id, id)) {
San Mehat88705162010-01-15 09:26:28 -08001316 free(*it);
1317 mActiveContainers->erase(it);
1318 break;
1319 }
1320 }
1321 if (it == mActiveContainers->end()) {
San Mehat97ac40e2010-03-24 10:24:19 -07001322 SLOGW("mActiveContainers is inconsistent!");
San Mehat88705162010-01-15 09:26:28 -08001323 }
San Mehatb78a32c2010-01-10 13:02:12 -08001324 return 0;
1325}
1326
San Mehat4ba89482010-02-18 09:00:18 -08001327int VolumeManager::destroyAsec(const char *id, bool force) {
San Mehatb78a32c2010-01-10 13:02:12 -08001328 char asecFileName[255];
1329 char mountPoint[255];
1330
Nick Kralevich0de7c612014-01-27 14:58:06 -08001331 if (!isLegalAsecId(id)) {
1332 SLOGE("destroyAsec: Invalid asec id \"%s\"", id);
1333 errno = EINVAL;
1334 return -1;
1335 }
1336
Kenny Root344ca102012-04-03 17:23:01 -07001337 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1338 SLOGE("Couldn't find ASEC %s", id);
1339 return -1;
1340 }
1341
rpcraigd1c226f2012-10-09 06:58:16 -04001342 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
1343 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1344 SLOGE("ASEC destroy failed for %s: couldn't construct mountpoint", id);
1345 return -1;
1346 }
San Mehatb78a32c2010-01-10 13:02:12 -08001347
San Mehat0586d542010-01-12 15:38:59 -08001348 if (isMountpointMounted(mountPoint)) {
San Mehatd9a4e352010-03-12 13:32:47 -08001349 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001350 SLOGD("Unmounting container before destroy");
San Mehatd9a4e352010-03-12 13:32:47 -08001351 }
San Mehat4ba89482010-02-18 09:00:18 -08001352 if (unmountAsec(id, force)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001353 SLOGE("Failed to unmount asec %s for destroy (%s)", id, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -08001354 return -1;
1355 }
1356 }
San Mehata19b2502010-01-06 10:33:53 -08001357
San Mehat0586d542010-01-12 15:38:59 -08001358 if (unlink(asecFileName)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001359 SLOGE("Failed to unlink asec '%s' (%s)", asecFileName, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -08001360 return -1;
1361 }
San Mehata19b2502010-01-06 10:33:53 -08001362
San Mehatd9a4e352010-03-12 13:32:47 -08001363 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001364 SLOGD("ASEC %s destroyed", id);
San Mehatd9a4e352010-03-12 13:32:47 -08001365 }
San Mehata19b2502010-01-06 10:33:53 -08001366 return 0;
1367}
1368
Nick Kralevich0de7c612014-01-27 14:58:06 -08001369/*
1370 * Legal ASEC ids consist of alphanumeric characters, '-',
1371 * '_', or '.'. ".." is not allowed. The first or last character
1372 * of the ASEC id cannot be '.' (dot).
1373 */
1374bool VolumeManager::isLegalAsecId(const char *id) const {
1375 size_t i;
1376 size_t len = strlen(id);
1377
1378 if (len == 0) {
1379 return false;
1380 }
1381 if ((id[0] == '.') || (id[len - 1] == '.')) {
1382 return false;
1383 }
1384
1385 for (i = 0; i < len; i++) {
1386 if (id[i] == '.') {
1387 // i=0 is guaranteed never to have a dot. See above.
1388 if (id[i-1] == '.') return false;
1389 continue;
1390 }
1391 if (id[i] == '_' || id[i] == '-') continue;
1392 if (id[i] >= 'a' && id[i] <= 'z') continue;
1393 if (id[i] >= 'A' && id[i] <= 'Z') continue;
1394 if (id[i] >= '0' && id[i] <= '9') continue;
1395 return false;
1396 }
1397
1398 return true;
1399}
1400
Kenny Root344ca102012-04-03 17:23:01 -07001401bool VolumeManager::isAsecInDirectory(const char *dir, const char *asecName) const {
1402 int dirfd = open(dir, O_DIRECTORY);
1403 if (dirfd < 0) {
1404 SLOGE("Couldn't open internal ASEC dir (%s)", strerror(errno));
Nick Kralevich25e581a2015-02-06 08:55:08 -08001405 return false;
Kenny Root344ca102012-04-03 17:23:01 -07001406 }
1407
Nick Kralevich25e581a2015-02-06 08:55:08 -08001408 struct stat sb;
1409 bool ret = (fstatat(dirfd, asecName, &sb, AT_SYMLINK_NOFOLLOW) == 0)
1410 && S_ISREG(sb.st_mode);
Kenny Root344ca102012-04-03 17:23:01 -07001411
1412 close(dirfd);
1413
1414 return ret;
1415}
1416
1417int VolumeManager::findAsec(const char *id, char *asecPath, size_t asecPathLen,
1418 const char **directory) const {
Kenny Root344ca102012-04-03 17:23:01 -07001419 char *asecName;
1420
Nick Kralevich0de7c612014-01-27 14:58:06 -08001421 if (!isLegalAsecId(id)) {
1422 SLOGE("findAsec: Invalid asec id \"%s\"", id);
1423 errno = EINVAL;
1424 return -1;
1425 }
1426
Kenny Root344ca102012-04-03 17:23:01 -07001427 if (asprintf(&asecName, "%s.asec", id) < 0) {
1428 SLOGE("Couldn't allocate string to write ASEC name");
1429 return -1;
1430 }
1431
1432 const char *dir;
1433 if (isAsecInDirectory(Volume::SEC_ASECDIR_INT, asecName)) {
1434 dir = Volume::SEC_ASECDIR_INT;
1435 } else if (isAsecInDirectory(Volume::SEC_ASECDIR_EXT, asecName)) {
1436 dir = Volume::SEC_ASECDIR_EXT;
1437 } else {
1438 free(asecName);
1439 return -1;
1440 }
1441
1442 if (directory != NULL) {
1443 *directory = dir;
1444 }
1445
1446 if (asecPath != NULL) {
1447 int written = snprintf(asecPath, asecPathLen, "%s/%s", dir, asecName);
rpcraigd1c226f2012-10-09 06:58:16 -04001448 if ((written < 0) || (size_t(written) >= asecPathLen)) {
1449 SLOGE("findAsec failed for %s: couldn't construct ASEC path", id);
Kenny Root344ca102012-04-03 17:23:01 -07001450 free(asecName);
1451 return -1;
1452 }
1453 }
1454
1455 free(asecName);
1456 return 0;
1457}
1458
Jeff Sharkey43ed1232014-08-22 12:29:05 -07001459int VolumeManager::mountAsec(const char *id, const char *key, int ownerUid, bool readOnly) {
San Mehata19b2502010-01-06 10:33:53 -08001460 char asecFileName[255];
1461 char mountPoint[255];
1462
Nick Kralevich0de7c612014-01-27 14:58:06 -08001463 if (!isLegalAsecId(id)) {
1464 SLOGE("mountAsec: Invalid asec id \"%s\"", id);
1465 errno = EINVAL;
1466 return -1;
1467 }
1468
Kenny Root344ca102012-04-03 17:23:01 -07001469 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1470 SLOGE("Couldn't find ASEC %s", id);
1471 return -1;
1472 }
1473
rpcraigd1c226f2012-10-09 06:58:16 -04001474 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
1475 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
Colin Cross59846b62014-02-06 20:34:29 -08001476 SLOGE("ASEC mount failed for %s: couldn't construct mountpoint", id);
rpcraigd1c226f2012-10-09 06:58:16 -04001477 return -1;
1478 }
San Mehata19b2502010-01-06 10:33:53 -08001479
1480 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001481 SLOGE("ASEC %s already mounted", id);
San Mehata19b2502010-01-06 10:33:53 -08001482 errno = EBUSY;
1483 return -1;
1484 }
1485
San Mehatd9a4e352010-03-12 13:32:47 -08001486 char idHash[33];
1487 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001488 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -08001489 return -1;
1490 }
Kenny Root7b18a7b2010-03-15 13:13:41 -07001491
San Mehata19b2502010-01-06 10:33:53 -08001492 char loopDevice[255];
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001493 if (setupLoopDevice(loopDevice, sizeof(loopDevice), asecFileName, idHash, mDebug))
1494 return -1;
San Mehatb78a32c2010-01-10 13:02:12 -08001495
1496 char dmDevice[255];
1497 bool cleanupDm = false;
Tim Murray8439dc92014-12-15 11:56:11 -08001498
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001499 unsigned long nr_sec = 0;
San Mehatfcf24fe2010-03-03 12:37:32 -08001500 struct asec_superblock sb;
San Mehatfcf24fe2010-03-03 12:37:32 -08001501
Kenny Root344ca102012-04-03 17:23:01 -07001502 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
1503 return -1;
1504 }
San Mehatfcf24fe2010-03-03 12:37:32 -08001505
San Mehatd9a4e352010-03-12 13:32:47 -08001506 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001507 SLOGD("Container sb magic/ver (%.8x/%.2x)", sb.magic, sb.ver);
San Mehatd9a4e352010-03-12 13:32:47 -08001508 }
San Mehatfcf24fe2010-03-03 12:37:32 -08001509 if (sb.magic != ASEC_SB_MAGIC || sb.ver != ASEC_SB_VER) {
San Mehat97ac40e2010-03-24 10:24:19 -07001510 SLOGE("Bad container magic/version (%.8x/%.2x)", sb.magic, sb.ver);
San Mehatfcf24fe2010-03-03 12:37:32 -08001511 Loop::destroyByDevice(loopDevice);
1512 errno = EMEDIUMTYPE;
1513 return -1;
1514 }
1515 nr_sec--; // We don't want the devmapping to extend onto our superblock
1516
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001517 if (setupDevMapperDevice(dmDevice, sizeof(dmDevice), loopDevice, asecFileName, key, idHash , nr_sec, &cleanupDm, mDebug)) {
1518 Loop::destroyByDevice(loopDevice);
1519 return -1;
San Mehata19b2502010-01-06 10:33:53 -08001520 }
1521
Kenny Root344ca102012-04-03 17:23:01 -07001522 if (mkdir(mountPoint, 0000)) {
San Mehatb78a32c2010-01-10 13:02:12 -08001523 if (errno != EEXIST) {
San Mehat97ac40e2010-03-24 10:24:19 -07001524 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001525 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -08001526 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -08001527 }
1528 Loop::destroyByDevice(loopDevice);
1529 return -1;
1530 }
San Mehata19b2502010-01-06 10:33:53 -08001531 }
1532
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001533 /*
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001534 * Wait for the device mapper node to be created.
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001535 */
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001536 waitForDevMapper(dmDevice);
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001537
Kenny Root344ca102012-04-03 17:23:01 -07001538 int result;
1539 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4) {
Jeff Sharkey43ed1232014-08-22 12:29:05 -07001540 result = Ext4::doMount(dmDevice, mountPoint, readOnly, false, readOnly);
Kenny Root344ca102012-04-03 17:23:01 -07001541 } else {
Jeff Sharkey43ed1232014-08-22 12:29:05 -07001542 result = Fat::doMount(dmDevice, mountPoint, readOnly, false, readOnly, ownerUid, 0, 0222, false);
Kenny Root344ca102012-04-03 17:23:01 -07001543 }
1544
1545 if (result) {
San Mehat97ac40e2010-03-24 10:24:19 -07001546 SLOGE("ASEC mount failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001547 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -08001548 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -08001549 }
1550 Loop::destroyByDevice(loopDevice);
San Mehata19b2502010-01-06 10:33:53 -08001551 return -1;
1552 }
1553
Kenny Rootcbacf782010-09-24 15:11:48 -07001554 mActiveContainers->push_back(new ContainerData(strdup(id), ASEC));
San Mehatd9a4e352010-03-12 13:32:47 -08001555 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001556 SLOGD("ASEC %s mounted", id);
San Mehatd9a4e352010-03-12 13:32:47 -08001557 }
San Mehata19b2502010-01-06 10:33:53 -08001558 return 0;
1559}
1560
Kenny Root93ecb382012-08-09 11:28:37 -07001561Volume* VolumeManager::getVolumeForFile(const char *fileName) {
1562 VolumeCollection::iterator i;
1563
1564 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -07001565 const char* mountPoint = (*i)->getFuseMountpoint();
Kenny Root93ecb382012-08-09 11:28:37 -07001566 if (!strncmp(fileName, mountPoint, strlen(mountPoint))) {
1567 return *i;
1568 }
1569 }
1570
1571 return NULL;
1572}
1573
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001574/**
1575 * Mounts an image file <code>img</code>.
1576 */
Jeff Sharkey69479042012-09-25 16:14:57 -07001577int VolumeManager::mountObb(const char *img, const char *key, int ownerGid) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001578 char mountPoint[255];
1579
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001580 char idHash[33];
1581 if (!asecHash(img, idHash, sizeof(idHash))) {
1582 SLOGE("Hash of '%s' failed (%s)", img, strerror(errno));
1583 return -1;
1584 }
1585
rpcraigd1c226f2012-10-09 06:58:16 -04001586 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::LOOPDIR, idHash);
1587 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
Colin Cross59846b62014-02-06 20:34:29 -08001588 SLOGE("OBB mount failed for %s: couldn't construct mountpoint", img);
rpcraigd1c226f2012-10-09 06:58:16 -04001589 return -1;
1590 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001591
1592 if (isMountpointMounted(mountPoint)) {
1593 SLOGE("Image %s already mounted", img);
1594 errno = EBUSY;
1595 return -1;
1596 }
1597
1598 char loopDevice[255];
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001599 if (setupLoopDevice(loopDevice, sizeof(loopDevice), img, idHash, mDebug))
1600 return -1;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001601
1602 char dmDevice[255];
1603 bool cleanupDm = false;
1604 int fd;
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001605 unsigned long nr_sec = 0;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001606
1607 if ((fd = open(loopDevice, O_RDWR)) < 0) {
1608 SLOGE("Failed to open loopdevice (%s)", strerror(errno));
1609 Loop::destroyByDevice(loopDevice);
1610 return -1;
1611 }
1612
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001613 get_blkdev_size(fd, &nr_sec);
1614 if (nr_sec == 0) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001615 SLOGE("Failed to get loop size (%s)", strerror(errno));
1616 Loop::destroyByDevice(loopDevice);
1617 close(fd);
1618 return -1;
1619 }
1620
1621 close(fd);
1622
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001623 if (setupDevMapperDevice(dmDevice, sizeof(loopDevice), loopDevice, img,key, idHash, nr_sec, &cleanupDm, mDebug)) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001624 Loop::destroyByDevice(loopDevice);
1625 return -1;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001626 }
1627
1628 if (mkdir(mountPoint, 0755)) {
1629 if (errno != EEXIST) {
1630 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
1631 if (cleanupDm) {
1632 Devmapper::destroy(idHash);
1633 }
1634 Loop::destroyByDevice(loopDevice);
1635 return -1;
1636 }
1637 }
1638
Jeff Sharkey69479042012-09-25 16:14:57 -07001639 if (Fat::doMount(dmDevice, mountPoint, true, false, true, 0, ownerGid,
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001640 0227, false)) {
1641 SLOGE("Image mount failed (%s)", strerror(errno));
1642 if (cleanupDm) {
1643 Devmapper::destroy(idHash);
1644 }
1645 Loop::destroyByDevice(loopDevice);
1646 return -1;
1647 }
1648
Kenny Rootcbacf782010-09-24 15:11:48 -07001649 mActiveContainers->push_back(new ContainerData(strdup(img), OBB));
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001650 if (mDebug) {
1651 SLOGD("Image %s mounted", img);
1652 }
1653 return 0;
1654}
1655
San Mehat49e2bce2009-10-12 16:29:01 -07001656int VolumeManager::mountVolume(const char *label) {
1657 Volume *v = lookupVolume(label);
1658
1659 if (!v) {
1660 errno = ENOENT;
1661 return -1;
1662 }
1663
San Mehata2677e42009-12-13 10:40:18 -08001664 return v->mountVol();
1665}
1666
Kenny Root508c0e12010-07-12 09:59:49 -07001667int VolumeManager::listMountedObbs(SocketClient* cli) {
Yabin Cuid1104f72015-01-02 13:28:28 -08001668 FILE *fp = setmntent("/proc/mounts", "r");
1669 if (fp == NULL) {
Kenny Root508c0e12010-07-12 09:59:49 -07001670 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
1671 return -1;
1672 }
1673
1674 // Create a string to compare against that has a trailing slash
Kenny Root93ecb382012-08-09 11:28:37 -07001675 int loopDirLen = strlen(Volume::LOOPDIR);
Kenny Root508c0e12010-07-12 09:59:49 -07001676 char loopDir[loopDirLen + 2];
1677 strcpy(loopDir, Volume::LOOPDIR);
1678 loopDir[loopDirLen++] = '/';
1679 loopDir[loopDirLen] = '\0';
1680
Yabin Cuid1104f72015-01-02 13:28:28 -08001681 mntent* mentry;
1682 while ((mentry = getmntent(fp)) != NULL) {
1683 if (!strncmp(mentry->mnt_dir, loopDir, loopDirLen)) {
1684 int fd = open(mentry->mnt_fsname, O_RDONLY);
Kenny Root508c0e12010-07-12 09:59:49 -07001685 if (fd >= 0) {
1686 struct loop_info64 li;
1687 if (ioctl(fd, LOOP_GET_STATUS64, &li) >= 0) {
1688 cli->sendMsg(ResponseCode::AsecListResult,
1689 (const char*) li.lo_file_name, false);
1690 }
1691 close(fd);
1692 }
1693 }
1694 }
Yabin Cuid1104f72015-01-02 13:28:28 -08001695 endmntent(fp);
Kenny Root508c0e12010-07-12 09:59:49 -07001696 return 0;
1697}
1698
San Mehateba65e92010-01-29 05:15:16 -08001699int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) {
1700 Volume *v = lookupVolume(label);
1701
1702 if (!v) {
1703 errno = ENOENT;
1704 return -1;
1705 }
1706
1707 if (strcmp(method, "ums")) {
1708 errno = ENOSYS;
1709 return -1;
1710 }
1711
1712 if (v->getState() != Volume::State_Shared) {
San Mehateba65e92010-01-29 05:15:16 -08001713 *enabled = false;
San Mehatb9aed742010-02-04 15:07:01 -08001714 } else {
1715 *enabled = true;
San Mehateba65e92010-01-29 05:15:16 -08001716 }
1717 return 0;
1718}
1719
San Mehata2677e42009-12-13 10:40:18 -08001720int VolumeManager::shareVolume(const char *label, const char *method) {
1721 Volume *v = lookupVolume(label);
1722
1723 if (!v) {
1724 errno = ENOENT;
1725 return -1;
1726 }
1727
1728 /*
1729 * Eventually, we'll want to support additional share back-ends,
1730 * some of which may work while the media is mounted. For now,
1731 * we just support UMS
1732 */
1733 if (strcmp(method, "ums")) {
1734 errno = ENOSYS;
1735 return -1;
1736 }
1737
1738 if (v->getState() == Volume::State_NoMedia) {
1739 errno = ENODEV;
1740 return -1;
1741 }
1742
San Mehat49e2bce2009-10-12 16:29:01 -07001743 if (v->getState() != Volume::State_Idle) {
San Mehata2677e42009-12-13 10:40:18 -08001744 // You need to unmount manually befoe sharing
San Mehat49e2bce2009-10-12 16:29:01 -07001745 errno = EBUSY;
1746 return -1;
1747 }
1748
Ken Sumrall3b170052011-07-11 15:38:57 -07001749 if (mVolManagerDisabled) {
1750 errno = EBUSY;
1751 return -1;
1752 }
1753
Mike Lockwood2dfe2972010-09-17 18:50:51 -04001754 dev_t d = v->getShareDevice();
San Mehata2677e42009-12-13 10:40:18 -08001755 if ((MAJOR(d) == 0) && (MINOR(d) == 0)) {
1756 // This volume does not support raw disk access
1757 errno = EINVAL;
1758 return -1;
1759 }
1760
1761 int fd;
1762 char nodepath[255];
rpcraigd1c226f2012-10-09 06:58:16 -04001763 int written = snprintf(nodepath,
San Mehata2677e42009-12-13 10:40:18 -08001764 sizeof(nodepath), "/dev/block/vold/%d:%d",
Colin Cross346c5b22014-01-22 23:59:41 -08001765 major(d), minor(d));
San Mehata2677e42009-12-13 10:40:18 -08001766
rpcraigd1c226f2012-10-09 06:58:16 -04001767 if ((written < 0) || (size_t(written) >= sizeof(nodepath))) {
1768 SLOGE("shareVolume failed: couldn't construct nodepath");
1769 return -1;
1770 }
1771
Mike Lockwood97f2fc12011-06-07 10:51:38 -07001772 if ((fd = open(MASS_STORAGE_FILE_PATH, O_WRONLY)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001773 SLOGE("Unable to open ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001774 return -1;
1775 }
1776
1777 if (write(fd, nodepath, strlen(nodepath)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001778 SLOGE("Unable to write to ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001779 close(fd);
1780 return -1;
1781 }
1782
1783 close(fd);
1784 v->handleVolumeShared();
Mike Lockwooda28056b2010-10-28 15:21:24 -04001785 if (mUmsSharingCount++ == 0) {
1786 FILE* fp;
1787 mSavedDirtyRatio = -1; // in case we fail
1788 if ((fp = fopen("/proc/sys/vm/dirty_ratio", "r+"))) {
1789 char line[16];
1790 if (fgets(line, sizeof(line), fp) && sscanf(line, "%d", &mSavedDirtyRatio)) {
1791 fprintf(fp, "%d\n", mUmsDirtyRatio);
1792 } else {
1793 SLOGE("Failed to read dirty_ratio (%s)", strerror(errno));
1794 }
1795 fclose(fp);
1796 } else {
1797 SLOGE("Failed to open /proc/sys/vm/dirty_ratio (%s)", strerror(errno));
1798 }
1799 }
San Mehata2677e42009-12-13 10:40:18 -08001800 return 0;
1801}
1802
1803int VolumeManager::unshareVolume(const char *label, const char *method) {
1804 Volume *v = lookupVolume(label);
1805
1806 if (!v) {
1807 errno = ENOENT;
1808 return -1;
1809 }
1810
1811 if (strcmp(method, "ums")) {
1812 errno = ENOSYS;
1813 return -1;
1814 }
1815
1816 if (v->getState() != Volume::State_Shared) {
1817 errno = EINVAL;
1818 return -1;
1819 }
1820
San Mehata2677e42009-12-13 10:40:18 -08001821 int fd;
Mike Lockwood97f2fc12011-06-07 10:51:38 -07001822 if ((fd = open(MASS_STORAGE_FILE_PATH, O_WRONLY)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001823 SLOGE("Unable to open ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001824 return -1;
1825 }
1826
1827 char ch = 0;
1828 if (write(fd, &ch, 1) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001829 SLOGE("Unable to write to ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001830 close(fd);
1831 return -1;
1832 }
1833
1834 close(fd);
1835 v->handleVolumeUnshared();
Mike Lockwooda28056b2010-10-28 15:21:24 -04001836 if (--mUmsSharingCount == 0 && mSavedDirtyRatio != -1) {
1837 FILE* fp;
1838 if ((fp = fopen("/proc/sys/vm/dirty_ratio", "r+"))) {
1839 fprintf(fp, "%d\n", mSavedDirtyRatio);
1840 fclose(fp);
1841 } else {
1842 SLOGE("Failed to open /proc/sys/vm/dirty_ratio (%s)", strerror(errno));
1843 }
1844 mSavedDirtyRatio = -1;
1845 }
San Mehata2677e42009-12-13 10:40:18 -08001846 return 0;
San Mehat49e2bce2009-10-12 16:29:01 -07001847}
1848
Ken Sumrall29d8da82011-05-18 17:20:07 -07001849int VolumeManager::getDirectVolumeList(struct volume_info *vol_list) {
1850 VolumeCollection::iterator i;
1851 int n=0;
1852 dev_t d;
1853
1854 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
1855 if ((d=(*i)->getShareDevice()) != (dev_t)0) {
1856 (*i)->getVolInfo(&vol_list[n]);
1857 snprintf(vol_list[n].blk_dev, sizeof(vol_list[n].blk_dev),
Colin Cross346c5b22014-01-22 23:59:41 -08001858 "/dev/block/vold/%d:%d", major(d), minor(d));
Ken Sumrall29d8da82011-05-18 17:20:07 -07001859 n++;
1860 }
1861 }
1862
1863 return 0;
1864}
1865
Ken Sumrall0b8b5972011-08-31 16:14:23 -07001866int VolumeManager::unmountVolume(const char *label, bool force, bool revert) {
San Mehat49e2bce2009-10-12 16:29:01 -07001867 Volume *v = lookupVolume(label);
1868
1869 if (!v) {
1870 errno = ENOENT;
1871 return -1;
1872 }
1873
San Mehata2677e42009-12-13 10:40:18 -08001874 if (v->getState() == Volume::State_NoMedia) {
1875 errno = ENODEV;
1876 return -1;
1877 }
1878
San Mehat49e2bce2009-10-12 16:29:01 -07001879 if (v->getState() != Volume::State_Mounted) {
San Mehat97ac40e2010-03-24 10:24:19 -07001880 SLOGW("Attempt to unmount volume which isn't mounted (%d)\n",
San Mehata2677e42009-12-13 10:40:18 -08001881 v->getState());
San Mehat49e2bce2009-10-12 16:29:01 -07001882 errno = EBUSY;
Ken Sumrall319b1042011-06-14 14:01:55 -07001883 return UNMOUNT_NOT_MOUNTED_ERR;
San Mehat49e2bce2009-10-12 16:29:01 -07001884 }
1885
San Mehat1a06eda2010-04-15 12:58:50 -07001886 cleanupAsec(v, force);
San Mehat88705162010-01-15 09:26:28 -08001887
Ken Sumrall0b8b5972011-08-31 16:14:23 -07001888 return v->unmountVol(force, revert);
San Mehat49e2bce2009-10-12 16:29:01 -07001889}
1890
Jeff Sharkey9c484982015-03-31 10:35:33 -07001891extern "C" int vold_unmountAll(void) {
Ken Sumrall425524d2012-06-14 20:55:28 -07001892 VolumeManager *vm = VolumeManager::Instance();
Jeff Sharkey9c484982015-03-31 10:35:33 -07001893 return vm->unmountAll();
Ken Sumrall425524d2012-06-14 20:55:28 -07001894}
1895
1896#define ID_BUF_LEN 256
1897#define ASEC_SUFFIX ".asec"
1898#define ASEC_SUFFIX_LEN (sizeof(ASEC_SUFFIX) - 1)
1899int VolumeManager::unmountAllAsecsInDir(const char *directory) {
1900 DIR *d = opendir(directory);
1901 int rc = 0;
1902
1903 if (!d) {
1904 SLOGE("Could not open asec dir %s", directory);
1905 return -1;
1906 }
1907
1908 size_t dirent_len = offsetof(struct dirent, d_name) +
Elliott Hughes8c480f72012-10-26 16:57:19 -07001909 fpathconf(dirfd(d), _PC_NAME_MAX) + 1;
Ken Sumrall425524d2012-06-14 20:55:28 -07001910
1911 struct dirent *dent = (struct dirent *) malloc(dirent_len);
1912 if (dent == NULL) {
1913 SLOGE("Failed to allocate memory for asec dir");
1914 return -1;
1915 }
1916
1917 struct dirent *result;
1918 while (!readdir_r(d, dent, &result) && result != NULL) {
1919 if (dent->d_name[0] == '.')
1920 continue;
1921 if (dent->d_type != DT_REG)
1922 continue;
1923 size_t name_len = strlen(dent->d_name);
1924 if (name_len > 5 && name_len < (ID_BUF_LEN + ASEC_SUFFIX_LEN - 1) &&
1925 !strcmp(&dent->d_name[name_len - 5], ASEC_SUFFIX)) {
1926 char id[ID_BUF_LEN];
1927 strlcpy(id, dent->d_name, name_len - 4);
1928 if (unmountAsec(id, true)) {
1929 /* Register the error, but try to unmount more asecs */
1930 rc = -1;
1931 }
1932 }
1933 }
1934 closedir(d);
1935
1936 free(dent);
1937
1938 return rc;
1939}
1940
San Mehata2677e42009-12-13 10:40:18 -08001941/*
1942 * Looks up a volume by it's label or mount-point
1943 */
San Mehat49e2bce2009-10-12 16:29:01 -07001944Volume *VolumeManager::lookupVolume(const char *label) {
1945 VolumeCollection::iterator i;
1946
1947 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
San Mehata2677e42009-12-13 10:40:18 -08001948 if (label[0] == '/') {
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -07001949 if (!strcmp(label, (*i)->getFuseMountpoint()))
San Mehata2677e42009-12-13 10:40:18 -08001950 return (*i);
1951 } else {
1952 if (!strcmp(label, (*i)->getLabel()))
1953 return (*i);
1954 }
San Mehat49e2bce2009-10-12 16:29:01 -07001955 }
1956 return NULL;
1957}
San Mehata19b2502010-01-06 10:33:53 -08001958
1959bool VolumeManager::isMountpointMounted(const char *mp)
1960{
Yabin Cuid1104f72015-01-02 13:28:28 -08001961 FILE *fp = setmntent("/proc/mounts", "r");
1962 if (fp == NULL) {
San Mehat97ac40e2010-03-24 10:24:19 -07001963 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001964 return false;
1965 }
1966
Yabin Cuid1104f72015-01-02 13:28:28 -08001967 bool found_mp = false;
1968 mntent* mentry;
1969 while ((mentry = getmntent(fp)) != NULL) {
1970 if (strcmp(mentry->mnt_dir, mp) == 0) {
1971 found_mp = true;
1972 break;
San Mehata19b2502010-01-06 10:33:53 -08001973 }
San Mehata19b2502010-01-06 10:33:53 -08001974 }
Yabin Cuid1104f72015-01-02 13:28:28 -08001975 endmntent(fp);
1976 return found_mp;
San Mehata19b2502010-01-06 10:33:53 -08001977}
1978
San Mehat1a06eda2010-04-15 12:58:50 -07001979int VolumeManager::cleanupAsec(Volume *v, bool force) {
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07001980 int rc = 0;
Kenny Root93ecb382012-08-09 11:28:37 -07001981
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07001982 char asecFileName[255];
1983
1984 AsecIdCollection removeAsec;
1985 AsecIdCollection removeObb;
1986
Kenny Root93ecb382012-08-09 11:28:37 -07001987 for (AsecIdCollection::iterator it = mActiveContainers->begin(); it != mActiveContainers->end();
1988 ++it) {
Kenny Rootcbacf782010-09-24 15:11:48 -07001989 ContainerData* cd = *it;
Kenny Root93ecb382012-08-09 11:28:37 -07001990
Kenny Rootcbacf782010-09-24 15:11:48 -07001991 if (cd->type == ASEC) {
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07001992 if (findAsec(cd->id, asecFileName, sizeof(asecFileName))) {
1993 SLOGE("Couldn't find ASEC %s; cleaning up", cd->id);
1994 removeAsec.push_back(cd);
1995 } else {
1996 SLOGD("Found ASEC at path %s", asecFileName);
1997 if (!strncmp(asecFileName, Volume::SEC_ASECDIR_EXT,
1998 strlen(Volume::SEC_ASECDIR_EXT))) {
1999 removeAsec.push_back(cd);
2000 }
2001 }
Kenny Rootcbacf782010-09-24 15:11:48 -07002002 } else if (cd->type == OBB) {
Kenny Root93ecb382012-08-09 11:28:37 -07002003 if (v == getVolumeForFile(cd->id)) {
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07002004 removeObb.push_back(cd);
Kenny Rootcbacf782010-09-24 15:11:48 -07002005 }
2006 } else {
2007 SLOGE("Unknown container type %d!", cd->type);
San Mehat1a06eda2010-04-15 12:58:50 -07002008 }
2009 }
Kenny Root93ecb382012-08-09 11:28:37 -07002010
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07002011 for (AsecIdCollection::iterator it = removeAsec.begin(); it != removeAsec.end(); ++it) {
Kenny Root93ecb382012-08-09 11:28:37 -07002012 ContainerData *cd = *it;
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07002013 SLOGI("Unmounting ASEC %s (dependent on %s)", cd->id, v->getLabel());
2014 if (unmountAsec(cd->id, force)) {
2015 SLOGE("Failed to unmount ASEC %s (%s)", cd->id, strerror(errno));
2016 rc = -1;
2017 }
2018 }
2019
2020 for (AsecIdCollection::iterator it = removeObb.begin(); it != removeObb.end(); ++it) {
2021 ContainerData *cd = *it;
2022 SLOGI("Unmounting OBB %s (dependent on %s)", cd->id, v->getLabel());
Kenny Root93ecb382012-08-09 11:28:37 -07002023 if (unmountObb(cd->id, force)) {
2024 SLOGE("Failed to unmount OBB %s (%s)", cd->id, strerror(errno));
2025 rc = -1;
2026 }
2027 }
2028
2029 return rc;
San Mehat1a06eda2010-04-15 12:58:50 -07002030}
2031
Jeff Sharkey71ebe152013-09-17 17:24:38 -07002032int VolumeManager::mkdirs(char* path) {
Jeff Sharkey36801cc2015-03-13 16:09:20 -07002033 // Only offer to create directories for paths managed by vold
2034 if (strncmp(path, "/storage/", 9) == 0) {
2035 // fs_mkdirs() does symlink checking and relative path enforcement
2036 return fs_mkdirs(path, 0700);
Jeff Sharkey71ebe152013-09-17 17:24:38 -07002037 } else {
Cylen Yao27cfee32014-05-02 19:23:42 +08002038 SLOGE("Failed to find mounted volume for %s", path);
Jeff Sharkey71ebe152013-09-17 17:24:38 -07002039 return -EINVAL;
2040 }
Jeff Sharkey71ebe152013-09-17 17:24:38 -07002041}