blob: da4deb61859608ed7d3ca1cf412523ca83c4091b [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 Sharkey71ebe152013-09-17 17:24:38 -070037#include <cutils/fs.h>
San Mehatf1b736b2009-10-10 17:22:08 -070038#include <cutils/log.h>
39
Robert Craigb9e3ba52014-02-04 10:53:00 -050040#include <selinux/android.h>
41
San Mehatfd7f5872009-10-12 11:32:47 -070042#include <sysutils/NetlinkEvent.h>
43
Kenny Root344ca102012-04-03 17:23:01 -070044#include <private/android_filesystem_config.h>
45
San Mehatf1b736b2009-10-10 17:22:08 -070046#include "VolumeManager.h"
San Mehatae10b912009-10-12 14:57:05 -070047#include "DirectVolume.h"
San Mehata2677e42009-12-13 10:40:18 -080048#include "ResponseCode.h"
San Mehata19b2502010-01-06 10:33:53 -080049#include "Loop.h"
Kenny Root344ca102012-04-03 17:23:01 -070050#include "Ext4.h"
San Mehata19b2502010-01-06 10:33:53 -080051#include "Fat.h"
San Mehatb78a32c2010-01-10 13:02:12 -080052#include "Devmapper.h"
San Mehat586536c2010-02-16 17:12:00 -080053#include "Process.h"
San Mehatfcf24fe2010-03-03 12:37:32 -080054#include "Asec.h"
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +090055#include "VoldUtil.h"
Ken Sumrall29d8da82011-05-18 17:20:07 -070056#include "cryptfs.h"
San Mehat23969932010-01-09 07:08:06 -080057
Mike Lockwood97f2fc12011-06-07 10:51:38 -070058#define MASS_STORAGE_FILE_PATH "/sys/class/android_usb/android0/f_mass_storage/lun/file"
59
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -070060#define ROUND_UP_POWER_OF_2(number, po2) (((!!(number & ((1U << po2) - 1))) << po2)\
61 + (number & (~((1U << po2) - 1))))
62
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -070063/* writes superblock at end of file or device given by name */
64static int writeSuperBlock(const char* name, struct asec_superblock *sb, unsigned int numImgSectors) {
65 int sbfd = open(name, O_RDWR);
66 if (sbfd < 0) {
67 SLOGE("Failed to open %s for superblock write (%s)", name, strerror(errno));
68 return -1;
69 }
70
71 if (lseek(sbfd, (numImgSectors * 512), SEEK_SET) < 0) {
72 SLOGE("Failed to lseek for superblock (%s)", strerror(errno));
73 close(sbfd);
74 return -1;
75 }
76
77 if (write(sbfd, sb, sizeof(struct asec_superblock)) != sizeof(struct asec_superblock)) {
78 SLOGE("Failed to write superblock (%s)", strerror(errno));
79 close(sbfd);
80 return -1;
81 }
82 close(sbfd);
83 return 0;
84}
85
86static int adjustSectorNumExt4(unsigned numSectors) {
Daniel Rosenberge9196fe2014-06-10 17:16:03 -070087 // Ext4 started to reserve 2% or 4096 clusters, whichever is smaller for
88 // preventing costly operations or unexpected ENOSPC error.
89 // Ext4::format() uses default block size without clustering.
90 unsigned clusterSectors = 4096 / 512;
91 unsigned reservedSectors = (numSectors * 2)/100 + (numSectors % 50 > 0);
92 numSectors += reservedSectors > (4096 * clusterSectors) ? (4096 * clusterSectors) : reservedSectors;
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -070093 return ROUND_UP_POWER_OF_2(numSectors, 3);
94}
95
96static int adjustSectorNumFAT(unsigned numSectors) {
97 /*
98 * Add some headroom
99 */
100 unsigned fatSize = (((numSectors * 4) / 512) + 1) * 2;
101 numSectors += fatSize + 2;
102 /*
103 * FAT is aligned to 32 kb with 512b sectors.
104 */
105 return ROUND_UP_POWER_OF_2(numSectors, 6);
106}
107
108static int setupLoopDevice(char* buffer, size_t len, const char* asecFileName, const char* idHash, bool debug) {
109 if (Loop::lookupActive(idHash, buffer, len)) {
110 if (Loop::create(idHash, asecFileName, buffer, len)) {
111 SLOGE("ASEC loop device creation failed for %s (%s)", asecFileName, strerror(errno));
112 return -1;
113 }
114 if (debug) {
115 SLOGD("New loop device created at %s", buffer);
116 }
117 } else {
118 if (debug) {
119 SLOGD("Found active loopback for %s at %s", asecFileName, buffer);
120 }
121 }
122 return 0;
123}
124
125static 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) {
126 if (strcmp(key, "none")) {
127 if (Devmapper::lookupActive(idHash, buffer, len)) {
128 if (Devmapper::create(idHash, loopDevice, key, numImgSectors,
129 buffer, len)) {
130 SLOGE("ASEC device mapping failed for %s (%s)", asecFileName, strerror(errno));
131 return -1;
132 }
133 if (debug) {
134 SLOGD("New devmapper instance created at %s", buffer);
135 }
136 } else {
137 if (debug) {
138 SLOGD("Found active devmapper for %s at %s", asecFileName, buffer);
139 }
140 }
141 *createdDMDevice = true;
142 } else {
143 strcpy(buffer, loopDevice);
144 *createdDMDevice = false;
145 }
146 return 0;
147}
148
149static void waitForDevMapper(const char *dmDevice) {
150 /*
151 * Wait for the device mapper node to be created. Sometimes it takes a
152 * while. Wait for up to 1 second. We could also inspect incoming uevents,
153 * but that would take more effort.
154 */
155 int tries = 25;
156 while (tries--) {
157 if (!access(dmDevice, F_OK) || errno != ENOENT) {
158 break;
159 }
160 usleep(40 * 1000);
161 }
162}
163
San Mehatf1b736b2009-10-10 17:22:08 -0700164VolumeManager *VolumeManager::sInstance = NULL;
165
166VolumeManager *VolumeManager::Instance() {
167 if (!sInstance)
168 sInstance = new VolumeManager();
169 return sInstance;
170}
171
172VolumeManager::VolumeManager() {
San Mehatd9a4e352010-03-12 13:32:47 -0800173 mDebug = false;
San Mehatf1b736b2009-10-10 17:22:08 -0700174 mVolumes = new VolumeCollection();
San Mehat88705162010-01-15 09:26:28 -0800175 mActiveContainers = new AsecIdCollection();
San Mehatf1b736b2009-10-10 17:22:08 -0700176 mBroadcaster = NULL;
Mike Lockwooda28056b2010-10-28 15:21:24 -0400177 mUmsSharingCount = 0;
178 mSavedDirtyRatio = -1;
179 // set dirty ratio to 0 when UMS is active
180 mUmsDirtyRatio = 0;
Ken Sumrall3b170052011-07-11 15:38:57 -0700181 mVolManagerDisabled = 0;
San Mehatf1b736b2009-10-10 17:22:08 -0700182}
183
184VolumeManager::~VolumeManager() {
San Mehat88705162010-01-15 09:26:28 -0800185 delete mVolumes;
186 delete mActiveContainers;
San Mehatf1b736b2009-10-10 17:22:08 -0700187}
188
Kenny Root7b18a7b2010-03-15 13:13:41 -0700189char *VolumeManager::asecHash(const char *id, char *buffer, size_t len) {
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700190 static const char* digits = "0123456789abcdef";
191
Kenny Root7b18a7b2010-03-15 13:13:41 -0700192 unsigned char sig[MD5_DIGEST_LENGTH];
193
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700194 if (buffer == NULL) {
195 SLOGE("Destination buffer is NULL");
196 errno = ESPIPE;
197 return NULL;
198 } else if (id == NULL) {
199 SLOGE("Source buffer is NULL");
200 errno = ESPIPE;
201 return NULL;
202 } else if (len < MD5_ASCII_LENGTH_PLUS_NULL) {
Colin Cross59846b62014-02-06 20:34:29 -0800203 SLOGE("Target hash buffer size < %d bytes (%zu)",
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700204 MD5_ASCII_LENGTH_PLUS_NULL, len);
San Mehatd9a4e352010-03-12 13:32:47 -0800205 errno = ESPIPE;
206 return NULL;
207 }
Kenny Root7b18a7b2010-03-15 13:13:41 -0700208
209 MD5(reinterpret_cast<const unsigned char*>(id), strlen(id), sig);
San Mehatd9a4e352010-03-12 13:32:47 -0800210
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700211 char *p = buffer;
Kenny Root7b18a7b2010-03-15 13:13:41 -0700212 for (int i = 0; i < MD5_DIGEST_LENGTH; i++) {
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700213 *p++ = digits[sig[i] >> 4];
214 *p++ = digits[sig[i] & 0x0F];
San Mehatd9a4e352010-03-12 13:32:47 -0800215 }
Kenny Rootacc9e7d2010-06-18 19:06:50 -0700216 *p = '\0';
San Mehatd9a4e352010-03-12 13:32:47 -0800217
218 return buffer;
219}
220
221void VolumeManager::setDebug(bool enable) {
222 mDebug = enable;
223 VolumeCollection::iterator it;
224 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
225 (*it)->setDebug(enable);
226 }
227}
228
San Mehatf1b736b2009-10-10 17:22:08 -0700229int VolumeManager::start() {
230 return 0;
231}
232
233int VolumeManager::stop() {
234 return 0;
235}
236
237int VolumeManager::addVolume(Volume *v) {
238 mVolumes->push_back(v);
239 return 0;
240}
241
San Mehatfd7f5872009-10-12 11:32:47 -0700242void VolumeManager::handleBlockEvent(NetlinkEvent *evt) {
Tim Murray8439dc92014-12-15 11:56:11 -0800243#ifdef NETLINK_DEBUG
San Mehatfd7f5872009-10-12 11:32:47 -0700244 const char *devpath = evt->findParam("DEVPATH");
Tim Murray8439dc92014-12-15 11:56:11 -0800245#endif
San Mehatf1b736b2009-10-10 17:22:08 -0700246
San Mehatfd7f5872009-10-12 11:32:47 -0700247 /* Lookup a volume to handle this device */
San Mehatf1b736b2009-10-10 17:22:08 -0700248 VolumeCollection::iterator it;
249 bool hit = false;
250 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
San Mehatfd7f5872009-10-12 11:32:47 -0700251 if (!(*it)->handleBlockEvent(evt)) {
San Mehata2677e42009-12-13 10:40:18 -0800252#ifdef NETLINK_DEBUG
San Mehat97ac40e2010-03-24 10:24:19 -0700253 SLOGD("Device '%s' event handled by volume %s\n", devpath, (*it)->getLabel());
San Mehata2677e42009-12-13 10:40:18 -0800254#endif
San Mehatf1b736b2009-10-10 17:22:08 -0700255 hit = true;
San Mehatf1b736b2009-10-10 17:22:08 -0700256 break;
257 }
258 }
259
260 if (!hit) {
San Mehata2677e42009-12-13 10:40:18 -0800261#ifdef NETLINK_DEBUG
San Mehat97ac40e2010-03-24 10:24:19 -0700262 SLOGW("No volumes handled block event for '%s'", devpath);
San Mehata2677e42009-12-13 10:40:18 -0800263#endif
San Mehatf1b736b2009-10-10 17:22:08 -0700264 }
265}
266
JP Abgrall40b64a62014-07-24 18:02:16 -0700267int VolumeManager::listVolumes(SocketClient *cli, bool broadcast) {
San Mehatf1b736b2009-10-10 17:22:08 -0700268 VolumeCollection::iterator i;
JP Abgrall40b64a62014-07-24 18:02:16 -0700269 char msg[256];
San Mehatf1b736b2009-10-10 17:22:08 -0700270
271 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
272 char *buffer;
273 asprintf(&buffer, "%s %s %d",
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -0700274 (*i)->getLabel(), (*i)->getFuseMountpoint(),
San Mehatf1b736b2009-10-10 17:22:08 -0700275 (*i)->getState());
San Mehata2677e42009-12-13 10:40:18 -0800276 cli->sendMsg(ResponseCode::VolumeListResult, buffer, false);
San Mehatf1b736b2009-10-10 17:22:08 -0700277 free(buffer);
JP Abgrall40b64a62014-07-24 18:02:16 -0700278 if (broadcast) {
279 if((*i)->getUuid()) {
280 snprintf(msg, sizeof(msg), "%s %s \"%s\"", (*i)->getLabel(),
281 (*i)->getFuseMountpoint(), (*i)->getUuid());
282 mBroadcaster->sendBroadcast(ResponseCode::VolumeUuidChange,
283 msg, false);
284 }
285 if((*i)->getUserLabel()) {
286 snprintf(msg, sizeof(msg), "%s %s \"%s\"", (*i)->getLabel(),
287 (*i)->getFuseMountpoint(), (*i)->getUserLabel());
288 mBroadcaster->sendBroadcast(ResponseCode::VolumeUserLabelChange,
289 msg, false);
290 }
291 }
San Mehatf1b736b2009-10-10 17:22:08 -0700292 }
San Mehata2677e42009-12-13 10:40:18 -0800293 cli->sendMsg(ResponseCode::CommandOkay, "Volumes listed.", false);
San Mehatf1b736b2009-10-10 17:22:08 -0700294 return 0;
295}
San Mehat49e2bce2009-10-12 16:29:01 -0700296
Ken Sumrall9caab762013-06-11 19:10:20 -0700297int VolumeManager::formatVolume(const char *label, bool wipe) {
San Mehata2677e42009-12-13 10:40:18 -0800298 Volume *v = lookupVolume(label);
299
300 if (!v) {
301 errno = ENOENT;
302 return -1;
303 }
304
Ken Sumrall3b170052011-07-11 15:38:57 -0700305 if (mVolManagerDisabled) {
306 errno = EBUSY;
307 return -1;
308 }
309
Ken Sumrall9caab762013-06-11 19:10:20 -0700310 return v->formatVol(wipe);
San Mehata2677e42009-12-13 10:40:18 -0800311}
312
Kenny Root508c0e12010-07-12 09:59:49 -0700313int VolumeManager::getObbMountPath(const char *sourceFile, char *mountPath, int mountPathLen) {
314 char idHash[33];
315 if (!asecHash(sourceFile, idHash, sizeof(idHash))) {
316 SLOGE("Hash of '%s' failed (%s)", sourceFile, strerror(errno));
317 return -1;
318 }
319
320 memset(mountPath, 0, mountPathLen);
rpcraigd1c226f2012-10-09 06:58:16 -0400321 int written = snprintf(mountPath, mountPathLen, "%s/%s", Volume::LOOPDIR, idHash);
322 if ((written < 0) || (written >= mountPathLen)) {
323 errno = EINVAL;
324 return -1;
325 }
Kenny Root508c0e12010-07-12 09:59:49 -0700326
327 if (access(mountPath, F_OK)) {
328 errno = ENOENT;
329 return -1;
330 }
331
332 return 0;
333}
334
San Mehata19b2502010-01-06 10:33:53 -0800335int VolumeManager::getAsecMountPath(const char *id, char *buffer, int maxlen) {
San Mehat88ac2c02010-03-23 11:15:58 -0700336 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700337
Nick Kralevich0de7c612014-01-27 14:58:06 -0800338 if (!isLegalAsecId(id)) {
339 SLOGE("getAsecMountPath: Invalid asec id \"%s\"", id);
340 errno = EINVAL;
341 return -1;
342 }
343
Kenny Root344ca102012-04-03 17:23:01 -0700344 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
345 SLOGE("Couldn't find ASEC %s", id);
346 return -1;
347 }
San Mehat88ac2c02010-03-23 11:15:58 -0700348
349 memset(buffer, 0, maxlen);
350 if (access(asecFileName, F_OK)) {
351 errno = ENOENT;
352 return -1;
353 }
San Mehata19b2502010-01-06 10:33:53 -0800354
rpcraigd1c226f2012-10-09 06:58:16 -0400355 int written = snprintf(buffer, maxlen, "%s/%s", Volume::ASECDIR, id);
356 if ((written < 0) || (written >= maxlen)) {
357 SLOGE("getAsecMountPath failed for %s: couldn't construct path in buffer", id);
358 errno = EINVAL;
359 return -1;
360 }
361
San Mehata19b2502010-01-06 10:33:53 -0800362 return 0;
363}
364
Dianne Hackborn736910c2011-06-27 13:37:07 -0700365int VolumeManager::getAsecFilesystemPath(const char *id, char *buffer, int maxlen) {
366 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700367
Nick Kralevich0de7c612014-01-27 14:58:06 -0800368 if (!isLegalAsecId(id)) {
369 SLOGE("getAsecFilesystemPath: Invalid asec id \"%s\"", id);
370 errno = EINVAL;
371 return -1;
372 }
373
Kenny Root344ca102012-04-03 17:23:01 -0700374 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
375 SLOGE("Couldn't find ASEC %s", id);
376 return -1;
377 }
Dianne Hackborn736910c2011-06-27 13:37:07 -0700378
379 memset(buffer, 0, maxlen);
380 if (access(asecFileName, F_OK)) {
381 errno = ENOENT;
382 return -1;
383 }
384
rpcraigd1c226f2012-10-09 06:58:16 -0400385 int written = snprintf(buffer, maxlen, "%s", asecFileName);
386 if ((written < 0) || (written >= maxlen)) {
387 errno = EINVAL;
388 return -1;
389 }
390
Dianne Hackborn736910c2011-06-27 13:37:07 -0700391 return 0;
392}
393
Kenny Root344ca102012-04-03 17:23:01 -0700394int VolumeManager::createAsec(const char *id, unsigned int numSectors, const char *fstype,
395 const char *key, const int ownerUid, bool isExternal) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800396 struct asec_superblock sb;
397 memset(&sb, 0, sizeof(sb));
398
Nick Kralevich0de7c612014-01-27 14:58:06 -0800399 if (!isLegalAsecId(id)) {
400 SLOGE("createAsec: Invalid asec id \"%s\"", id);
401 errno = EINVAL;
402 return -1;
403 }
404
Kenny Root344ca102012-04-03 17:23:01 -0700405 const bool wantFilesystem = strcmp(fstype, "none");
406 bool usingExt4 = false;
407 if (wantFilesystem) {
408 usingExt4 = !strcmp(fstype, "ext4");
409 if (usingExt4) {
410 sb.c_opts |= ASEC_SB_C_OPTS_EXT4;
411 } else if (strcmp(fstype, "fat")) {
412 SLOGE("Invalid filesystem type %s", fstype);
413 errno = EINVAL;
414 return -1;
415 }
416 }
417
San Mehatfcf24fe2010-03-03 12:37:32 -0800418 sb.magic = ASEC_SB_MAGIC;
419 sb.ver = ASEC_SB_VER;
San Mehata19b2502010-01-06 10:33:53 -0800420
San Mehatd31e3802010-02-18 08:37:45 -0800421 if (numSectors < ((1024*1024)/512)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700422 SLOGE("Invalid container size specified (%d sectors)", numSectors);
San Mehatd31e3802010-02-18 08:37:45 -0800423 errno = EINVAL;
424 return -1;
425 }
426
San Mehata19b2502010-01-06 10:33:53 -0800427 if (lookupVolume(id)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700428 SLOGE("ASEC id '%s' currently exists", id);
San Mehata19b2502010-01-06 10:33:53 -0800429 errno = EADDRINUSE;
430 return -1;
431 }
432
433 char asecFileName[255];
Kenny Root344ca102012-04-03 17:23:01 -0700434
435 if (!findAsec(id, asecFileName, sizeof(asecFileName))) {
436 SLOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
437 asecFileName, strerror(errno));
438 errno = EADDRINUSE;
439 return -1;
440 }
441
442 const char *asecDir = isExternal ? Volume::SEC_ASECDIR_EXT : Volume::SEC_ASECDIR_INT;
443
rpcraigd1c226f2012-10-09 06:58:16 -0400444 int written = snprintf(asecFileName, sizeof(asecFileName), "%s/%s.asec", asecDir, id);
445 if ((written < 0) || (size_t(written) >= sizeof(asecFileName))) {
446 errno = EINVAL;
447 return -1;
448 }
San Mehata19b2502010-01-06 10:33:53 -0800449
450 if (!access(asecFileName, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700451 SLOGE("ASEC file '%s' currently exists - destroy it first! (%s)",
Kenny Root344ca102012-04-03 17:23:01 -0700452 asecFileName, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800453 errno = EADDRINUSE;
454 return -1;
455 }
456
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700457 unsigned numImgSectors;
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -0700458 if (usingExt4)
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700459 numImgSectors = adjustSectorNumExt4(numSectors);
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -0700460 else
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700461 numImgSectors = adjustSectorNumFAT(numSectors);
San Mehatfcf24fe2010-03-03 12:37:32 -0800462
463 // Add +1 for our superblock which is at the end
464 if (Loop::createImageFile(asecFileName, numImgSectors + 1)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700465 SLOGE("ASEC image file creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800466 return -1;
467 }
468
San Mehatd9a4e352010-03-12 13:32:47 -0800469 char idHash[33];
470 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700471 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -0800472 unlink(asecFileName);
473 return -1;
474 }
475
San Mehata19b2502010-01-06 10:33:53 -0800476 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -0800477 if (Loop::create(idHash, asecFileName, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700478 SLOGE("ASEC loop device creation failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800479 unlink(asecFileName);
480 return -1;
481 }
482
San Mehatb78a32c2010-01-10 13:02:12 -0800483 char dmDevice[255];
484 bool cleanupDm = false;
San Mehata19b2502010-01-06 10:33:53 -0800485
San Mehatb78a32c2010-01-10 13:02:12 -0800486 if (strcmp(key, "none")) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800487 // XXX: This is all we support for now
488 sb.c_cipher = ASEC_SB_C_CIPHER_TWOFISH;
San Mehatd9a4e352010-03-12 13:32:47 -0800489 if (Devmapper::create(idHash, loopDevice, key, numImgSectors, dmDevice,
San Mehatb78a32c2010-01-10 13:02:12 -0800490 sizeof(dmDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700491 SLOGE("ASEC device mapping failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800492 Loop::destroyByDevice(loopDevice);
493 unlink(asecFileName);
494 return -1;
495 }
496 cleanupDm = true;
497 } else {
San Mehatfcf24fe2010-03-03 12:37:32 -0800498 sb.c_cipher = ASEC_SB_C_CIPHER_NONE;
San Mehatb78a32c2010-01-10 13:02:12 -0800499 strcpy(dmDevice, loopDevice);
500 }
501
San Mehatfcf24fe2010-03-03 12:37:32 -0800502 /*
503 * Drop down the superblock at the end of the file
504 */
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700505 if (writeSuperBlock(loopDevice, &sb, numImgSectors)) {
San Mehatfcf24fe2010-03-03 12:37:32 -0800506 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800507 Devmapper::destroy(idHash);
San Mehatfcf24fe2010-03-03 12:37:32 -0800508 }
509 Loop::destroyByDevice(loopDevice);
510 unlink(asecFileName);
511 return -1;
512 }
513
Kenny Root344ca102012-04-03 17:23:01 -0700514 if (wantFilesystem) {
515 int formatStatus;
rpcraiga54e13a2012-09-21 14:17:08 -0400516 char mountPoint[255];
517
rpcraigd1c226f2012-10-09 06:58:16 -0400518 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
519 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
520 SLOGE("ASEC fs format failed: couldn't construct mountPoint");
521 if (cleanupDm) {
522 Devmapper::destroy(idHash);
523 }
524 Loop::destroyByDevice(loopDevice);
525 unlink(asecFileName);
526 return -1;
527 }
rpcraiga54e13a2012-09-21 14:17:08 -0400528
Kenny Root344ca102012-04-03 17:23:01 -0700529 if (usingExt4) {
Daniel Rosenberg6a74dca2014-05-23 13:47:00 -0700530 formatStatus = Ext4::format(dmDevice, numImgSectors, mountPoint);
Kenny Root344ca102012-04-03 17:23:01 -0700531 } else {
Ken Sumrall9caab762013-06-11 19:10:20 -0700532 formatStatus = Fat::format(dmDevice, numImgSectors, 0);
San Mehatb78a32c2010-01-10 13:02:12 -0800533 }
San Mehata19b2502010-01-06 10:33:53 -0800534
Kenny Root344ca102012-04-03 17:23:01 -0700535 if (formatStatus < 0) {
536 SLOGE("ASEC fs format failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -0800537 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800538 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -0800539 }
San Mehateb13a902010-01-07 12:12:50 -0800540 Loop::destroyByDevice(loopDevice);
541 unlink(asecFileName);
542 return -1;
543 }
Kenny Root344ca102012-04-03 17:23:01 -0700544
Kenny Root344ca102012-04-03 17:23:01 -0700545 if (mkdir(mountPoint, 0000)) {
San Mehata1091cb2010-02-28 20:17:20 -0800546 if (errno != EEXIST) {
San Mehat97ac40e2010-03-24 10:24:19 -0700547 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehata1091cb2010-02-28 20:17:20 -0800548 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800549 Devmapper::destroy(idHash);
San Mehata1091cb2010-02-28 20:17:20 -0800550 }
551 Loop::destroyByDevice(loopDevice);
552 unlink(asecFileName);
553 return -1;
554 }
San Mehatb78a32c2010-01-10 13:02:12 -0800555 }
San Mehata1091cb2010-02-28 20:17:20 -0800556
Kenny Root344ca102012-04-03 17:23:01 -0700557 int mountStatus;
558 if (usingExt4) {
559 mountStatus = Ext4::doMount(dmDevice, mountPoint, false, false, false);
560 } else {
561 mountStatus = Fat::doMount(dmDevice, mountPoint, false, false, false, ownerUid, 0, 0000,
562 false);
563 }
564
565 if (mountStatus) {
San Mehat97ac40e2010-03-24 10:24:19 -0700566 SLOGE("ASEC FAT mount failed (%s)", strerror(errno));
San Mehata1091cb2010-02-28 20:17:20 -0800567 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -0800568 Devmapper::destroy(idHash);
San Mehata1091cb2010-02-28 20:17:20 -0800569 }
570 Loop::destroyByDevice(loopDevice);
571 unlink(asecFileName);
572 return -1;
573 }
Kenny Root344ca102012-04-03 17:23:01 -0700574
575 if (usingExt4) {
576 int dirfd = open(mountPoint, O_DIRECTORY);
577 if (dirfd >= 0) {
578 if (fchown(dirfd, ownerUid, AID_SYSTEM)
579 || fchmod(dirfd, S_IRUSR | S_IWUSR | S_IXUSR | S_ISGID | S_IRGRP | S_IXGRP)) {
580 SLOGI("Cannot chown/chmod new ASEC mount point %s", mountPoint);
581 }
582 close(dirfd);
583 }
584 }
San Mehata1091cb2010-02-28 20:17:20 -0800585 } else {
San Mehat97ac40e2010-03-24 10:24:19 -0700586 SLOGI("Created raw secure container %s (no filesystem)", id);
San Mehata19b2502010-01-06 10:33:53 -0800587 }
San Mehat88705162010-01-15 09:26:28 -0800588
Kenny Rootcbacf782010-09-24 15:11:48 -0700589 mActiveContainers->push_back(new ContainerData(strdup(id), ASEC));
San Mehata19b2502010-01-06 10:33:53 -0800590 return 0;
591}
592
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700593int VolumeManager::resizeAsec(const char *id, unsigned numSectors, const char *key) {
594 char asecFileName[255];
595 char mountPoint[255];
596 bool cleanupDm = false;
597
598 if (!isLegalAsecId(id)) {
599 SLOGE("resizeAsec: Invalid asec id \"%s\"", id);
600 errno = EINVAL;
601 return -1;
602 }
603
604 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
605 SLOGE("Couldn't find ASEC %s", id);
606 return -1;
607 }
608
609 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
610 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
611 SLOGE("ASEC resize failed for %s: couldn't construct mountpoint", id);
612 return -1;
613 }
614
615 if (isMountpointMounted(mountPoint)) {
616 SLOGE("ASEC %s mounted. Unmount before resizing", id);
617 errno = EBUSY;
618 return -1;
619 }
620
621 struct asec_superblock sb;
622 int fd;
623 unsigned int oldNumSec = 0;
624
625 if ((fd = open(asecFileName, O_RDONLY)) < 0) {
626 SLOGE("Failed to open ASEC file (%s)", strerror(errno));
627 return -1;
628 }
629
630 struct stat info;
631 if (fstat(fd, &info) < 0) {
632 SLOGE("Failed to get file size (%s)", strerror(errno));
633 close(fd);
634 return -1;
635 }
636
637 oldNumSec = info.st_size / 512;
638
639 unsigned numImgSectors;
640 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4)
641 numImgSectors = adjustSectorNumExt4(numSectors);
642 else
643 numImgSectors = adjustSectorNumFAT(numSectors);
644 /*
645 * add one block for the superblock
646 */
647 SLOGD("Resizing from %d sectors to %d sectors", oldNumSec, numImgSectors + 1);
Jeff Sharkey43ed1232014-08-22 12:29:05 -0700648 if (oldNumSec == numImgSectors + 1) {
649 SLOGW("Size unchanged; ignoring resize request");
650 return 0;
651 } else if (oldNumSec > numImgSectors + 1) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700652 SLOGE("Only growing is currently supported.");
653 close(fd);
654 return -1;
655 }
656
657 /*
658 * Try to read superblock.
659 */
660 memset(&sb, 0, sizeof(struct asec_superblock));
661 if (lseek(fd, ((oldNumSec - 1) * 512), SEEK_SET) < 0) {
662 SLOGE("lseek failed (%s)", strerror(errno));
663 close(fd);
664 return -1;
665 }
666 if (read(fd, &sb, sizeof(struct asec_superblock)) != sizeof(struct asec_superblock)) {
667 SLOGE("superblock read failed (%s)", strerror(errno));
668 close(fd);
669 return -1;
670 }
671 close(fd);
672
673 if (mDebug) {
674 SLOGD("Container sb magic/ver (%.8x/%.2x)", sb.magic, sb.ver);
675 }
676 if (sb.magic != ASEC_SB_MAGIC || sb.ver != ASEC_SB_VER) {
677 SLOGE("Bad container magic/version (%.8x/%.2x)", sb.magic, sb.ver);
678 errno = EMEDIUMTYPE;
679 return -1;
680 }
681
682 if (!(sb.c_opts & ASEC_SB_C_OPTS_EXT4)) {
683 SLOGE("Only ext4 partitions are supported for resize");
684 errno = EINVAL;
685 return -1;
686 }
687
688 if (Loop::resizeImageFile(asecFileName, numImgSectors + 1)) {
689 SLOGE("Resize of ASEC image file failed. Could not resize %s", id);
690 return -1;
691 }
692
693 /*
694 * Drop down a copy of the superblock at the end of the file
695 */
696 if (writeSuperBlock(asecFileName, &sb, numImgSectors))
697 goto fail;
698
699 char idHash[33];
700 if (!asecHash(id, idHash, sizeof(idHash))) {
701 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
702 goto fail;
703 }
704
705 char loopDevice[255];
706 if (setupLoopDevice(loopDevice, sizeof(loopDevice), asecFileName, idHash, mDebug))
707 goto fail;
708
709 char dmDevice[255];
710
711 if (setupDevMapperDevice(dmDevice, sizeof(dmDevice), loopDevice, asecFileName, key, idHash, numImgSectors, &cleanupDm, mDebug)) {
712 Loop::destroyByDevice(loopDevice);
713 goto fail;
714 }
715
716 /*
717 * Wait for the device mapper node to be created.
718 */
719 waitForDevMapper(dmDevice);
720
721 if (Ext4::resize(dmDevice, numImgSectors)) {
722 SLOGE("Unable to resize %s (%s)", id, strerror(errno));
723 if (cleanupDm) {
724 Devmapper::destroy(idHash);
725 }
726 Loop::destroyByDevice(loopDevice);
727 goto fail;
728 }
729
730 return 0;
731fail:
732 Loop::resizeImageFile(asecFileName, oldNumSec);
733 return -1;
734}
735
San Mehata19b2502010-01-06 10:33:53 -0800736int VolumeManager::finalizeAsec(const char *id) {
737 char asecFileName[255];
738 char loopDevice[255];
739 char mountPoint[255];
740
Nick Kralevich0de7c612014-01-27 14:58:06 -0800741 if (!isLegalAsecId(id)) {
742 SLOGE("finalizeAsec: Invalid asec id \"%s\"", id);
743 errno = EINVAL;
744 return -1;
745 }
746
Kenny Root344ca102012-04-03 17:23:01 -0700747 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
748 SLOGE("Couldn't find ASEC %s", id);
749 return -1;
750 }
San Mehata19b2502010-01-06 10:33:53 -0800751
San Mehatd9a4e352010-03-12 13:32:47 -0800752 char idHash[33];
753 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700754 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -0800755 return -1;
756 }
757
758 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700759 SLOGE("Unable to finalize %s (%s)", id, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800760 return -1;
761 }
762
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +0900763 unsigned long nr_sec = 0;
Kenny Root344ca102012-04-03 17:23:01 -0700764 struct asec_superblock sb;
765
766 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
767 return -1;
768 }
769
rpcraigd1c226f2012-10-09 06:58:16 -0400770 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
771 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
772 SLOGE("ASEC finalize failed: couldn't construct mountPoint");
773 return -1;
774 }
Kenny Root344ca102012-04-03 17:23:01 -0700775
776 int result = 0;
777 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4) {
778 result = Ext4::doMount(loopDevice, mountPoint, true, true, true);
779 } else {
780 result = Fat::doMount(loopDevice, mountPoint, true, true, true, 0, 0, 0227, false);
781 }
782
783 if (result) {
San Mehat97ac40e2010-03-24 10:24:19 -0700784 SLOGE("ASEC finalize mount failed (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800785 return -1;
786 }
787
San Mehatd9a4e352010-03-12 13:32:47 -0800788 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700789 SLOGD("ASEC %s finalized", id);
San Mehatd9a4e352010-03-12 13:32:47 -0800790 }
San Mehata19b2502010-01-06 10:33:53 -0800791 return 0;
792}
793
Kenny Root344ca102012-04-03 17:23:01 -0700794int VolumeManager::fixupAsecPermissions(const char *id, gid_t gid, const char* filename) {
795 char asecFileName[255];
796 char loopDevice[255];
797 char mountPoint[255];
798
799 if (gid < AID_APP) {
800 SLOGE("Group ID is not in application range");
801 return -1;
802 }
803
Nick Kralevich0de7c612014-01-27 14:58:06 -0800804 if (!isLegalAsecId(id)) {
805 SLOGE("fixupAsecPermissions: Invalid asec id \"%s\"", id);
806 errno = EINVAL;
807 return -1;
808 }
809
Kenny Root344ca102012-04-03 17:23:01 -0700810 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
811 SLOGE("Couldn't find ASEC %s", id);
812 return -1;
813 }
814
815 char idHash[33];
816 if (!asecHash(id, idHash, sizeof(idHash))) {
817 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
818 return -1;
819 }
820
821 if (Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
822 SLOGE("Unable fix permissions during lookup on %s (%s)", id, strerror(errno));
823 return -1;
824 }
825
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +0900826 unsigned long nr_sec = 0;
Kenny Root344ca102012-04-03 17:23:01 -0700827 struct asec_superblock sb;
828
829 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
830 return -1;
831 }
832
rpcraigd1c226f2012-10-09 06:58:16 -0400833 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
834 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
835 SLOGE("Unable remount to fix permissions for %s: couldn't construct mountpoint", id);
836 return -1;
837 }
Kenny Root344ca102012-04-03 17:23:01 -0700838
839 int result = 0;
840 if ((sb.c_opts & ASEC_SB_C_OPTS_EXT4) == 0) {
841 return 0;
842 }
843
844 int ret = Ext4::doMount(loopDevice, mountPoint,
845 false /* read-only */,
846 true /* remount */,
847 false /* executable */);
848 if (ret) {
849 SLOGE("Unable remount to fix permissions for %s (%s)", id, strerror(errno));
850 return -1;
851 }
852
853 char *paths[] = { mountPoint, NULL };
854
855 FTS *fts = fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL);
856 if (fts) {
857 // Traverse the entire hierarchy and chown to system UID.
858 for (FTSENT *ftsent = fts_read(fts); ftsent != NULL; ftsent = fts_read(fts)) {
859 // We don't care about the lost+found directory.
860 if (!strcmp(ftsent->fts_name, "lost+found")) {
861 continue;
862 }
863
864 /*
865 * There can only be one file marked as private right now.
866 * This should be more robust, but it satisfies the requirements
867 * we have for right now.
868 */
869 const bool privateFile = !strcmp(ftsent->fts_name, filename);
870
871 int fd = open(ftsent->fts_accpath, O_NOFOLLOW);
872 if (fd < 0) {
873 SLOGE("Couldn't open file %s: %s", ftsent->fts_accpath, strerror(errno));
874 result = -1;
875 continue;
876 }
877
878 result |= fchown(fd, AID_SYSTEM, privateFile? gid : AID_SYSTEM);
879
880 if (ftsent->fts_info & FTS_D) {
Kenny Root1a673c82012-05-10 16:45:29 -0700881 result |= fchmod(fd, 0755);
Kenny Root348c8ab2012-05-10 15:39:53 -0700882 } else if (ftsent->fts_info & FTS_F) {
Kenny Root344ca102012-04-03 17:23:01 -0700883 result |= fchmod(fd, privateFile ? 0640 : 0644);
884 }
Robert Craigb9e3ba52014-02-04 10:53:00 -0500885
Stephen Smalley5093e612014-02-12 09:43:08 -0500886 if (selinux_android_restorecon(ftsent->fts_path, 0) < 0) {
Robert Craigb9e3ba52014-02-04 10:53:00 -0500887 SLOGE("restorecon failed for %s: %s\n", ftsent->fts_path, strerror(errno));
888 result |= -1;
889 }
890
Kenny Root344ca102012-04-03 17:23:01 -0700891 close(fd);
892 }
893 fts_close(fts);
894
895 // Finally make the directory readable by everyone.
896 int dirfd = open(mountPoint, O_DIRECTORY);
897 if (dirfd < 0 || fchmod(dirfd, 0755)) {
898 SLOGE("Couldn't change owner of existing directory %s: %s", mountPoint, strerror(errno));
899 result |= -1;
900 }
901 close(dirfd);
902 } else {
903 result |= -1;
904 }
905
906 result |= Ext4::doMount(loopDevice, mountPoint,
907 true /* read-only */,
908 true /* remount */,
909 true /* execute */);
910
911 if (result) {
912 SLOGE("ASEC fix permissions failed (%s)", strerror(errno));
913 return -1;
914 }
915
916 if (mDebug) {
917 SLOGD("ASEC %s permissions fixed", id);
918 }
919 return 0;
920}
921
San Mehat048b0802010-01-23 08:17:06 -0800922int VolumeManager::renameAsec(const char *id1, const char *id2) {
Kenny Root344ca102012-04-03 17:23:01 -0700923 char asecFilename1[255];
San Mehat048b0802010-01-23 08:17:06 -0800924 char *asecFilename2;
925 char mountPoint[255];
926
Kenny Root344ca102012-04-03 17:23:01 -0700927 const char *dir;
928
Nick Kralevich0de7c612014-01-27 14:58:06 -0800929 if (!isLegalAsecId(id1)) {
930 SLOGE("renameAsec: Invalid asec id1 \"%s\"", id1);
931 errno = EINVAL;
932 return -1;
933 }
934
935 if (!isLegalAsecId(id2)) {
936 SLOGE("renameAsec: Invalid asec id2 \"%s\"", id2);
937 errno = EINVAL;
938 return -1;
939 }
940
Kenny Root344ca102012-04-03 17:23:01 -0700941 if (findAsec(id1, asecFilename1, sizeof(asecFilename1), &dir)) {
942 SLOGE("Couldn't find ASEC %s", id1);
943 return -1;
944 }
945
946 asprintf(&asecFilename2, "%s/%s.asec", dir, id2);
San Mehat048b0802010-01-23 08:17:06 -0800947
rpcraigd1c226f2012-10-09 06:58:16 -0400948 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id1);
949 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
950 SLOGE("Rename failed: couldn't construct mountpoint");
951 goto out_err;
952 }
953
San Mehat048b0802010-01-23 08:17:06 -0800954 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700955 SLOGW("Rename attempt when src mounted");
San Mehat048b0802010-01-23 08:17:06 -0800956 errno = EBUSY;
957 goto out_err;
958 }
959
rpcraigd1c226f2012-10-09 06:58:16 -0400960 written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id2);
961 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
962 SLOGE("Rename failed: couldn't construct mountpoint2");
963 goto out_err;
964 }
965
San Mehat96956ed2010-02-24 08:42:51 -0800966 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700967 SLOGW("Rename attempt when dst mounted");
San Mehat96956ed2010-02-24 08:42:51 -0800968 errno = EBUSY;
969 goto out_err;
970 }
971
San Mehat048b0802010-01-23 08:17:06 -0800972 if (!access(asecFilename2, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700973 SLOGE("Rename attempt when dst exists");
San Mehat048b0802010-01-23 08:17:06 -0800974 errno = EADDRINUSE;
975 goto out_err;
976 }
977
978 if (rename(asecFilename1, asecFilename2)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700979 SLOGE("Rename of '%s' to '%s' failed (%s)", asecFilename1, asecFilename2, strerror(errno));
San Mehat048b0802010-01-23 08:17:06 -0800980 goto out_err;
981 }
982
San Mehat048b0802010-01-23 08:17:06 -0800983 free(asecFilename2);
984 return 0;
985
986out_err:
San Mehat048b0802010-01-23 08:17:06 -0800987 free(asecFilename2);
988 return -1;
989}
990
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700991#define UNMOUNT_RETRIES 5
992#define UNMOUNT_SLEEP_BETWEEN_RETRY_MS (1000 * 1000)
San Mehat4ba89482010-02-18 09:00:18 -0800993int VolumeManager::unmountAsec(const char *id, bool force) {
San Mehata19b2502010-01-06 10:33:53 -0800994 char asecFileName[255];
995 char mountPoint[255];
996
Nick Kralevich0de7c612014-01-27 14:58:06 -0800997 if (!isLegalAsecId(id)) {
998 SLOGE("unmountAsec: Invalid asec id \"%s\"", id);
999 errno = EINVAL;
1000 return -1;
1001 }
1002
Kenny Root344ca102012-04-03 17:23:01 -07001003 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1004 SLOGE("Couldn't find ASEC %s", id);
1005 return -1;
1006 }
1007
rpcraigd1c226f2012-10-09 06:58:16 -04001008 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
1009 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1010 SLOGE("ASEC unmount failed for %s: couldn't construct mountpoint", id);
1011 return -1;
1012 }
San Mehata19b2502010-01-06 10:33:53 -08001013
San Mehatd9a4e352010-03-12 13:32:47 -08001014 char idHash[33];
1015 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001016 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -08001017 return -1;
1018 }
1019
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001020 return unmountLoopImage(id, idHash, asecFileName, mountPoint, force);
1021}
1022
Kenny Root508c0e12010-07-12 09:59:49 -07001023int VolumeManager::unmountObb(const char *fileName, bool force) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001024 char mountPoint[255];
1025
1026 char idHash[33];
1027 if (!asecHash(fileName, idHash, sizeof(idHash))) {
1028 SLOGE("Hash of '%s' failed (%s)", fileName, strerror(errno));
1029 return -1;
1030 }
1031
rpcraigd1c226f2012-10-09 06:58:16 -04001032 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::LOOPDIR, idHash);
1033 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1034 SLOGE("OBB unmount failed for %s: couldn't construct mountpoint", fileName);
1035 return -1;
1036 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001037
1038 return unmountLoopImage(fileName, idHash, fileName, mountPoint, force);
1039}
1040
1041int VolumeManager::unmountLoopImage(const char *id, const char *idHash,
1042 const char *fileName, const char *mountPoint, bool force) {
San Mehat0586d542010-01-12 15:38:59 -08001043 if (!isMountpointMounted(mountPoint)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001044 SLOGE("Unmount request for %s when not mounted", id);
Kenny Root918e5f92010-09-30 18:00:52 -07001045 errno = ENOENT;
San Mehatb78a32c2010-01-10 13:02:12 -08001046 return -1;
1047 }
San Mehat23969932010-01-09 07:08:06 -08001048
San Mehatb78a32c2010-01-10 13:02:12 -08001049 int i, rc;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001050 for (i = 1; i <= UNMOUNT_RETRIES; i++) {
San Mehatb78a32c2010-01-10 13:02:12 -08001051 rc = umount(mountPoint);
1052 if (!rc) {
1053 break;
San Mehata19b2502010-01-06 10:33:53 -08001054 }
San Mehatb78a32c2010-01-10 13:02:12 -08001055 if (rc && (errno == EINVAL || errno == ENOENT)) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001056 SLOGI("Container %s unmounted OK", id);
San Mehatb78a32c2010-01-10 13:02:12 -08001057 rc = 0;
1058 break;
San Mehata19b2502010-01-06 10:33:53 -08001059 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001060 SLOGW("%s unmount attempt %d failed (%s)",
San Mehat8c940ef2010-02-13 14:19:53 -08001061 id, i, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001062
San Mehat4ba89482010-02-18 09:00:18 -08001063 int action = 0; // default is to just complain
1064
1065 if (force) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001066 if (i > (UNMOUNT_RETRIES - 2))
San Mehat4ba89482010-02-18 09:00:18 -08001067 action = 2; // SIGKILL
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001068 else if (i > (UNMOUNT_RETRIES - 3))
San Mehat4ba89482010-02-18 09:00:18 -08001069 action = 1; // SIGHUP
1070 }
San Mehat8c940ef2010-02-13 14:19:53 -08001071
San Mehat586536c2010-02-16 17:12:00 -08001072 Process::killProcessesWithOpenFiles(mountPoint, action);
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001073 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
San Mehatb78a32c2010-01-10 13:02:12 -08001074 }
1075
1076 if (rc) {
San Mehat4ba89482010-02-18 09:00:18 -08001077 errno = EBUSY;
San Mehat97ac40e2010-03-24 10:24:19 -07001078 SLOGE("Failed to unmount container %s (%s)", id, strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001079 return -1;
1080 }
1081
San Mehat12f4b892010-02-24 11:43:22 -08001082 int retries = 10;
1083
1084 while(retries--) {
1085 if (!rmdir(mountPoint)) {
1086 break;
1087 }
1088
San Mehat97ac40e2010-03-24 10:24:19 -07001089 SLOGW("Failed to rmdir %s (%s)", mountPoint, strerror(errno));
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001090 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
San Mehat12f4b892010-02-24 11:43:22 -08001091 }
1092
1093 if (!retries) {
San Mehat97ac40e2010-03-24 10:24:19 -07001094 SLOGE("Timed out trying to rmdir %s (%s)", mountPoint, strerror(errno));
San Mehatf5c61982010-02-03 11:04:46 -08001095 }
San Mehat88705162010-01-15 09:26:28 -08001096
Paul Lawrence60dec162014-09-02 10:52:15 -07001097 for (i=1; i <= UNMOUNT_RETRIES; i++) {
1098 if (Devmapper::destroy(idHash) && errno != ENXIO) {
1099 SLOGE("Failed to destroy devmapper instance (%s)", strerror(errno));
1100 usleep(UNMOUNT_SLEEP_BETWEEN_RETRY_MS);
1101 continue;
1102 } else {
1103 break;
1104 }
San Mehata19b2502010-01-06 10:33:53 -08001105 }
1106
1107 char loopDevice[255];
San Mehatd9a4e352010-03-12 13:32:47 -08001108 if (!Loop::lookupActive(idHash, loopDevice, sizeof(loopDevice))) {
San Mehata19b2502010-01-06 10:33:53 -08001109 Loop::destroyByDevice(loopDevice);
San Mehatd9a4e352010-03-12 13:32:47 -08001110 } else {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001111 SLOGW("Failed to find loop device for {%s} (%s)", fileName, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001112 }
San Mehat88705162010-01-15 09:26:28 -08001113
1114 AsecIdCollection::iterator it;
1115 for (it = mActiveContainers->begin(); it != mActiveContainers->end(); ++it) {
Kenny Rootcbacf782010-09-24 15:11:48 -07001116 ContainerData* cd = *it;
1117 if (!strcmp(cd->id, id)) {
San Mehat88705162010-01-15 09:26:28 -08001118 free(*it);
1119 mActiveContainers->erase(it);
1120 break;
1121 }
1122 }
1123 if (it == mActiveContainers->end()) {
San Mehat97ac40e2010-03-24 10:24:19 -07001124 SLOGW("mActiveContainers is inconsistent!");
San Mehat88705162010-01-15 09:26:28 -08001125 }
San Mehatb78a32c2010-01-10 13:02:12 -08001126 return 0;
1127}
1128
San Mehat4ba89482010-02-18 09:00:18 -08001129int VolumeManager::destroyAsec(const char *id, bool force) {
San Mehatb78a32c2010-01-10 13:02:12 -08001130 char asecFileName[255];
1131 char mountPoint[255];
1132
Nick Kralevich0de7c612014-01-27 14:58:06 -08001133 if (!isLegalAsecId(id)) {
1134 SLOGE("destroyAsec: Invalid asec id \"%s\"", id);
1135 errno = EINVAL;
1136 return -1;
1137 }
1138
Kenny Root344ca102012-04-03 17:23:01 -07001139 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1140 SLOGE("Couldn't find ASEC %s", id);
1141 return -1;
1142 }
1143
rpcraigd1c226f2012-10-09 06:58:16 -04001144 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
1145 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
1146 SLOGE("ASEC destroy failed for %s: couldn't construct mountpoint", id);
1147 return -1;
1148 }
San Mehatb78a32c2010-01-10 13:02:12 -08001149
San Mehat0586d542010-01-12 15:38:59 -08001150 if (isMountpointMounted(mountPoint)) {
San Mehatd9a4e352010-03-12 13:32:47 -08001151 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001152 SLOGD("Unmounting container before destroy");
San Mehatd9a4e352010-03-12 13:32:47 -08001153 }
San Mehat4ba89482010-02-18 09:00:18 -08001154 if (unmountAsec(id, force)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001155 SLOGE("Failed to unmount asec %s for destroy (%s)", id, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -08001156 return -1;
1157 }
1158 }
San Mehata19b2502010-01-06 10:33:53 -08001159
San Mehat0586d542010-01-12 15:38:59 -08001160 if (unlink(asecFileName)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001161 SLOGE("Failed to unlink asec '%s' (%s)", asecFileName, strerror(errno));
San Mehat0586d542010-01-12 15:38:59 -08001162 return -1;
1163 }
San Mehata19b2502010-01-06 10:33:53 -08001164
San Mehatd9a4e352010-03-12 13:32:47 -08001165 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001166 SLOGD("ASEC %s destroyed", id);
San Mehatd9a4e352010-03-12 13:32:47 -08001167 }
San Mehata19b2502010-01-06 10:33:53 -08001168 return 0;
1169}
1170
Nick Kralevich0de7c612014-01-27 14:58:06 -08001171/*
1172 * Legal ASEC ids consist of alphanumeric characters, '-',
1173 * '_', or '.'. ".." is not allowed. The first or last character
1174 * of the ASEC id cannot be '.' (dot).
1175 */
1176bool VolumeManager::isLegalAsecId(const char *id) const {
1177 size_t i;
1178 size_t len = strlen(id);
1179
1180 if (len == 0) {
1181 return false;
1182 }
1183 if ((id[0] == '.') || (id[len - 1] == '.')) {
1184 return false;
1185 }
1186
1187 for (i = 0; i < len; i++) {
1188 if (id[i] == '.') {
1189 // i=0 is guaranteed never to have a dot. See above.
1190 if (id[i-1] == '.') return false;
1191 continue;
1192 }
1193 if (id[i] == '_' || id[i] == '-') continue;
1194 if (id[i] >= 'a' && id[i] <= 'z') continue;
1195 if (id[i] >= 'A' && id[i] <= 'Z') continue;
1196 if (id[i] >= '0' && id[i] <= '9') continue;
1197 return false;
1198 }
1199
1200 return true;
1201}
1202
Kenny Root344ca102012-04-03 17:23:01 -07001203bool VolumeManager::isAsecInDirectory(const char *dir, const char *asecName) const {
1204 int dirfd = open(dir, O_DIRECTORY);
1205 if (dirfd < 0) {
1206 SLOGE("Couldn't open internal ASEC dir (%s)", strerror(errno));
Nick Kralevich25e581a2015-02-06 08:55:08 -08001207 return false;
Kenny Root344ca102012-04-03 17:23:01 -07001208 }
1209
Nick Kralevich25e581a2015-02-06 08:55:08 -08001210 struct stat sb;
1211 bool ret = (fstatat(dirfd, asecName, &sb, AT_SYMLINK_NOFOLLOW) == 0)
1212 && S_ISREG(sb.st_mode);
Kenny Root344ca102012-04-03 17:23:01 -07001213
1214 close(dirfd);
1215
1216 return ret;
1217}
1218
1219int VolumeManager::findAsec(const char *id, char *asecPath, size_t asecPathLen,
1220 const char **directory) const {
Kenny Root344ca102012-04-03 17:23:01 -07001221 char *asecName;
1222
Nick Kralevich0de7c612014-01-27 14:58:06 -08001223 if (!isLegalAsecId(id)) {
1224 SLOGE("findAsec: Invalid asec id \"%s\"", id);
1225 errno = EINVAL;
1226 return -1;
1227 }
1228
Kenny Root344ca102012-04-03 17:23:01 -07001229 if (asprintf(&asecName, "%s.asec", id) < 0) {
1230 SLOGE("Couldn't allocate string to write ASEC name");
1231 return -1;
1232 }
1233
1234 const char *dir;
1235 if (isAsecInDirectory(Volume::SEC_ASECDIR_INT, asecName)) {
1236 dir = Volume::SEC_ASECDIR_INT;
1237 } else if (isAsecInDirectory(Volume::SEC_ASECDIR_EXT, asecName)) {
1238 dir = Volume::SEC_ASECDIR_EXT;
1239 } else {
1240 free(asecName);
1241 return -1;
1242 }
1243
1244 if (directory != NULL) {
1245 *directory = dir;
1246 }
1247
1248 if (asecPath != NULL) {
1249 int written = snprintf(asecPath, asecPathLen, "%s/%s", dir, asecName);
rpcraigd1c226f2012-10-09 06:58:16 -04001250 if ((written < 0) || (size_t(written) >= asecPathLen)) {
1251 SLOGE("findAsec failed for %s: couldn't construct ASEC path", id);
Kenny Root344ca102012-04-03 17:23:01 -07001252 free(asecName);
1253 return -1;
1254 }
1255 }
1256
1257 free(asecName);
1258 return 0;
1259}
1260
Jeff Sharkey43ed1232014-08-22 12:29:05 -07001261int VolumeManager::mountAsec(const char *id, const char *key, int ownerUid, bool readOnly) {
San Mehata19b2502010-01-06 10:33:53 -08001262 char asecFileName[255];
1263 char mountPoint[255];
1264
Nick Kralevich0de7c612014-01-27 14:58:06 -08001265 if (!isLegalAsecId(id)) {
1266 SLOGE("mountAsec: Invalid asec id \"%s\"", id);
1267 errno = EINVAL;
1268 return -1;
1269 }
1270
Kenny Root344ca102012-04-03 17:23:01 -07001271 if (findAsec(id, asecFileName, sizeof(asecFileName))) {
1272 SLOGE("Couldn't find ASEC %s", id);
1273 return -1;
1274 }
1275
rpcraigd1c226f2012-10-09 06:58:16 -04001276 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::ASECDIR, id);
1277 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
Colin Cross59846b62014-02-06 20:34:29 -08001278 SLOGE("ASEC mount failed for %s: couldn't construct mountpoint", id);
rpcraigd1c226f2012-10-09 06:58:16 -04001279 return -1;
1280 }
San Mehata19b2502010-01-06 10:33:53 -08001281
1282 if (isMountpointMounted(mountPoint)) {
San Mehat97ac40e2010-03-24 10:24:19 -07001283 SLOGE("ASEC %s already mounted", id);
San Mehata19b2502010-01-06 10:33:53 -08001284 errno = EBUSY;
1285 return -1;
1286 }
1287
San Mehatd9a4e352010-03-12 13:32:47 -08001288 char idHash[33];
1289 if (!asecHash(id, idHash, sizeof(idHash))) {
San Mehat97ac40e2010-03-24 10:24:19 -07001290 SLOGE("Hash of '%s' failed (%s)", id, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -08001291 return -1;
1292 }
Kenny Root7b18a7b2010-03-15 13:13:41 -07001293
San Mehata19b2502010-01-06 10:33:53 -08001294 char loopDevice[255];
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001295 if (setupLoopDevice(loopDevice, sizeof(loopDevice), asecFileName, idHash, mDebug))
1296 return -1;
San Mehatb78a32c2010-01-10 13:02:12 -08001297
1298 char dmDevice[255];
1299 bool cleanupDm = false;
Tim Murray8439dc92014-12-15 11:56:11 -08001300
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001301 unsigned long nr_sec = 0;
San Mehatfcf24fe2010-03-03 12:37:32 -08001302 struct asec_superblock sb;
San Mehatfcf24fe2010-03-03 12:37:32 -08001303
Kenny Root344ca102012-04-03 17:23:01 -07001304 if (Loop::lookupInfo(loopDevice, &sb, &nr_sec)) {
1305 return -1;
1306 }
San Mehatfcf24fe2010-03-03 12:37:32 -08001307
San Mehatd9a4e352010-03-12 13:32:47 -08001308 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001309 SLOGD("Container sb magic/ver (%.8x/%.2x)", sb.magic, sb.ver);
San Mehatd9a4e352010-03-12 13:32:47 -08001310 }
San Mehatfcf24fe2010-03-03 12:37:32 -08001311 if (sb.magic != ASEC_SB_MAGIC || sb.ver != ASEC_SB_VER) {
San Mehat97ac40e2010-03-24 10:24:19 -07001312 SLOGE("Bad container magic/version (%.8x/%.2x)", sb.magic, sb.ver);
San Mehatfcf24fe2010-03-03 12:37:32 -08001313 Loop::destroyByDevice(loopDevice);
1314 errno = EMEDIUMTYPE;
1315 return -1;
1316 }
1317 nr_sec--; // We don't want the devmapping to extend onto our superblock
1318
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001319 if (setupDevMapperDevice(dmDevice, sizeof(dmDevice), loopDevice, asecFileName, key, idHash , nr_sec, &cleanupDm, mDebug)) {
1320 Loop::destroyByDevice(loopDevice);
1321 return -1;
San Mehata19b2502010-01-06 10:33:53 -08001322 }
1323
Kenny Root344ca102012-04-03 17:23:01 -07001324 if (mkdir(mountPoint, 0000)) {
San Mehatb78a32c2010-01-10 13:02:12 -08001325 if (errno != EEXIST) {
San Mehat97ac40e2010-03-24 10:24:19 -07001326 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001327 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -08001328 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -08001329 }
1330 Loop::destroyByDevice(loopDevice);
1331 return -1;
1332 }
San Mehata19b2502010-01-06 10:33:53 -08001333 }
1334
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001335 /*
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001336 * Wait for the device mapper node to be created.
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001337 */
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001338 waitForDevMapper(dmDevice);
Kenny Rootcdc2a1c2012-05-03 13:49:46 -07001339
Kenny Root344ca102012-04-03 17:23:01 -07001340 int result;
1341 if (sb.c_opts & ASEC_SB_C_OPTS_EXT4) {
Jeff Sharkey43ed1232014-08-22 12:29:05 -07001342 result = Ext4::doMount(dmDevice, mountPoint, readOnly, false, readOnly);
Kenny Root344ca102012-04-03 17:23:01 -07001343 } else {
Jeff Sharkey43ed1232014-08-22 12:29:05 -07001344 result = Fat::doMount(dmDevice, mountPoint, readOnly, false, readOnly, ownerUid, 0, 0222, false);
Kenny Root344ca102012-04-03 17:23:01 -07001345 }
1346
1347 if (result) {
San Mehat97ac40e2010-03-24 10:24:19 -07001348 SLOGE("ASEC mount failed (%s)", strerror(errno));
San Mehatb78a32c2010-01-10 13:02:12 -08001349 if (cleanupDm) {
San Mehatd9a4e352010-03-12 13:32:47 -08001350 Devmapper::destroy(idHash);
San Mehatb78a32c2010-01-10 13:02:12 -08001351 }
1352 Loop::destroyByDevice(loopDevice);
San Mehata19b2502010-01-06 10:33:53 -08001353 return -1;
1354 }
1355
Kenny Rootcbacf782010-09-24 15:11:48 -07001356 mActiveContainers->push_back(new ContainerData(strdup(id), ASEC));
San Mehatd9a4e352010-03-12 13:32:47 -08001357 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -07001358 SLOGD("ASEC %s mounted", id);
San Mehatd9a4e352010-03-12 13:32:47 -08001359 }
San Mehata19b2502010-01-06 10:33:53 -08001360 return 0;
1361}
1362
Kenny Root93ecb382012-08-09 11:28:37 -07001363Volume* VolumeManager::getVolumeForFile(const char *fileName) {
1364 VolumeCollection::iterator i;
1365
1366 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -07001367 const char* mountPoint = (*i)->getFuseMountpoint();
Kenny Root93ecb382012-08-09 11:28:37 -07001368 if (!strncmp(fileName, mountPoint, strlen(mountPoint))) {
1369 return *i;
1370 }
1371 }
1372
1373 return NULL;
1374}
1375
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001376/**
1377 * Mounts an image file <code>img</code>.
1378 */
Jeff Sharkey69479042012-09-25 16:14:57 -07001379int VolumeManager::mountObb(const char *img, const char *key, int ownerGid) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001380 char mountPoint[255];
1381
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001382 char idHash[33];
1383 if (!asecHash(img, idHash, sizeof(idHash))) {
1384 SLOGE("Hash of '%s' failed (%s)", img, strerror(errno));
1385 return -1;
1386 }
1387
rpcraigd1c226f2012-10-09 06:58:16 -04001388 int written = snprintf(mountPoint, sizeof(mountPoint), "%s/%s", Volume::LOOPDIR, idHash);
1389 if ((written < 0) || (size_t(written) >= sizeof(mountPoint))) {
Colin Cross59846b62014-02-06 20:34:29 -08001390 SLOGE("OBB mount failed for %s: couldn't construct mountpoint", img);
rpcraigd1c226f2012-10-09 06:58:16 -04001391 return -1;
1392 }
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001393
1394 if (isMountpointMounted(mountPoint)) {
1395 SLOGE("Image %s already mounted", img);
1396 errno = EBUSY;
1397 return -1;
1398 }
1399
1400 char loopDevice[255];
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001401 if (setupLoopDevice(loopDevice, sizeof(loopDevice), img, idHash, mDebug))
1402 return -1;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001403
1404 char dmDevice[255];
1405 bool cleanupDm = false;
1406 int fd;
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001407 unsigned long nr_sec = 0;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001408
1409 if ((fd = open(loopDevice, O_RDWR)) < 0) {
1410 SLOGE("Failed to open loopdevice (%s)", strerror(errno));
1411 Loop::destroyByDevice(loopDevice);
1412 return -1;
1413 }
1414
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001415 get_blkdev_size(fd, &nr_sec);
1416 if (nr_sec == 0) {
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001417 SLOGE("Failed to get loop size (%s)", strerror(errno));
1418 Loop::destroyByDevice(loopDevice);
1419 close(fd);
1420 return -1;
1421 }
1422
1423 close(fd);
1424
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +09001425 if (setupDevMapperDevice(dmDevice, sizeof(loopDevice), loopDevice, img,key, idHash, nr_sec, &cleanupDm, mDebug)) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -07001426 Loop::destroyByDevice(loopDevice);
1427 return -1;
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001428 }
1429
1430 if (mkdir(mountPoint, 0755)) {
1431 if (errno != EEXIST) {
1432 SLOGE("Mountpoint creation failed (%s)", strerror(errno));
1433 if (cleanupDm) {
1434 Devmapper::destroy(idHash);
1435 }
1436 Loop::destroyByDevice(loopDevice);
1437 return -1;
1438 }
1439 }
1440
yoshiyuki hama476a6272015-01-28 16:37:23 +09001441 /*
1442 * Wait for the device mapper node to be created.
1443 */
1444 waitForDevMapper(dmDevice);
1445
Jeff Sharkey69479042012-09-25 16:14:57 -07001446 if (Fat::doMount(dmDevice, mountPoint, true, false, true, 0, ownerGid,
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001447 0227, false)) {
1448 SLOGE("Image mount failed (%s)", strerror(errno));
1449 if (cleanupDm) {
1450 Devmapper::destroy(idHash);
1451 }
1452 Loop::destroyByDevice(loopDevice);
1453 return -1;
1454 }
1455
Kenny Rootcbacf782010-09-24 15:11:48 -07001456 mActiveContainers->push_back(new ContainerData(strdup(img), OBB));
Kenny Rootfb7c4d52010-06-30 18:48:41 -07001457 if (mDebug) {
1458 SLOGD("Image %s mounted", img);
1459 }
1460 return 0;
1461}
1462
San Mehat49e2bce2009-10-12 16:29:01 -07001463int VolumeManager::mountVolume(const char *label) {
1464 Volume *v = lookupVolume(label);
1465
1466 if (!v) {
1467 errno = ENOENT;
1468 return -1;
1469 }
1470
San Mehata2677e42009-12-13 10:40:18 -08001471 return v->mountVol();
1472}
1473
Kenny Root508c0e12010-07-12 09:59:49 -07001474int VolumeManager::listMountedObbs(SocketClient* cli) {
Yabin Cuid1104f72015-01-02 13:28:28 -08001475 FILE *fp = setmntent("/proc/mounts", "r");
1476 if (fp == NULL) {
Kenny Root508c0e12010-07-12 09:59:49 -07001477 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
1478 return -1;
1479 }
1480
1481 // Create a string to compare against that has a trailing slash
Kenny Root93ecb382012-08-09 11:28:37 -07001482 int loopDirLen = strlen(Volume::LOOPDIR);
Kenny Root508c0e12010-07-12 09:59:49 -07001483 char loopDir[loopDirLen + 2];
1484 strcpy(loopDir, Volume::LOOPDIR);
1485 loopDir[loopDirLen++] = '/';
1486 loopDir[loopDirLen] = '\0';
1487
Yabin Cuid1104f72015-01-02 13:28:28 -08001488 mntent* mentry;
1489 while ((mentry = getmntent(fp)) != NULL) {
1490 if (!strncmp(mentry->mnt_dir, loopDir, loopDirLen)) {
1491 int fd = open(mentry->mnt_fsname, O_RDONLY);
Kenny Root508c0e12010-07-12 09:59:49 -07001492 if (fd >= 0) {
1493 struct loop_info64 li;
1494 if (ioctl(fd, LOOP_GET_STATUS64, &li) >= 0) {
1495 cli->sendMsg(ResponseCode::AsecListResult,
1496 (const char*) li.lo_file_name, false);
1497 }
1498 close(fd);
1499 }
1500 }
1501 }
Yabin Cuid1104f72015-01-02 13:28:28 -08001502 endmntent(fp);
Kenny Root508c0e12010-07-12 09:59:49 -07001503 return 0;
1504}
1505
San Mehateba65e92010-01-29 05:15:16 -08001506int VolumeManager::shareEnabled(const char *label, const char *method, bool *enabled) {
1507 Volume *v = lookupVolume(label);
1508
1509 if (!v) {
1510 errno = ENOENT;
1511 return -1;
1512 }
1513
1514 if (strcmp(method, "ums")) {
1515 errno = ENOSYS;
1516 return -1;
1517 }
1518
1519 if (v->getState() != Volume::State_Shared) {
San Mehateba65e92010-01-29 05:15:16 -08001520 *enabled = false;
San Mehatb9aed742010-02-04 15:07:01 -08001521 } else {
1522 *enabled = true;
San Mehateba65e92010-01-29 05:15:16 -08001523 }
1524 return 0;
1525}
1526
San Mehata2677e42009-12-13 10:40:18 -08001527int VolumeManager::shareVolume(const char *label, const char *method) {
1528 Volume *v = lookupVolume(label);
1529
1530 if (!v) {
1531 errno = ENOENT;
1532 return -1;
1533 }
1534
1535 /*
1536 * Eventually, we'll want to support additional share back-ends,
1537 * some of which may work while the media is mounted. For now,
1538 * we just support UMS
1539 */
1540 if (strcmp(method, "ums")) {
1541 errno = ENOSYS;
1542 return -1;
1543 }
1544
1545 if (v->getState() == Volume::State_NoMedia) {
1546 errno = ENODEV;
1547 return -1;
1548 }
1549
San Mehat49e2bce2009-10-12 16:29:01 -07001550 if (v->getState() != Volume::State_Idle) {
San Mehata2677e42009-12-13 10:40:18 -08001551 // You need to unmount manually befoe sharing
San Mehat49e2bce2009-10-12 16:29:01 -07001552 errno = EBUSY;
1553 return -1;
1554 }
1555
Ken Sumrall3b170052011-07-11 15:38:57 -07001556 if (mVolManagerDisabled) {
1557 errno = EBUSY;
1558 return -1;
1559 }
1560
Mike Lockwood2dfe2972010-09-17 18:50:51 -04001561 dev_t d = v->getShareDevice();
San Mehata2677e42009-12-13 10:40:18 -08001562 if ((MAJOR(d) == 0) && (MINOR(d) == 0)) {
1563 // This volume does not support raw disk access
1564 errno = EINVAL;
1565 return -1;
1566 }
1567
1568 int fd;
1569 char nodepath[255];
rpcraigd1c226f2012-10-09 06:58:16 -04001570 int written = snprintf(nodepath,
San Mehata2677e42009-12-13 10:40:18 -08001571 sizeof(nodepath), "/dev/block/vold/%d:%d",
Colin Cross346c5b22014-01-22 23:59:41 -08001572 major(d), minor(d));
San Mehata2677e42009-12-13 10:40:18 -08001573
rpcraigd1c226f2012-10-09 06:58:16 -04001574 if ((written < 0) || (size_t(written) >= sizeof(nodepath))) {
1575 SLOGE("shareVolume failed: couldn't construct nodepath");
1576 return -1;
1577 }
1578
Mike Lockwood97f2fc12011-06-07 10:51:38 -07001579 if ((fd = open(MASS_STORAGE_FILE_PATH, O_WRONLY)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001580 SLOGE("Unable to open ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001581 return -1;
1582 }
1583
1584 if (write(fd, nodepath, strlen(nodepath)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001585 SLOGE("Unable to write to ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001586 close(fd);
1587 return -1;
1588 }
1589
1590 close(fd);
1591 v->handleVolumeShared();
Mike Lockwooda28056b2010-10-28 15:21:24 -04001592 if (mUmsSharingCount++ == 0) {
1593 FILE* fp;
1594 mSavedDirtyRatio = -1; // in case we fail
1595 if ((fp = fopen("/proc/sys/vm/dirty_ratio", "r+"))) {
1596 char line[16];
1597 if (fgets(line, sizeof(line), fp) && sscanf(line, "%d", &mSavedDirtyRatio)) {
1598 fprintf(fp, "%d\n", mUmsDirtyRatio);
1599 } else {
1600 SLOGE("Failed to read dirty_ratio (%s)", strerror(errno));
1601 }
1602 fclose(fp);
1603 } else {
1604 SLOGE("Failed to open /proc/sys/vm/dirty_ratio (%s)", strerror(errno));
1605 }
1606 }
San Mehata2677e42009-12-13 10:40:18 -08001607 return 0;
1608}
1609
1610int VolumeManager::unshareVolume(const char *label, const char *method) {
1611 Volume *v = lookupVolume(label);
1612
1613 if (!v) {
1614 errno = ENOENT;
1615 return -1;
1616 }
1617
1618 if (strcmp(method, "ums")) {
1619 errno = ENOSYS;
1620 return -1;
1621 }
1622
1623 if (v->getState() != Volume::State_Shared) {
1624 errno = EINVAL;
1625 return -1;
1626 }
1627
San Mehata2677e42009-12-13 10:40:18 -08001628 int fd;
Mike Lockwood97f2fc12011-06-07 10:51:38 -07001629 if ((fd = open(MASS_STORAGE_FILE_PATH, O_WRONLY)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001630 SLOGE("Unable to open ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001631 return -1;
1632 }
1633
1634 char ch = 0;
1635 if (write(fd, &ch, 1) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -07001636 SLOGE("Unable to write to ums lunfile (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -08001637 close(fd);
1638 return -1;
1639 }
1640
1641 close(fd);
1642 v->handleVolumeUnshared();
Mike Lockwooda28056b2010-10-28 15:21:24 -04001643 if (--mUmsSharingCount == 0 && mSavedDirtyRatio != -1) {
1644 FILE* fp;
1645 if ((fp = fopen("/proc/sys/vm/dirty_ratio", "r+"))) {
1646 fprintf(fp, "%d\n", mSavedDirtyRatio);
1647 fclose(fp);
1648 } else {
1649 SLOGE("Failed to open /proc/sys/vm/dirty_ratio (%s)", strerror(errno));
1650 }
1651 mSavedDirtyRatio = -1;
1652 }
San Mehata2677e42009-12-13 10:40:18 -08001653 return 0;
San Mehat49e2bce2009-10-12 16:29:01 -07001654}
1655
Ken Sumrall3b170052011-07-11 15:38:57 -07001656extern "C" int vold_disableVol(const char *label) {
Ken Sumrall29d8da82011-05-18 17:20:07 -07001657 VolumeManager *vm = VolumeManager::Instance();
Ken Sumrall3b170052011-07-11 15:38:57 -07001658 vm->disableVolumeManager();
1659 vm->unshareVolume(label, "ums");
Ken Sumrall0b8b5972011-08-31 16:14:23 -07001660 return vm->unmountVolume(label, true, false);
Ken Sumrall29d8da82011-05-18 17:20:07 -07001661}
1662
1663extern "C" int vold_getNumDirectVolumes(void) {
1664 VolumeManager *vm = VolumeManager::Instance();
1665 return vm->getNumDirectVolumes();
1666}
1667
1668int VolumeManager::getNumDirectVolumes(void) {
1669 VolumeCollection::iterator i;
1670 int n=0;
1671
1672 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
1673 if ((*i)->getShareDevice() != (dev_t)0) {
1674 n++;
1675 }
1676 }
1677 return n;
1678}
1679
1680extern "C" int vold_getDirectVolumeList(struct volume_info *vol_list) {
1681 VolumeManager *vm = VolumeManager::Instance();
1682 return vm->getDirectVolumeList(vol_list);
1683}
1684
1685int VolumeManager::getDirectVolumeList(struct volume_info *vol_list) {
1686 VolumeCollection::iterator i;
1687 int n=0;
1688 dev_t d;
1689
1690 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
1691 if ((d=(*i)->getShareDevice()) != (dev_t)0) {
1692 (*i)->getVolInfo(&vol_list[n]);
1693 snprintf(vol_list[n].blk_dev, sizeof(vol_list[n].blk_dev),
Colin Cross346c5b22014-01-22 23:59:41 -08001694 "/dev/block/vold/%d:%d", major(d), minor(d));
Ken Sumrall29d8da82011-05-18 17:20:07 -07001695 n++;
1696 }
1697 }
1698
1699 return 0;
1700}
1701
Ken Sumrall0b8b5972011-08-31 16:14:23 -07001702int VolumeManager::unmountVolume(const char *label, bool force, bool revert) {
San Mehat49e2bce2009-10-12 16:29:01 -07001703 Volume *v = lookupVolume(label);
1704
1705 if (!v) {
1706 errno = ENOENT;
1707 return -1;
1708 }
1709
San Mehata2677e42009-12-13 10:40:18 -08001710 if (v->getState() == Volume::State_NoMedia) {
1711 errno = ENODEV;
1712 return -1;
1713 }
1714
San Mehat49e2bce2009-10-12 16:29:01 -07001715 if (v->getState() != Volume::State_Mounted) {
San Mehat97ac40e2010-03-24 10:24:19 -07001716 SLOGW("Attempt to unmount volume which isn't mounted (%d)\n",
San Mehata2677e42009-12-13 10:40:18 -08001717 v->getState());
San Mehat49e2bce2009-10-12 16:29:01 -07001718 errno = EBUSY;
Ken Sumrall319b1042011-06-14 14:01:55 -07001719 return UNMOUNT_NOT_MOUNTED_ERR;
San Mehat49e2bce2009-10-12 16:29:01 -07001720 }
1721
San Mehat1a06eda2010-04-15 12:58:50 -07001722 cleanupAsec(v, force);
San Mehat88705162010-01-15 09:26:28 -08001723
Ken Sumrall0b8b5972011-08-31 16:14:23 -07001724 return v->unmountVol(force, revert);
San Mehat49e2bce2009-10-12 16:29:01 -07001725}
1726
Ken Sumrall425524d2012-06-14 20:55:28 -07001727extern "C" int vold_unmountAllAsecs(void) {
1728 int rc;
1729
1730 VolumeManager *vm = VolumeManager::Instance();
1731 rc = vm->unmountAllAsecsInDir(Volume::SEC_ASECDIR_EXT);
1732 if (vm->unmountAllAsecsInDir(Volume::SEC_ASECDIR_INT)) {
1733 rc = -1;
1734 }
1735 return rc;
1736}
1737
1738#define ID_BUF_LEN 256
1739#define ASEC_SUFFIX ".asec"
1740#define ASEC_SUFFIX_LEN (sizeof(ASEC_SUFFIX) - 1)
1741int VolumeManager::unmountAllAsecsInDir(const char *directory) {
1742 DIR *d = opendir(directory);
1743 int rc = 0;
1744
1745 if (!d) {
1746 SLOGE("Could not open asec dir %s", directory);
1747 return -1;
1748 }
1749
1750 size_t dirent_len = offsetof(struct dirent, d_name) +
Elliott Hughes8c480f72012-10-26 16:57:19 -07001751 fpathconf(dirfd(d), _PC_NAME_MAX) + 1;
Ken Sumrall425524d2012-06-14 20:55:28 -07001752
1753 struct dirent *dent = (struct dirent *) malloc(dirent_len);
1754 if (dent == NULL) {
1755 SLOGE("Failed to allocate memory for asec dir");
1756 return -1;
1757 }
1758
1759 struct dirent *result;
1760 while (!readdir_r(d, dent, &result) && result != NULL) {
1761 if (dent->d_name[0] == '.')
1762 continue;
1763 if (dent->d_type != DT_REG)
1764 continue;
1765 size_t name_len = strlen(dent->d_name);
1766 if (name_len > 5 && name_len < (ID_BUF_LEN + ASEC_SUFFIX_LEN - 1) &&
1767 !strcmp(&dent->d_name[name_len - 5], ASEC_SUFFIX)) {
1768 char id[ID_BUF_LEN];
1769 strlcpy(id, dent->d_name, name_len - 4);
1770 if (unmountAsec(id, true)) {
1771 /* Register the error, but try to unmount more asecs */
1772 rc = -1;
1773 }
1774 }
1775 }
1776 closedir(d);
1777
1778 free(dent);
1779
1780 return rc;
1781}
1782
San Mehata2677e42009-12-13 10:40:18 -08001783/*
1784 * Looks up a volume by it's label or mount-point
1785 */
San Mehat49e2bce2009-10-12 16:29:01 -07001786Volume *VolumeManager::lookupVolume(const char *label) {
1787 VolumeCollection::iterator i;
1788
1789 for (i = mVolumes->begin(); i != mVolumes->end(); ++i) {
San Mehata2677e42009-12-13 10:40:18 -08001790 if (label[0] == '/') {
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -07001791 if (!strcmp(label, (*i)->getFuseMountpoint()))
San Mehata2677e42009-12-13 10:40:18 -08001792 return (*i);
1793 } else {
1794 if (!strcmp(label, (*i)->getLabel()))
1795 return (*i);
1796 }
San Mehat49e2bce2009-10-12 16:29:01 -07001797 }
1798 return NULL;
1799}
San Mehata19b2502010-01-06 10:33:53 -08001800
1801bool VolumeManager::isMountpointMounted(const char *mp)
1802{
Yabin Cuid1104f72015-01-02 13:28:28 -08001803 FILE *fp = setmntent("/proc/mounts", "r");
1804 if (fp == NULL) {
San Mehat97ac40e2010-03-24 10:24:19 -07001805 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -08001806 return false;
1807 }
1808
Yabin Cuid1104f72015-01-02 13:28:28 -08001809 bool found_mp = false;
1810 mntent* mentry;
1811 while ((mentry = getmntent(fp)) != NULL) {
1812 if (strcmp(mentry->mnt_dir, mp) == 0) {
1813 found_mp = true;
1814 break;
San Mehata19b2502010-01-06 10:33:53 -08001815 }
San Mehata19b2502010-01-06 10:33:53 -08001816 }
Yabin Cuid1104f72015-01-02 13:28:28 -08001817 endmntent(fp);
1818 return found_mp;
San Mehata19b2502010-01-06 10:33:53 -08001819}
1820
San Mehat1a06eda2010-04-15 12:58:50 -07001821int VolumeManager::cleanupAsec(Volume *v, bool force) {
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07001822 int rc = 0;
Kenny Root93ecb382012-08-09 11:28:37 -07001823
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07001824 char asecFileName[255];
1825
1826 AsecIdCollection removeAsec;
1827 AsecIdCollection removeObb;
1828
Kenny Root93ecb382012-08-09 11:28:37 -07001829 for (AsecIdCollection::iterator it = mActiveContainers->begin(); it != mActiveContainers->end();
1830 ++it) {
Kenny Rootcbacf782010-09-24 15:11:48 -07001831 ContainerData* cd = *it;
Kenny Root93ecb382012-08-09 11:28:37 -07001832
Kenny Rootcbacf782010-09-24 15:11:48 -07001833 if (cd->type == ASEC) {
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07001834 if (findAsec(cd->id, asecFileName, sizeof(asecFileName))) {
1835 SLOGE("Couldn't find ASEC %s; cleaning up", cd->id);
1836 removeAsec.push_back(cd);
1837 } else {
1838 SLOGD("Found ASEC at path %s", asecFileName);
1839 if (!strncmp(asecFileName, Volume::SEC_ASECDIR_EXT,
1840 strlen(Volume::SEC_ASECDIR_EXT))) {
1841 removeAsec.push_back(cd);
1842 }
1843 }
Kenny Rootcbacf782010-09-24 15:11:48 -07001844 } else if (cd->type == OBB) {
Kenny Root93ecb382012-08-09 11:28:37 -07001845 if (v == getVolumeForFile(cd->id)) {
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07001846 removeObb.push_back(cd);
Kenny Rootcbacf782010-09-24 15:11:48 -07001847 }
1848 } else {
1849 SLOGE("Unknown container type %d!", cd->type);
San Mehat1a06eda2010-04-15 12:58:50 -07001850 }
1851 }
Kenny Root93ecb382012-08-09 11:28:37 -07001852
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07001853 for (AsecIdCollection::iterator it = removeAsec.begin(); it != removeAsec.end(); ++it) {
Kenny Root93ecb382012-08-09 11:28:37 -07001854 ContainerData *cd = *it;
Jeff Sharkey8c2c15b2013-10-17 15:17:19 -07001855 SLOGI("Unmounting ASEC %s (dependent on %s)", cd->id, v->getLabel());
1856 if (unmountAsec(cd->id, force)) {
1857 SLOGE("Failed to unmount ASEC %s (%s)", cd->id, strerror(errno));
1858 rc = -1;
1859 }
1860 }
1861
1862 for (AsecIdCollection::iterator it = removeObb.begin(); it != removeObb.end(); ++it) {
1863 ContainerData *cd = *it;
1864 SLOGI("Unmounting OBB %s (dependent on %s)", cd->id, v->getLabel());
Kenny Root93ecb382012-08-09 11:28:37 -07001865 if (unmountObb(cd->id, force)) {
1866 SLOGE("Failed to unmount OBB %s (%s)", cd->id, strerror(errno));
1867 rc = -1;
1868 }
1869 }
1870
1871 return rc;
San Mehat1a06eda2010-04-15 12:58:50 -07001872}
1873
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001874int VolumeManager::mkdirs(char* path) {
Cylen Yao27cfee32014-05-02 19:23:42 +08001875 // Require that path lives under a volume we manage and is mounted
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001876 const char* emulated_source = getenv("EMULATED_STORAGE_SOURCE");
1877 const char* root = NULL;
Marco Nelissen5ab02e72013-10-15 15:22:28 -07001878 if (emulated_source && !strncmp(path, emulated_source, strlen(emulated_source))) {
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001879 root = emulated_source;
1880 } else {
1881 Volume* vol = getVolumeForFile(path);
Cylen Yao27cfee32014-05-02 19:23:42 +08001882 if (vol && vol->getState() == Volume::State_Mounted) {
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001883 root = vol->getMountpoint();
1884 }
1885 }
1886
1887 if (!root) {
Cylen Yao27cfee32014-05-02 19:23:42 +08001888 SLOGE("Failed to find mounted volume for %s", path);
Jeff Sharkey71ebe152013-09-17 17:24:38 -07001889 return -EINVAL;
1890 }
1891
1892 /* fs_mkdirs() does symlink checking and relative path enforcement */
1893 return fs_mkdirs(path, 0700);
1894}