blob: 1c4893233206dd1429cef615e32834063f0ac11f [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
17#include <stdio.h>
San Mehatfd7f5872009-10-12 11:32:47 -070018#include <stdlib.h>
19#include <string.h>
San Mehatf1b736b2009-10-10 17:22:08 -070020#include <errno.h>
San Mehata2677e42009-12-13 10:40:18 -080021#include <fcntl.h>
Kenny Root344ca102012-04-03 17:23:01 -070022#include <fts.h>
23#include <unistd.h>
San Mehata19b2502010-01-06 10:33:53 -080024#include <sys/stat.h>
25#include <sys/types.h>
26#include <sys/mount.h>
Ken Sumrall425524d2012-06-14 20:55:28 -070027#include <dirent.h>
San Mehata19b2502010-01-06 10:33:53 -080028
San Mehata2677e42009-12-13 10:40:18 -080029#include <linux/kdev_t.h>
San Mehatf1b736b2009-10-10 17:22:08 -070030
31#define LOG_TAG "Vold"
32
Kenny Root7b18a7b2010-03-15 13:13:41 -070033#include <openssl/md5.h>
34
San Mehatf1b736b2009-10-10 17:22:08 -070035#include <cutils/log.h>
36
San Mehatfd7f5872009-10-12 11:32:47 -070037#include <sysutils/NetlinkEvent.h>
38
Kenny Root344ca102012-04-03 17:23:01 -070039#include <private/android_filesystem_config.h>
40
San Mehatf1b736b2009-10-10 17:22:08 -070041#include "VolumeManager.h"
San Mehatae10b912009-10-12 14:57:05 -070042#include "DirectVolume.h"
San Mehata2677e42009-12-13 10:40:18 -080043#include "ResponseCode.h"
San Mehata19b2502010-01-06 10:33:53 -080044#include "Loop.h"
Kenny Root344ca102012-04-03 17:23:01 -070045#include "Ext4.h"
San Mehata19b2502010-01-06 10:33:53 -080046#include "Fat.h"
San Mehatb78a32c2010-01-10 13:02:12 -080047#include "Devmapper.h"
San Mehat586536c2010-02-16 17:12:00 -080048#include "Process.h"
San Mehatfcf24fe2010-03-03 12:37:32 -080049#include "Asec.h"
Ken Sumrall29d8da82011-05-18 17:20:07 -070050#include "cryptfs.h"
San Mehat23969932010-01-09 07:08:06 -080051
Mike Lockwood97f2fc12011-06-07 10:51:38 -070052#define MASS_STORAGE_FILE_PATH "/sys/class/android_usb/android0/f_mass_storage/lun/file"
53
San Mehatf1b736b2009-10-10 17:22:08 -070054VolumeManager *VolumeManager::sInstance = NULL;
55
56VolumeManager *VolumeManager::Instance() {
57 if (!sInstance)
58 sInstance = new VolumeManager();
59 return sInstance;
60}
61
62VolumeManager::VolumeManager() {
San Mehatd9a4e352010-03-12 13:32:47 -080063 mDebug = false;
San Mehatf1b736b2009-10-10 17:22:08 -070064 mVolumes = new VolumeCollection();
San Mehat88705162010-01-15 09:26:28 -080065 mActiveContainers = new AsecIdCollection();
San Mehatf1b736b2009-10-10 17:22:08 -070066 mBroadcaster = NULL;
Mike Lockwooda28056b2010-10-28 15:21:24 -040067 mUmsSharingCount = 0;
68 mSavedDirtyRatio = -1;
69 // set dirty ratio to 0 when UMS is active
70 mUmsDirtyRatio = 0;
Ken Sumrall3b170052011-07-11 15:38:57 -070071 mVolManagerDisabled = 0;
San Mehatf1b736b2009-10-10 17:22:08 -070072}
73
74VolumeManager::~VolumeManager() {
San Mehat88705162010-01-15 09:26:28 -080075 delete mVolumes;
76 delete mActiveContainers;
San Mehatf1b736b2009-10-10 17:22:08 -070077}
78
Kenny Root7b18a7b2010-03-15 13:13:41 -070079char *VolumeManager::asecHash(const char *id, char *buffer, size_t len) {
Kenny Rootacc9e7d2010-06-18 19:06:50 -070080 static const char* digits = "0123456789abcdef";
81
Kenny Root7b18a7b2010-03-15 13:13:41 -070082 unsigned char sig[MD5_DIGEST_LENGTH];
83
Kenny Rootacc9e7d2010-06-18 19:06:50 -070084 if (buffer == NULL) {
85 SLOGE("Destination buffer is NULL");
86 errno = ESPIPE;
87 return NULL;
88 } else if (id == NULL) {
89 SLOGE("Source buffer is NULL");
90 errno = ESPIPE;
91 return NULL;
92 } else if (len < MD5_ASCII_LENGTH_PLUS_NULL) {
93 SLOGE("Target hash buffer size < %d bytes (%d)",
94 MD5_ASCII_LENGTH_PLUS_NULL, len);
San Mehatd9a4e352010-03-12 13:32:47 -080095 errno = ESPIPE;
96 return NULL;
97 }
Kenny Root7b18a7b2010-03-15 13:13:41 -070098
99 MD5(reinterpret_cast<const unsigned char*>(id), strlen(id), sig);
San Mehatd9a4e352010-03-12 13:32:47 -0800100
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700101 char *p = buffer;
Kenny Root7b18a7b2010-03-15 13:13:41 -0700102 for (int i = 0; i < MD5_DIGEST_LENGTH; i++) {
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700103 *p++ = digits[sig[i] >> 4];
104 *p++ = digits[sig[i] & 0x0F];
San Mehatd9a4e352010-03-12 13:32:47 -0800105 }
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700106 *p = '\0';
San Mehatd9a4e352010-03-12 13:32:47 -0800107
108 return buffer;
109}
110
111void VolumeManager::setDebug(bool enable) {
112 mDebug = enable;
113 VolumeCollection::iterator it;
114 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
115 (*it)->setDebug(enable);
116 }
117}
118
San Mehatf1b736b2009-10-10 17:22:08 -0700119int VolumeManager::start() {
120 return 0;
121}
122
123int VolumeManager::stop() {
124 return 0;
125}
126
127int VolumeManager::addVolume(Volume *v) {
128 mVolumes->push_back(v);
129 return 0;
130}
131
San Mehatfd7f5872009-10-12 11:32:47 -0700132void VolumeManager::handleBlockEvent(NetlinkEvent *evt) {
133 const char *devpath = evt->findParam("DEVPATH");
San Mehatf1b736b2009-10-10 17:22:08 -0700134
San Mehatfd7f5872009-10-12 11:32:47 -0700135 /* Lookup a volume to handle this device */
San Mehatf1b736b2009-10-10 17:22:08 -0700136 VolumeCollection::iterator it;
137 bool hit = false;
138 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
San Mehatfd7f5872009-10-12 11:32:47 -0700139 if (!(*it)->handleBlockEvent(evt)) {
San Mehata2677e42009-12-13 10:40:18 -0800140#ifdef NETLINK_DEBUG
San Mehat97ac40e2010-03-24 10:24:19 -0700141 SLOGD("Device '%s' event handled by volume %s\n", devpath, (*it)->getLabel());
San Mehata2677e42009-12-13 10:40:18 -0800142#endif
San Mehatf1b736b2009-10-10 17:22:08 -0700143 hit = true;
San Mehatf1b736b2009-10-10 17:22:08 -0700144 break;
145 }
146 }
147
148 if (!hit) {
San Mehata2677e42009-12-13 10:40:18 -0800149#ifdef NETLINK_DEBUG
San Mehat97ac40e2010-03-24 10:24:19 -0700150 SLOGW("No volumes handled block event for '%s'", devpath);
San Mehata2677e42009-12-13 10:40:18 -0800151#endif
San Mehatf1b736b2009-10-10 17:22:08 -0700152 }
153}
154
San Mehatf1b736b2009-10-10 17:22:08 -0700155int VolumeManager::listVolumes(SocketClient *cli) {
156 VolumeCollection::iterator i;
157
158 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
159 char *buffer;
160 asprintf(&buffer, "%s %s %d",
161 (*i)->getLabel(), (*i)->getMountpoint(),
162 (*i)->getState());
San Mehata2677e42009-12-13 10:40:18 -0800163 cli->sendMsg(ResponseCode::VolumeListResult, buffer, false);
San Mehatf1b736b2009-10-10 17:22:08 -0700164 free(buffer);
165 }
San Mehata2677e42009-12-13 10:40:18 -0800166 cli->sendMsg(ResponseCode::CommandOkay, "Volumes listed.", false);
San Mehatf1b736b2009-10-10 17:22:08 -0700167 return 0;
168}
San Mehat49e2bce2009-10-12 16:29:01 -0700169
San Mehata2677e42009-12-13 10:40:18 -0800170int VolumeManager::formatVolume(const char *label) {
171 Volume *v = lookupVolume(label);
172
173 if (!v) {
174 errno = ENOENT;
175 return -1;
176 }
177
Ken Sumrall3b170052011-07-11 15:38:57 -0700178 if (mVolManagerDisabled) {
179 errno = EBUSY;
180 return -1;
181 }
182
San Mehata2677e42009-12-13 10:40:18 -0800183 return v->formatVol();
184}
185
Kenny Root508c0e12010-07-12 09:59:49 -0700186int VolumeManager::getObbMountPath(const char *sourceFile, char *mountPath, int mountPathLen) {
187 char idHash[33];
188 if (!asecHash(sourceFile, idHash, sizeof(idHash))) {
189 SLOGE("Hash of '%s' failed (%s)", sourceFile, strerror(errno));
190 return -1;
191 }
192
193 memset(mountPath, 0, mountPathLen);
194 snprintf(mountPath, mountPathLen, "%s/%s", Volume::LOOPDIR, idHash);
195
196 if (access(mountPath, F_OK)) {
197 errno = ENOENT;
198 return -1;
199 }
200
201 return 0;
202}
203
San Mehata19b2502010-01-06 10:33:53 -0800204int VolumeManager::getAsecMountPath(const char *id, char *buffer, int maxlen) {
San Mehat88ac2c02010-03-23 11:15:58 -0700205 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700206
207 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
208 SLOGE("Couldn't find ASEC %s", id);
209 return -1;
210 }
San Mehat88ac2c02010-03-23 11:15:58 -0700211
212 memset(buffer, 0, maxlen);
213 if (access(asecFileName, F_OK)) {
214 errno = ENOENT;
215 return -1;
216 }
San Mehata19b2502010-01-06 10:33:53 -0800217
San Mehat3bb60202010-02-19 18:14:36 -0800218 snprintf(buffer, maxlen, "%s/%s", Volume::ASECDIR, id);
San Mehata19b2502010-01-06 10:33:53 -0800219 return 0;
220}
221
Dianne Hackborn736910c2011-06-27 13:37:07 -0700222int VolumeManager::getAsecFilesystemPath(const char *id, char *buffer, int maxlen) {
223 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700224
225 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
226 SLOGE("Couldn't find ASEC %s", id);
227 return -1;
228 }
Dianne Hackborn736910c2011-06-27 13:37:07 -0700229
230 memset(buffer, 0, maxlen);
231 if (access(asecFileName, F_OK)) {
232 errno = ENOENT;
233 return -1;
234 }
235
236 snprintf(buffer, maxlen, "%s", asecFileName);
237 return 0;
238}
239
Kenny Root344ca102012-04-03 17:23:01 -0700240int VolumeManager::createAsec(const char *id, unsigned int numSectors, const char *fstype,
241 const char *key, const int ownerUid, bool isExternal) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800242 struct asec_superblock sb;
243 memset(&sb, 0, sizeof(sb));
244
Kenny Root344ca102012-04-03 17:23:01 -0700245 const bool wantFilesystem = strcmp(fstype, "none");
246 bool usingExt4 = false;
247 if (wantFilesystem) {
248 usingExt4 = !strcmp(fstype, "ext4");
249 if (usingExt4) {
250 sb.c_opts |= ASEC_SB_C_OPTS_EXT4;
251 } else if (strcmp(fstype, "fat")) {
252 SLOGE("Invalid filesystem type %s", fstype);
253 errno = EINVAL;
254 return -1;
255 }
256 }
257
San Mehatfcf24fe2010-03-03 12:37:32 -0800258 sb.magic = ASEC_SB_MAGIC;
259 sb.ver = ASEC_SB_VER;
San Mehata19b2502010-01-06 10:33:53 -0800260
San Mehatd31e3802010-02-18 08:37:45 -0800261 if (numSectors < ((1024*1024)/512)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700262 SLOGE("Invalid container size specified (%d sectors)", numSectors);
San Mehatd31e3802010-02-18 08:37:45 -0800263 errno = EINVAL;
264 return -1;
265 }
266
San Mehata19b2502010-01-06 10:33:53 -0800267 if (lookupVolume(id)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700268 SLOGE("ASEC id '%s' currently exists", id);
San Mehata19b2502010-01-06 10:33:53 -0800269 errno = EADDRINUSE;
270 return -1;
271 }
272
273 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700274
275 if (!findAsec(id, asecFileName, sizeof(asecFileName))) {
276 SLOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
277 asecFileName, strerror(errno));
278 errno = EADDRINUSE;
279 return -1;
280 }
281
282 const char *asecDir = isExternal ? Volume::SEC_ASECDIR_EXT : Volume::SEC_ASECDIR_INT;
283
284 snprintf(asecFileName, sizeof(asecFileName), "%s/%s.asec", asecDir, id);
San Mehata19b2502010-01-06 10:33:53 -0800285
286 if (!access(asecFileName, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700287 SLOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
Kenny Root344ca102012-04-03 17:23:01 -0700288 asecFileName, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800289 errno = EADDRINUSE;
290 return -1;
291 }
292
San Mehatfcf24fe2010-03-03 12:37:32 -0800293 /*
294 * Add some headroom
295 */
296 unsigned fatSize = (((numSectors * 4) / 512) + 1) * 2;
297 unsigned numImgSectors = numSectors + fatSize + 2;
298
299 if (numImgSectors % 63) {
300 numImgSectors += (63 - (numImgSectors % 63));
301 }
302
303 // Add +1 for our superblock which is at the end
304 if (Loop::createImageFile(asecFileName, numImgSectors + 1)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700305 SLOGE("ASEC image file creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800306 return -1;
307 }
308
San Mehatd9a4e352010-03-12 13:32:47 -0800309 char idHash[33];
310 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700311 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -0800312 unlink(asecFileName);
313 return -1;
314 }
315
San Mehata19b2502010-01-06 10:33:53 -0800316 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -0800317 if (Loop::create(idHash, asecFileName, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700318 SLOGE("ASEC loop device creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800319 unlink(asecFileName);
320 return -1;
321 }
322
San Mehatb78a32c2010-01-10 13:02:12 -0800323 char dmDevice[255];
324 bool cleanupDm = false;
San Mehata19b2502010-01-06 10:33:53 -0800325
San Mehatb78a32c2010-01-10 13:02:12 -0800326 if (strcmp(key, "none")) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800327 // XXX: This is all we support for now
328 sb.c_cipher = ASEC_SB_C_CIPHER_TWOFISH;
San Mehatd9a4e352010-03-12 13:32:47 -0800329 if (Devmapper::create(idHash, loopDevice, key, numImgSectors, dmDevice,
San Mehatb78a32c2010-01-10 13:02:12 -0800330 sizeof(dmDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700331 SLOGE("ASEC device mapping failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800332 Loop::destroyByDevice(loopDevice);
333 unlink(asecFileName);
334 return -1;
335 }
336 cleanupDm = true;
337 } else {
San Mehatfcf24fe2010-03-03 12:37:32 -0800338 sb.c_cipher = ASEC_SB_C_CIPHER_NONE;
San Mehatb78a32c2010-01-10 13:02:12 -0800339 strcpy(dmDevice, loopDevice);
340 }
341
San Mehatfcf24fe2010-03-03 12:37:32 -0800342 /*
343 * Drop down the superblock at the end of the file
344 */
345
346 int sbfd = open(loopDevice, O_RDWR);
347 if (sbfd < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700348 SLOGE("Failed to open new DM device for superblock write (%s)", strerror(errno));
San Mehatfcf24fe2010-03-03 12:37:32 -0800349 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800350 Devmapper::destroy(idHash);
San Mehatfcf24fe2010-03-03 12:37:32 -0800351 }
352 Loop::destroyByDevice(loopDevice);
353 unlink(asecFileName);
354 return -1;
355 }
356
357 if (lseek(sbfd, (numImgSectors * 512), SEEK_SET) < 0) {
358 close(sbfd);
San Mehat97ac40e2010-03-24 10:24:19 -0700359 SLOGE("Failed to lseek for superblock (%s)", strerror(errno));
San Mehatfcf24fe2010-03-03 12:37:32 -0800360 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800361 Devmapper::destroy(idHash);
San Mehatfcf24fe2010-03-03 12:37:32 -0800362 }
363 Loop::destroyByDevice(loopDevice);
364 unlink(asecFileName);
365 return -1;
366 }
367
368 if (write(sbfd, &sb, sizeof(sb)) != sizeof(sb)) {
369 close(sbfd);
San Mehat97ac40e2010-03-24 10:24:19 -0700370 SLOGE("Failed to write superblock (%s)", strerror(errno));
San Mehatfcf24fe2010-03-03 12:37:32 -0800371 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800372 Devmapper::destroy(idHash);
San Mehatfcf24fe2010-03-03 12:37:32 -0800373 }
374 Loop::destroyByDevice(loopDevice);
375 unlink(asecFileName);
376 return -1;
377 }
378 close(sbfd);
379
Kenny Root344ca102012-04-03 17:23:01 -0700380 if (wantFilesystem) {
381 int formatStatus;
382 if (usingExt4) {
383 formatStatus = Ext4::format(dmDevice);
384 } else {
385 formatStatus = Fat::format(dmDevice, numImgSectors);
San Mehatb78a32c2010-01-10 13:02:12 -0800386 }
San Mehata19b2502010-01-06 10:33:53 -0800387
Kenny Root344ca102012-04-03 17:23:01 -0700388 if (formatStatus < 0) {
389 SLOGE("ASEC fs format failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800390 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800391 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -0800392 }
San Mehateb13a902010-01-07 12:12:50 -0800393 Loop::destroyByDevice(loopDevice);
394 unlink(asecFileName);
395 return -1;
396 }
Kenny Root344ca102012-04-03 17:23:01 -0700397
San Mehata1091cb2010-02-28 20:17:20 -0800398 char mountPoint[255];
San Mehata19b2502010-01-06 10:33:53 -0800399
San Mehata1091cb2010-02-28 20:17:20 -0800400 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
Kenny Root344ca102012-04-03 17:23:01 -0700401 if (mkdir(mountPoint, 0000)) {
San Mehata1091cb2010-02-28 20:17:20 -0800402 if (errno != EEXIST) {
San Mehat97ac40e2010-03-24 10:24:19 -0700403 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehata1091cb2010-02-28 20:17:20 -0800404 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800405 Devmapper::destroy(idHash);
San Mehata1091cb2010-02-28 20:17:20 -0800406 }
407 Loop::destroyByDevice(loopDevice);
408 unlink(asecFileName);
409 return -1;
410 }
San Mehatb78a32c2010-01-10 13:02:12 -0800411 }
San Mehata1091cb2010-02-28 20:17:20 -0800412
Kenny Root344ca102012-04-03 17:23:01 -0700413 int mountStatus;
414 if (usingExt4) {
415 mountStatus = Ext4::doMount(dmDevice, mountPoint, false, false, false);
416 } else {
417 mountStatus = Fat::doMount(dmDevice, mountPoint, false, false, false, ownerUid, 0, 0000,
418 false);
419 }
420
421 if (mountStatus) {
San Mehat97ac40e2010-03-24 10:24:19 -0700422 SLOGE("ASEC FAT mount failed (%s)", strerror(errno));
San Mehata1091cb2010-02-28 20:17:20 -0800423 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800424 Devmapper::destroy(idHash);
San Mehata1091cb2010-02-28 20:17:20 -0800425 }
426 Loop::destroyByDevice(loopDevice);
427 unlink(asecFileName);
428 return -1;
429 }
Kenny Root344ca102012-04-03 17:23:01 -0700430
431 if (usingExt4) {
432 int dirfd = open(mountPoint, O_DIRECTORY);
433 if (dirfd >= 0) {
434 if (fchown(dirfd, ownerUid, AID_SYSTEM)
435 || fchmod(dirfd, S_IRUSR | S_IWUSR | S_IXUSR | S_ISGID | S_IRGRP | S_IXGRP)) {
436 SLOGI("Cannot chown/chmod new ASEC mount point %s", mountPoint);
437 }
438 close(dirfd);
439 }
440 }
San Mehata1091cb2010-02-28 20:17:20 -0800441 } else {
San Mehat97ac40e2010-03-24 10:24:19 -0700442 SLOGI("Created raw secure container %s (no filesystem)", id);
San Mehata19b2502010-01-06 10:33:53 -0800443 }
San Mehat88705162010-01-15 09:26:28 -0800444
Kenny Rootcbacf782010-09-24 15:11:48 -0700445 mActiveContainers->push_back(new ContainerData(strdup(id), ASEC));
San Mehata19b2502010-01-06 10:33:53 -0800446 return 0;
447}
448
449int VolumeManager::finalizeAsec(const char *id) {
450 char asecFileName[255];
451 char loopDevice[255];
452 char mountPoint[255];
453
Kenny Root344ca102012-04-03 17:23:01 -0700454 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
455 SLOGE("Couldn't find ASEC %s", id);
456 return -1;
457 }
San Mehata19b2502010-01-06 10:33:53 -0800458
San Mehatd9a4e352010-03-12 13:32:47 -0800459 char idHash[33];
460 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700461 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -0800462 return -1;
463 }
464
465 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700466 SLOGE("Unable to finalize %s (%s)", id, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800467 return -1;
468 }
469
Kenny Root344ca102012-04-03 17:23:01 -0700470 unsigned int nr_sec = 0;
471 struct asec_superblock sb;
472
473 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
474 return -1;
475 }
476
San Mehat3bb60202010-02-19 18:14:36 -0800477 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
Kenny Root344ca102012-04-03 17:23:01 -0700478
479 int result = 0;
480 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4) {
481 result = Ext4::doMount(loopDevice, mountPoint, true, true, true);
482 } else {
483 result = Fat::doMount(loopDevice, mountPoint, true, true, true, 0, 0, 0227, false);
484 }
485
486 if (result) {
San Mehat97ac40e2010-03-24 10:24:19 -0700487 SLOGE("ASEC finalize mount failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800488 return -1;
489 }
490
San Mehatd9a4e352010-03-12 13:32:47 -0800491 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700492 SLOGD("ASEC %s finalized", id);
San Mehatd9a4e352010-03-12 13:32:47 -0800493 }
San Mehata19b2502010-01-06 10:33:53 -0800494 return 0;
495}
496
Kenny Root344ca102012-04-03 17:23:01 -0700497int VolumeManager::fixupAsecPermissions(const char *id, gid_t gid, const char* filename) {
498 char asecFileName[255];
499 char loopDevice[255];
500 char mountPoint[255];
501
502 if (gid < AID_APP) {
503 SLOGE("Group ID is not in application range");
504 return -1;
505 }
506
507 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
508 SLOGE("Couldn't find ASEC %s", id);
509 return -1;
510 }
511
512 char idHash[33];
513 if (!asecHash(id, idHash, sizeof(idHash))) {
514 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
515 return -1;
516 }
517
518 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
519 SLOGE("Unable fix permissions during lookup on %s (%s)", id, strerror(errno));
520 return -1;
521 }
522
523 unsigned int nr_sec = 0;
524 struct asec_superblock sb;
525
526 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
527 return -1;
528 }
529
530 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
531
532 int result = 0;
533 if ((sb.c_opts & ASEC_SB_C_OPTS_EXT4) == 0) {
534 return 0;
535 }
536
537 int ret = Ext4::doMount(loopDevice, mountPoint,
538 false /* read-only */,
539 true /* remount */,
540 false /* executable */);
541 if (ret) {
542 SLOGE("Unable remount to fix permissions for %s (%s)", id, strerror(errno));
543 return -1;
544 }
545
546 char *paths[] = { mountPoint, NULL };
547
548 FTS *fts = fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL);
549 if (fts) {
550 // Traverse the entire hierarchy and chown to system UID.
551 for (FTSENT *ftsent = fts_read(fts); ftsent != NULL; ftsent = fts_read(fts)) {
552 // We don't care about the lost+found directory.
553 if (!strcmp(ftsent->fts_name, "lost+found")) {
554 continue;
555 }
556
557 /*
558 * There can only be one file marked as private right now.
559 * This should be more robust, but it satisfies the requirements
560 * we have for right now.
561 */
562 const bool privateFile = !strcmp(ftsent->fts_name, filename);
563
564 int fd = open(ftsent->fts_accpath, O_NOFOLLOW);
565 if (fd < 0) {
566 SLOGE("Couldn't open file %s: %s", ftsent->fts_accpath, strerror(errno));
567 result = -1;
568 continue;
569 }
570
571 result |= fchown(fd, AID_SYSTEM, privateFile? gid : AID_SYSTEM);
572
573 if (ftsent->fts_info & FTS_D) {
Kenny Root1a673c82012-05-10 16:45:29 -0700574 result |= fchmod(fd, 0755);
Kenny Root348c8ab2012-05-10 15:39:53 -0700575 } else if (ftsent->fts_info & FTS_F) {
Kenny Root344ca102012-04-03 17:23:01 -0700576 result |= fchmod(fd, privateFile ? 0640 : 0644);
577 }
578 close(fd);
579 }
580 fts_close(fts);
581
582 // Finally make the directory readable by everyone.
583 int dirfd = open(mountPoint, O_DIRECTORY);
584 if (dirfd < 0 || fchmod(dirfd, 0755)) {
585 SLOGE("Couldn't change owner of existing directory %s: %s", mountPoint, strerror(errno));
586 result |= -1;
587 }
588 close(dirfd);
589 } else {
590 result |= -1;
591 }
592
593 result |= Ext4::doMount(loopDevice, mountPoint,
594 true /* read-only */,
595 true /* remount */,
596 true /* execute */);
597
598 if (result) {
599 SLOGE("ASEC fix permissions failed (%s)", strerror(errno));
600 return -1;
601 }
602
603 if (mDebug) {
604 SLOGD("ASEC %s permissions fixed", id);
605 }
606 return 0;
607}
608
San Mehat048b0802010-01-23 08:17:06 -0800609int VolumeManager::renameAsec(const char *id1, const char *id2) {
Kenny Root344ca102012-04-03 17:23:01 -0700610 char asecFilename1[255];
San Mehat048b0802010-01-23 08:17:06 -0800611 char *asecFilename2;
612 char mountPoint[255];
613
Kenny Root344ca102012-04-03 17:23:01 -0700614 const char *dir;
615
616 if (findAsec(id1, asecFilename1, sizeof(asecFilename1), &dir)) {
617 SLOGE("Couldn't find ASEC %s", id1);
618 return -1;
619 }
620
621 asprintf(&asecFilename2, "%s/%s.asec", dir, id2);
San Mehat048b0802010-01-23 08:17:06 -0800622
San Mehat3bb60202010-02-19 18:14:36 -0800623 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id1);
San Mehat048b0802010-01-23 08:17:06 -0800624 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700625 SLOGW("Rename attempt when src mounted");
San Mehat048b0802010-01-23 08:17:06 -0800626 errno = EBUSY;
627 goto out_err;
628 }
629
San Mehat96956ed2010-02-24 08:42:51 -0800630 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id2);
631 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700632 SLOGW("Rename attempt when dst mounted");
San Mehat96956ed2010-02-24 08:42:51 -0800633 errno = EBUSY;
634 goto out_err;
635 }
636
San Mehat048b0802010-01-23 08:17:06 -0800637 if (!access(asecFilename2, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700638 SLOGE("Rename attempt when dst exists");
San Mehat048b0802010-01-23 08:17:06 -0800639 errno = EADDRINUSE;
640 goto out_err;
641 }
642
643 if (rename(asecFilename1, asecFilename2)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700644 SLOGE("Rename of '%s' to '%s' failed (%s)", asecFilename1, asecFilename2, strerror(errno));
San Mehat048b0802010-01-23 08:17:06 -0800645 goto out_err;
646 }
647
San Mehat048b0802010-01-23 08:17:06 -0800648 free(asecFilename2);
649 return 0;
650
651out_err:
San Mehat048b0802010-01-23 08:17:06 -0800652 free(asecFilename2);
653 return -1;
654}
655
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700656#define UNMOUNT_RETRIES 5
657#define UNMOUNT_SLEEP_BETWEEN_RETRY_MS (1000 * 1000)
San Mehat4ba89482010-02-18 09:00:18 -0800658int VolumeManager::unmountAsec(const char *id, bool force) {
San Mehata19b2502010-01-06 10:33:53 -0800659 char asecFileName[255];
660 char mountPoint[255];
661
Kenny Root344ca102012-04-03 17:23:01 -0700662 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
663 SLOGE("Couldn't find ASEC %s", id);
664 return -1;
665 }
666
San Mehat3bb60202010-02-19 18:14:36 -0800667 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
San Mehata19b2502010-01-06 10:33:53 -0800668
San Mehatd9a4e352010-03-12 13:32:47 -0800669 char idHash[33];
670 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700671 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -0800672 return -1;
673 }
674
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700675 return unmountLoopImage(id, idHash, asecFileName, mountPoint, force);
676}
677
Kenny Root508c0e12010-07-12 09:59:49 -0700678int VolumeManager::unmountObb(const char *fileName, bool force) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700679 char mountPoint[255];
680
681 char idHash[33];
682 if (!asecHash(fileName, idHash, sizeof(idHash))) {
683 SLOGE("Hash of '%s' failed (%s)", fileName, strerror(errno));
684 return -1;
685 }
686
687 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::LOOPDIR, idHash);
688
689 return unmountLoopImage(fileName, idHash, fileName, mountPoint, force);
690}
691
692int VolumeManager::unmountLoopImage(const char *id, const char *idHash,
693 const char *fileName, const char *mountPoint, bool force) {
San Mehat0586d542010-01-12 15:38:59 -0800694 if (!isMountpointMounted(mountPoint)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700695 SLOGE("Unmount request for %s when not mounted", id);
Kenny Root918e5f92010-09-30 18:00:52 -0700696 errno = ENOENT;
San Mehatb78a32c2010-01-10 13:02:12 -0800697 return -1;
698 }
San Mehat23969932010-01-09 07:08:06 -0800699
San Mehatb78a32c2010-01-10 13:02:12 -0800700 int i, rc;
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700701 for (i = 1; i <= UNMOUNT_RETRIES; i++) {
San Mehatb78a32c2010-01-10 13:02:12 -0800702 rc = umount(mountPoint);
703 if (!rc) {
704 break;
San Mehata19b2502010-01-06 10:33:53 -0800705 }
San Mehatb78a32c2010-01-10 13:02:12 -0800706 if (rc && (errno == EINVAL || errno == ENOENT)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700707 SLOGI("Container %s unmounted OK", id);
San Mehatb78a32c2010-01-10 13:02:12 -0800708 rc = 0;
709 break;
San Mehata19b2502010-01-06 10:33:53 -0800710 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700711 SLOGW("%s unmount attempt %d failed (%s)",
San Mehat8c940ef2010-02-13 14:19:53 -0800712 id, i, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800713
San Mehat4ba89482010-02-18 09:00:18 -0800714 int action = 0; // default is to just complain
715
716 if (force) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700717 if (i > (UNMOUNT_RETRIES - 2))
San Mehat4ba89482010-02-18 09:00:18 -0800718 action = 2; // SIGKILL
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700719 else if (i > (UNMOUNT_RETRIES - 3))
San Mehat4ba89482010-02-18 09:00:18 -0800720 action = 1; // SIGHUP
721 }
San Mehat8c940ef2010-02-13 14:19:53 -0800722
San Mehat586536c2010-02-16 17:12:00 -0800723 Process::killProcessesWithOpenFiles(mountPoint, action);
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700724 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
San Mehatb78a32c2010-01-10 13:02:12 -0800725 }
726
727 if (rc) {
San Mehat4ba89482010-02-18 09:00:18 -0800728 errno = EBUSY;
San Mehat97ac40e2010-03-24 10:24:19 -0700729 SLOGE("Failed to unmount container %s (%s)", id, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800730 return -1;
731 }
732
San Mehat12f4b892010-02-24 11:43:22 -0800733 int retries = 10;
734
735 while(retries--) {
736 if (!rmdir(mountPoint)) {
737 break;
738 }
739
San Mehat97ac40e2010-03-24 10:24:19 -0700740 SLOGW("Failed to rmdir %s (%s)", mountPoint, strerror(errno));
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700741 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
San Mehat12f4b892010-02-24 11:43:22 -0800742 }
743
744 if (!retries) {
San Mehat97ac40e2010-03-24 10:24:19 -0700745 SLOGE("Timed out trying to rmdir %s (%s)", mountPoint, strerror(errno));
San Mehatf5c61982010-02-03 11:04:46 -0800746 }
San Mehat88705162010-01-15 09:26:28 -0800747
San Mehatd9a4e352010-03-12 13:32:47 -0800748 if (Devmapper::destroy(idHash) && errno != ENXIO) {
San Mehat97ac40e2010-03-24 10:24:19 -0700749 SLOGE("Failed to destroy devmapper instance (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800750 }
751
752 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -0800753 if (!Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
San Mehata19b2502010-01-06 10:33:53 -0800754 Loop::destroyByDevice(loopDevice);
San Mehatd9a4e352010-03-12 13:32:47 -0800755 } else {
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700756 SLOGW("Failed to find loop device for {%s} (%s)", fileName, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800757 }
San Mehat88705162010-01-15 09:26:28 -0800758
759 AsecIdCollection::iterator it;
760 for (it = mActiveContainers->begin(); it != mActiveContainers->end(); ++it) {
Kenny Rootcbacf782010-09-24 15:11:48 -0700761 ContainerData* cd = *it;
762 if (!strcmp(cd->id, id)) {
San Mehat88705162010-01-15 09:26:28 -0800763 free(*it);
764 mActiveContainers->erase(it);
765 break;
766 }
767 }
768 if (it == mActiveContainers->end()) {
San Mehat97ac40e2010-03-24 10:24:19 -0700769 SLOGW("mActiveContainers is inconsistent!");
San Mehat88705162010-01-15 09:26:28 -0800770 }
San Mehatb78a32c2010-01-10 13:02:12 -0800771 return 0;
772}
773
San Mehat4ba89482010-02-18 09:00:18 -0800774int VolumeManager::destroyAsec(const char *id, bool force) {
San Mehatb78a32c2010-01-10 13:02:12 -0800775 char asecFileName[255];
776 char mountPoint[255];
777
Kenny Root344ca102012-04-03 17:23:01 -0700778 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
779 SLOGE("Couldn't find ASEC %s", id);
780 return -1;
781 }
782
San Mehat55013f72010-02-24 12:12:34 -0800783 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
San Mehatb78a32c2010-01-10 13:02:12 -0800784
San Mehat0586d542010-01-12 15:38:59 -0800785 if (isMountpointMounted(mountPoint)) {
San Mehatd9a4e352010-03-12 13:32:47 -0800786 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700787 SLOGD("Unmounting container before destroy");
San Mehatd9a4e352010-03-12 13:32:47 -0800788 }
San Mehat4ba89482010-02-18 09:00:18 -0800789 if (unmountAsec(id, force)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700790 SLOGE("Failed to unmount asec %s for destroy (%s)", id, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -0800791 return -1;
792 }
793 }
San Mehata19b2502010-01-06 10:33:53 -0800794
San Mehat0586d542010-01-12 15:38:59 -0800795 if (unlink(asecFileName)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700796 SLOGE("Failed to unlink asec '%s' (%s)", asecFileName, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -0800797 return -1;
798 }
San Mehata19b2502010-01-06 10:33:53 -0800799
San Mehatd9a4e352010-03-12 13:32:47 -0800800 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700801 SLOGD("ASEC %s destroyed", id);
San Mehatd9a4e352010-03-12 13:32:47 -0800802 }
San Mehata19b2502010-01-06 10:33:53 -0800803 return 0;
804}
805
Kenny Root344ca102012-04-03 17:23:01 -0700806bool VolumeManager::isAsecInDirectory(const char *dir, const char *asecName) const {
807 int dirfd = open(dir, O_DIRECTORY);
808 if (dirfd < 0) {
809 SLOGE("Couldn't open internal ASEC dir (%s)", strerror(errno));
810 return -1;
811 }
812
813 bool ret = false;
814
815 if (!faccessat(dirfd, asecName, F_OK, AT_SYMLINK_NOFOLLOW)) {
816 ret = true;
817 }
818
819 close(dirfd);
820
821 return ret;
822}
823
824int VolumeManager::findAsec(const char *id, char *asecPath, size_t asecPathLen,
825 const char **directory) const {
826 int dirfd, fd;
827 const int idLen = strlen(id);
828 char *asecName;
829
830 if (asprintf(&asecName, "%s.asec", id) < 0) {
831 SLOGE("Couldn't allocate string to write ASEC name");
832 return -1;
833 }
834
835 const char *dir;
836 if (isAsecInDirectory(Volume::SEC_ASECDIR_INT, asecName)) {
837 dir = Volume::SEC_ASECDIR_INT;
838 } else if (isAsecInDirectory(Volume::SEC_ASECDIR_EXT, asecName)) {
839 dir = Volume::SEC_ASECDIR_EXT;
840 } else {
841 free(asecName);
842 return -1;
843 }
844
845 if (directory != NULL) {
846 *directory = dir;
847 }
848
849 if (asecPath != NULL) {
850 int written = snprintf(asecPath, asecPathLen, "%s/%s", dir, asecName);
851 if (written < 0 || static_cast<size_t>(written) >= asecPathLen) {
852 free(asecName);
853 return -1;
854 }
855 }
856
857 free(asecName);
858 return 0;
859}
860
San Mehata19b2502010-01-06 10:33:53 -0800861int VolumeManager::mountAsec(const char *id, const char *key, int ownerUid) {
862 char asecFileName[255];
863 char mountPoint[255];
864
Kenny Root344ca102012-04-03 17:23:01 -0700865 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
866 SLOGE("Couldn't find ASEC %s", id);
867 return -1;
868 }
869
San Mehat3bb60202010-02-19 18:14:36 -0800870 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
San Mehata19b2502010-01-06 10:33:53 -0800871
872 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700873 SLOGE("ASEC %s already mounted", id);
San Mehata19b2502010-01-06 10:33:53 -0800874 errno = EBUSY;
875 return -1;
876 }
877
San Mehatd9a4e352010-03-12 13:32:47 -0800878 char idHash[33];
879 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700880 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -0800881 return -1;
882 }
Kenny Root7b18a7b2010-03-15 13:13:41 -0700883
San Mehata19b2502010-01-06 10:33:53 -0800884 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -0800885 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
886 if (Loop::create(idHash, asecFileName, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700887 SLOGE("ASEC loop device creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800888 return -1;
889 }
San Mehatd9a4e352010-03-12 13:32:47 -0800890 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700891 SLOGD("New loop device created at %s", loopDevice);
San Mehatd9a4e352010-03-12 13:32:47 -0800892 }
San Mehatb78a32c2010-01-10 13:02:12 -0800893 } else {
San Mehatd9a4e352010-03-12 13:32:47 -0800894 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700895 SLOGD("Found active loopback for %s at %s", asecFileName, loopDevice);
San Mehatd9a4e352010-03-12 13:32:47 -0800896 }
San Mehatb78a32c2010-01-10 13:02:12 -0800897 }
898
899 char dmDevice[255];
900 bool cleanupDm = false;
San Mehatfcf24fe2010-03-03 12:37:32 -0800901 int fd;
902 unsigned int nr_sec = 0;
San Mehatfcf24fe2010-03-03 12:37:32 -0800903 struct asec_superblock sb;
San Mehatfcf24fe2010-03-03 12:37:32 -0800904
Kenny Root344ca102012-04-03 17:23:01 -0700905 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
906 return -1;
907 }
San Mehatfcf24fe2010-03-03 12:37:32 -0800908
San Mehatd9a4e352010-03-12 13:32:47 -0800909 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700910 SLOGD("Container sb magic/ver (%.8x/%.2x)", sb.magic, sb.ver);
San Mehatd9a4e352010-03-12 13:32:47 -0800911 }
San Mehatfcf24fe2010-03-03 12:37:32 -0800912 if (sb.magic != ASEC_SB_MAGIC || sb.ver != ASEC_SB_VER) {
San Mehat97ac40e2010-03-24 10:24:19 -0700913 SLOGE("Bad container magic/version (%.8x/%.2x)", sb.magic, sb.ver);
San Mehatfcf24fe2010-03-03 12:37:32 -0800914 Loop::destroyByDevice(loopDevice);
915 errno = EMEDIUMTYPE;
916 return -1;
917 }
918 nr_sec--; // We don't want the devmapping to extend onto our superblock
919
San Mehatb78a32c2010-01-10 13:02:12 -0800920 if (strcmp(key, "none")) {
San Mehatd9a4e352010-03-12 13:32:47 -0800921 if (Devmapper::lookupActive(idHash, dmDevice, sizeof(dmDevice))) {
922 if (Devmapper::create(idHash, loopDevice, key, nr_sec,
San Mehatb78a32c2010-01-10 13:02:12 -0800923 dmDevice, sizeof(dmDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700924 SLOGE("ASEC device mapping failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800925 Loop::destroyByDevice(loopDevice);
926 return -1;
927 }
San Mehatd9a4e352010-03-12 13:32:47 -0800928 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700929 SLOGD("New devmapper instance created at %s", dmDevice);
San Mehatd9a4e352010-03-12 13:32:47 -0800930 }
San Mehatb78a32c2010-01-10 13:02:12 -0800931 } else {
San Mehatd9a4e352010-03-12 13:32:47 -0800932 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700933 SLOGD("Found active devmapper for %s at %s", asecFileName, dmDevice);
San Mehatd9a4e352010-03-12 13:32:47 -0800934 }
San Mehatb78a32c2010-01-10 13:02:12 -0800935 }
936 cleanupDm = true;
937 } else {
938 strcpy(dmDevice, loopDevice);
San Mehata19b2502010-01-06 10:33:53 -0800939 }
940
Kenny Root344ca102012-04-03 17:23:01 -0700941 if (mkdir(mountPoint, 0000)) {
San Mehatb78a32c2010-01-10 13:02:12 -0800942 if (errno != EEXIST) {
San Mehat97ac40e2010-03-24 10:24:19 -0700943 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800944 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800945 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -0800946 }
947 Loop::destroyByDevice(loopDevice);
948 return -1;
949 }
San Mehata19b2502010-01-06 10:33:53 -0800950 }
951
Kenny Rootcdc2a1c2012-05-03 13:49:46 -0700952 /*
953 * The device mapper node needs to be created. Sometimes it takes a
954 * while. Wait for up to 1 second. We could also inspect incoming uevents,
955 * but that would take more effort.
956 */
957 int tries = 25;
958 while (tries--) {
959 if (!access(dmDevice, F_OK) || errno != ENOENT) {
960 break;
961 }
962 usleep(40 * 1000);
963 }
964
Kenny Root344ca102012-04-03 17:23:01 -0700965 int result;
966 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4) {
967 result = Ext4::doMount(dmDevice, mountPoint, true, false, true);
968 } else {
969 result = Fat::doMount(dmDevice, mountPoint, true, false, true, ownerUid, 0, 0222, false);
970 }
971
972 if (result) {
San Mehat97ac40e2010-03-24 10:24:19 -0700973 SLOGE("ASEC mount failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800974 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800975 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -0800976 }
977 Loop::destroyByDevice(loopDevice);
San Mehata19b2502010-01-06 10:33:53 -0800978 return -1;
979 }
980
Kenny Rootcbacf782010-09-24 15:11:48 -0700981 mActiveContainers->push_back(new ContainerData(strdup(id), ASEC));
San Mehatd9a4e352010-03-12 13:32:47 -0800982 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700983 SLOGD("ASEC %s mounted", id);
San Mehatd9a4e352010-03-12 13:32:47 -0800984 }
San Mehata19b2502010-01-06 10:33:53 -0800985 return 0;
986}
987
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700988/**
989 * Mounts an image file <code>img</code>.
990 */
Kenny Root508c0e12010-07-12 09:59:49 -0700991int VolumeManager::mountObb(const char *img, const char *key, int ownerUid) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700992 char mountPoint[255];
993
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700994 char idHash[33];
995 if (!asecHash(img, idHash, sizeof(idHash))) {
996 SLOGE("Hash of '%s' failed (%s)", img, strerror(errno));
997 return -1;
998 }
999
1000 snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::LOOPDIR, idHash);
1001
1002 if (isMountpointMounted(mountPoint)) {
1003 SLOGE("Image %s already mounted", img);
1004 errno = EBUSY;
1005 return -1;
1006 }
1007
1008 char loopDevice[255];
1009 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
1010 if (Loop::create(idHash, img, loopDevice, sizeof(loopDevice))) {
1011 SLOGE("Image loop device creation failed (%s)", strerror(errno));
1012 return -1;
1013 }
1014 if (mDebug) {
1015 SLOGD("New loop device created at %s", loopDevice);
1016 }
1017 } else {
1018 if (mDebug) {
1019 SLOGD("Found active loopback for %s at %s", img, loopDevice);
1020 }
1021 }
1022
1023 char dmDevice[255];
1024 bool cleanupDm = false;
1025 int fd;
1026 unsigned int nr_sec = 0;
1027
1028 if ((fd = open(loopDevice, O_RDWR)) < 0) {
1029 SLOGE("Failed to open loopdevice (%s)", strerror(errno));
1030 Loop::destroyByDevice(loopDevice);
1031 return -1;
1032 }
1033
1034 if (ioctl(fd, BLKGETSIZE, &nr_sec)) {
1035 SLOGE("Failed to get loop size (%s)", strerror(errno));
1036 Loop::destroyByDevice(loopDevice);
1037 close(fd);
1038 return -1;
1039 }
1040
1041 close(fd);
1042
1043 if (strcmp(key, "none")) {
1044 if (Devmapper::lookupActive(idHash, dmDevice, sizeof(dmDevice))) {
1045 if (Devmapper::create(idHash, loopDevice, key, nr_sec,
1046 dmDevice, sizeof(dmDevice))) {
1047 SLOGE("ASEC device mapping failed (%s)", strerror(errno));
1048 Loop::destroyByDevice(loopDevice);
1049 return -1;
1050 }
1051 if (mDebug) {
1052 SLOGD("New devmapper instance created at %s", dmDevice);
1053 }
1054 } else {
1055 if (mDebug) {
1056 SLOGD("Found active devmapper for %s at %s", img, dmDevice);
1057 }
1058 }
1059 cleanupDm = true;
1060 } else {
1061 strcpy(dmDevice, loopDevice);
1062 }
1063
1064 if (mkdir(mountPoint, 0755)) {
1065 if (errno != EEXIST) {
1066 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
1067 if (cleanupDm) {
1068 Devmapper::destroy(idHash);
1069 }
1070 Loop::destroyByDevice(loopDevice);
1071 return -1;
1072 }
1073 }
1074
Kenny Roota3e06082010-08-27 08:31:35 -07001075 if (Fat::doMount(dmDevice, mountPoint, true, false, true, ownerUid, 0,
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001076 0227, false)) {
1077 SLOGE("Image mount failed (%s)", strerror(errno));
1078 if (cleanupDm) {
1079 Devmapper::destroy(idHash);
1080 }
1081 Loop::destroyByDevice(loopDevice);
1082 return -1;
1083 }
1084
Kenny Rootcbacf782010-09-24 15:11:48 -07001085 mActiveContainers->push_back(new ContainerData(strdup(img), OBB));
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001086 if (mDebug) {
1087 SLOGD("Image %s mounted", img);
1088 }
1089 return 0;
1090}
1091
San Mehat49e2bce2009-10-12 16:29:01 -07001092int VolumeManager::mountVolume(const char *label) {
1093 Volume *v = lookupVolume(label);
1094
1095 if (!v) {
1096 errno = ENOENT;
1097 return -1;
1098 }
1099
San Mehata2677e42009-12-13 10:40:18 -08001100 return v->mountVol();
1101}
1102
Kenny Root508c0e12010-07-12 09:59:49 -07001103int VolumeManager::listMountedObbs(SocketClient* cli) {
1104 char device[256];
1105 char mount_path[256];
1106 char rest[256];
1107 FILE *fp;
1108 char line[1024];
1109
1110 if (!(fp = fopen("/proc/mounts", "r"))) {
1111 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
1112 return -1;
1113 }
1114
1115 // Create a string to compare against that has a trailing slash
1116 int loopDirLen = sizeof(Volume::LOOPDIR);
1117 char loopDir[loopDirLen + 2];
1118 strcpy(loopDir, Volume::LOOPDIR);
1119 loopDir[loopDirLen++] = '/';
1120 loopDir[loopDirLen] = '\0';
1121
1122 while(fgets(line, sizeof(line), fp)) {
1123 line[strlen(line)-1] = '\0';
1124
1125 /*
1126 * Should look like:
1127 * /dev/block/loop0 /mnt/obb/fc99df1323fd36424f864dcb76b76d65 ...
1128 */
1129 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
1130
1131 if (!strncmp(mount_path, loopDir, loopDirLen)) {
1132 int fd = open(device, O_RDONLY);
1133 if (fd >= 0) {
1134 struct loop_info64 li;
1135 if (ioctl(fd, LOOP_GET_STATUS64, &li) >= 0) {
1136 cli->sendMsg(ResponseCode::AsecListResult,
1137 (const char*) li.lo_file_name, false);
1138 }
1139 close(fd);
1140 }
1141 }
1142 }
1143
1144 fclose(fp);
1145 return 0;
1146}
1147
San Mehateba65e92010-01-29 05:15:16 -08001148int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) {
1149 Volume *v = lookupVolume(label);
1150
1151 if (!v) {
1152 errno = ENOENT;
1153 return -1;
1154 }
1155
1156 if (strcmp(method, "ums")) {
1157 errno = ENOSYS;
1158 return -1;
1159 }
1160
1161 if (v->getState() != Volume::State_Shared) {
San Mehateba65e92010-01-29 05:15:16 -08001162 *enabled = false;
San Mehatb9aed742010-02-04 15:07:01 -08001163 } else {
1164 *enabled = true;
San Mehateba65e92010-01-29 05:15:16 -08001165 }
1166 return 0;
1167}
1168
San Mehata2677e42009-12-13 10:40:18 -08001169int VolumeManager::shareVolume(const char *label, const char *method) {
1170 Volume *v = lookupVolume(label);
1171
1172 if (!v) {
1173 errno = ENOENT;
1174 return -1;
1175 }
1176
1177 /*
1178 * Eventually, we'll want to support additional share back-ends,
1179 * some of which may work while the media is mounted. For now,
1180 * we just support UMS
1181 */
1182 if (strcmp(method, "ums")) {
1183 errno = ENOSYS;
1184 return -1;
1185 }
1186
1187 if (v->getState() == Volume::State_NoMedia) {
1188 errno = ENODEV;
1189 return -1;
1190 }
1191
San Mehat49e2bce2009-10-12 16:29:01 -07001192 if (v->getState() != Volume::State_Idle) {
San Mehata2677e42009-12-13 10:40:18 -08001193 // You need to unmount manually befoe sharing
San Mehat49e2bce2009-10-12 16:29:01 -07001194 errno = EBUSY;
1195 return -1;
1196 }
1197
Ken Sumrall3b170052011-07-11 15:38:57 -07001198 if (mVolManagerDisabled) {
1199 errno = EBUSY;
1200 return -1;
1201 }
1202
Mike Lockwood2dfe2972010-09-17 18:50:51 -04001203 dev_t d = v->getShareDevice();
San Mehata2677e42009-12-13 10:40:18 -08001204 if ((MAJOR(d) == 0) && (MINOR(d) == 0)) {
1205 // This volume does not support raw disk access
1206 errno = EINVAL;
1207 return -1;
1208 }
1209
1210 int fd;
1211 char nodepath[255];
1212 snprintf(nodepath,
1213 sizeof(nodepath), "/dev/block/vold/%d:%d",
1214 MAJOR(d), MINOR(d));
1215
Mike Lockwood97f2fc12011-06-07 10:51:38 -07001216 if ((fd = open(MASS_STORAGE_FILE_PATH, O_WRONLY)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001217 SLOGE("Unable to open ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001218 return -1;
1219 }
1220
1221 if (write(fd, nodepath, strlen(nodepath)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001222 SLOGE("Unable to write to ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001223 close(fd);
1224 return -1;
1225 }
1226
1227 close(fd);
1228 v->handleVolumeShared();
Mike Lockwooda28056b2010-10-28 15:21:24 -04001229 if (mUmsSharingCount++ == 0) {
1230 FILE* fp;
1231 mSavedDirtyRatio = -1; // in case we fail
1232 if ((fp = fopen("/proc/sys/vm/dirty_ratio", "r+"))) {
1233 char line[16];
1234 if (fgets(line, sizeof(line), fp) && sscanf(line, "%d", &mSavedDirtyRatio)) {
1235 fprintf(fp, "%d\n", mUmsDirtyRatio);
1236 } else {
1237 SLOGE("Failed to read dirty_ratio (%s)", strerror(errno));
1238 }
1239 fclose(fp);
1240 } else {
1241 SLOGE("Failed to open /proc/sys/vm/dirty_ratio (%s)", strerror(errno));
1242 }
1243 }
San Mehata2677e42009-12-13 10:40:18 -08001244 return 0;
1245}
1246
1247int VolumeManager::unshareVolume(const char *label, const char *method) {
1248 Volume *v = lookupVolume(label);
1249
1250 if (!v) {
1251 errno = ENOENT;
1252 return -1;
1253 }
1254
1255 if (strcmp(method, "ums")) {
1256 errno = ENOSYS;
1257 return -1;
1258 }
1259
1260 if (v->getState() != Volume::State_Shared) {
1261 errno = EINVAL;
1262 return -1;
1263 }
1264
San Mehata2677e42009-12-13 10:40:18 -08001265 int fd;
Mike Lockwood97f2fc12011-06-07 10:51:38 -07001266 if ((fd = open(MASS_STORAGE_FILE_PATH, O_WRONLY)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001267 SLOGE("Unable to open ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001268 return -1;
1269 }
1270
1271 char ch = 0;
1272 if (write(fd, &ch, 1) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001273 SLOGE("Unable to write to ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001274 close(fd);
1275 return -1;
1276 }
1277
1278 close(fd);
1279 v->handleVolumeUnshared();
Mike Lockwooda28056b2010-10-28 15:21:24 -04001280 if (--mUmsSharingCount == 0 && mSavedDirtyRatio != -1) {
1281 FILE* fp;
1282 if ((fp = fopen("/proc/sys/vm/dirty_ratio", "r+"))) {
1283 fprintf(fp, "%d\n", mSavedDirtyRatio);
1284 fclose(fp);
1285 } else {
1286 SLOGE("Failed to open /proc/sys/vm/dirty_ratio (%s)", strerror(errno));
1287 }
1288 mSavedDirtyRatio = -1;
1289 }
San Mehata2677e42009-12-13 10:40:18 -08001290 return 0;
San Mehat49e2bce2009-10-12 16:29:01 -07001291}
1292
Ken Sumrall3b170052011-07-11 15:38:57 -07001293extern "C" int vold_disableVol(const char *label) {
Ken Sumrall29d8da82011-05-18 17:20:07 -07001294 VolumeManager *vm = VolumeManager::Instance();
Ken Sumrall3b170052011-07-11 15:38:57 -07001295 vm->disableVolumeManager();
1296 vm->unshareVolume(label, "ums");
Ken Sumrall0b8b5972011-08-31 16:14:23 -07001297 return vm->unmountVolume(label, true, false);
Ken Sumrall29d8da82011-05-18 17:20:07 -07001298}
1299
1300extern "C" int vold_getNumDirectVolumes(void) {
1301 VolumeManager *vm = VolumeManager::Instance();
1302 return vm->getNumDirectVolumes();
1303}
1304
1305int VolumeManager::getNumDirectVolumes(void) {
1306 VolumeCollection::iterator i;
1307 int n=0;
1308
1309 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
1310 if ((*i)->getShareDevice() != (dev_t)0) {
1311 n++;
1312 }
1313 }
1314 return n;
1315}
1316
1317extern "C" int vold_getDirectVolumeList(struct volume_info *vol_list) {
1318 VolumeManager *vm = VolumeManager::Instance();
1319 return vm->getDirectVolumeList(vol_list);
1320}
1321
1322int VolumeManager::getDirectVolumeList(struct volume_info *vol_list) {
1323 VolumeCollection::iterator i;
1324 int n=0;
1325 dev_t d;
1326
1327 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
1328 if ((d=(*i)->getShareDevice()) != (dev_t)0) {
1329 (*i)->getVolInfo(&vol_list[n]);
1330 snprintf(vol_list[n].blk_dev, sizeof(vol_list[n].blk_dev),
1331 "/dev/block/vold/%d:%d",MAJOR(d), MINOR(d));
1332 n++;
1333 }
1334 }
1335
1336 return 0;
1337}
1338
Ken Sumrall0b8b5972011-08-31 16:14:23 -07001339int VolumeManager::unmountVolume(const char *label, bool force, bool revert) {
San Mehat49e2bce2009-10-12 16:29:01 -07001340 Volume *v = lookupVolume(label);
1341
1342 if (!v) {
1343 errno = ENOENT;
1344 return -1;
1345 }
1346
San Mehata2677e42009-12-13 10:40:18 -08001347 if (v->getState() == Volume::State_NoMedia) {
1348 errno = ENODEV;
1349 return -1;
1350 }
1351
San Mehat49e2bce2009-10-12 16:29:01 -07001352 if (v->getState() != Volume::State_Mounted) {
San Mehat97ac40e2010-03-24 10:24:19 -07001353 SLOGW("Attempt to unmount volume which isn't mounted (%d)\n",
San Mehata2677e42009-12-13 10:40:18 -08001354 v->getState());
San Mehat49e2bce2009-10-12 16:29:01 -07001355 errno = EBUSY;
Ken Sumrall319b1042011-06-14 14:01:55 -07001356 return UNMOUNT_NOT_MOUNTED_ERR;
San Mehat49e2bce2009-10-12 16:29:01 -07001357 }
1358
San Mehat1a06eda2010-04-15 12:58:50 -07001359 cleanupAsec(v, force);
San Mehat88705162010-01-15 09:26:28 -08001360
Ken Sumrall0b8b5972011-08-31 16:14:23 -07001361 return v->unmountVol(force, revert);
San Mehat49e2bce2009-10-12 16:29:01 -07001362}
1363
Ken Sumrall425524d2012-06-14 20:55:28 -07001364extern "C" int vold_unmountAllAsecs(void) {
1365 int rc;
1366
1367 VolumeManager *vm = VolumeManager::Instance();
1368 rc = vm->unmountAllAsecsInDir(Volume::SEC_ASECDIR_EXT);
1369 if (vm->unmountAllAsecsInDir(Volume::SEC_ASECDIR_INT)) {
1370 rc = -1;
1371 }
1372 return rc;
1373}
1374
1375#define ID_BUF_LEN 256
1376#define ASEC_SUFFIX ".asec"
1377#define ASEC_SUFFIX_LEN (sizeof(ASEC_SUFFIX) - 1)
1378int VolumeManager::unmountAllAsecsInDir(const char *directory) {
1379 DIR *d = opendir(directory);
1380 int rc = 0;
1381
1382 if (!d) {
1383 SLOGE("Could not open asec dir %s", directory);
1384 return -1;
1385 }
1386
1387 size_t dirent_len = offsetof(struct dirent, d_name) +
1388 pathconf(directory, _PC_NAME_MAX) + 1;
1389
1390 struct dirent *dent = (struct dirent *) malloc(dirent_len);
1391 if (dent == NULL) {
1392 SLOGE("Failed to allocate memory for asec dir");
1393 return -1;
1394 }
1395
1396 struct dirent *result;
1397 while (!readdir_r(d, dent, &result) && result != NULL) {
1398 if (dent->d_name[0] == '.')
1399 continue;
1400 if (dent->d_type != DT_REG)
1401 continue;
1402 size_t name_len = strlen(dent->d_name);
1403 if (name_len > 5 && name_len < (ID_BUF_LEN + ASEC_SUFFIX_LEN - 1) &&
1404 !strcmp(&dent->d_name[name_len - 5], ASEC_SUFFIX)) {
1405 char id[ID_BUF_LEN];
1406 strlcpy(id, dent->d_name, name_len - 4);
1407 if (unmountAsec(id, true)) {
1408 /* Register the error, but try to unmount more asecs */
1409 rc = -1;
1410 }
1411 }
1412 }
1413 closedir(d);
1414
1415 free(dent);
1416
1417 return rc;
1418}
1419
San Mehata2677e42009-12-13 10:40:18 -08001420/*
1421 * Looks up a volume by it's label or mount-point
1422 */
San Mehat49e2bce2009-10-12 16:29:01 -07001423Volume *VolumeManager::lookupVolume(const char *label) {
1424 VolumeCollection::iterator i;
1425
1426 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
San Mehata2677e42009-12-13 10:40:18 -08001427 if (label[0] == '/') {
1428 if (!strcmp(label, (*i)->getMountpoint()))
1429 return (*i);
1430 } else {
1431 if (!strcmp(label, (*i)->getLabel()))
1432 return (*i);
1433 }
San Mehat49e2bce2009-10-12 16:29:01 -07001434 }
1435 return NULL;
1436}
San Mehata19b2502010-01-06 10:33:53 -08001437
1438bool VolumeManager::isMountpointMounted(const char *mp)
1439{
1440 char device[256];
1441 char mount_path[256];
1442 char rest[256];
1443 FILE *fp;
1444 char line[1024];
1445
1446 if (!(fp = fopen("/proc/mounts", "r"))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001447 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001448 return false;
1449 }
1450
1451 while(fgets(line, sizeof(line), fp)) {
1452 line[strlen(line)-1] = '\0';
1453 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
1454 if (!strcmp(mount_path, mp)) {
1455 fclose(fp);
1456 return true;
1457 }
San Mehata19b2502010-01-06 10:33:53 -08001458 }
1459
1460 fclose(fp);
1461 return false;
1462}
1463
San Mehat1a06eda2010-04-15 12:58:50 -07001464int VolumeManager::cleanupAsec(Volume *v, bool force) {
1465 while(mActiveContainers->size()) {
1466 AsecIdCollection::iterator it = mActiveContainers->begin();
Kenny Rootcbacf782010-09-24 15:11:48 -07001467 ContainerData* cd = *it;
1468 SLOGI("Unmounting ASEC %s (dependant on %s)", cd->id, v->getMountpoint());
1469 if (cd->type == ASEC) {
1470 if (unmountAsec(cd->id, force)) {
1471 SLOGE("Failed to unmount ASEC %s (%s)", cd->id, strerror(errno));
1472 return -1;
1473 }
1474 } else if (cd->type == OBB) {
1475 if (unmountObb(cd->id, force)) {
1476 SLOGE("Failed to unmount OBB %s (%s)", cd->id, strerror(errno));
1477 return -1;
1478 }
1479 } else {
1480 SLOGE("Unknown container type %d!", cd->type);
San Mehat1a06eda2010-04-15 12:58:50 -07001481 return -1;
1482 }
1483 }
1484 return 0;
1485}
1486