blob: a71000e9e309b9d016e12ec5e9684fb2dae9d1b9 [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
San Mehat49e2bce2009-10-12 16:29:01 -070017#include <stdlib.h>
San Mehatf1b736b2009-10-10 17:22:08 -070018#include <string.h>
San Mehat49e2bce2009-10-12 16:29:01 -070019#include <dirent.h>
20#include <errno.h>
21#include <fcntl.h>
22
23#include <sys/types.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26#include <sys/mman.h>
San Mehata2677e42009-12-13 10:40:18 -080027#include <sys/mount.h>
Ken Sumrall29d8da82011-05-18 17:20:07 -070028#include <sys/param.h>
San Mehata2677e42009-12-13 10:40:18 -080029
30#include <linux/kdev_t.h>
Olivier Bailly37dcda62010-11-16 10:41:53 -080031#include <linux/fs.h>
San Mehata2677e42009-12-13 10:40:18 -080032
33#include <cutils/properties.h>
34
San Mehat2a5b8ce2010-03-10 12:48:57 -080035#include <diskconfig/diskconfig.h>
San Mehatf1b736b2009-10-10 17:22:08 -070036
Mike Lockwood9092b1d2011-03-23 14:55:49 -040037#include <private/android_filesystem_config.h>
38
San Mehatf1b736b2009-10-10 17:22:08 -070039#define LOG_TAG "Vold"
40
41#include <cutils/log.h>
42
43#include "Volume.h"
San Mehata2677e42009-12-13 10:40:18 -080044#include "VolumeManager.h"
45#include "ResponseCode.h"
San Mehatbf041852010-01-04 10:09:16 -080046#include "Fat.h"
San Mehat586536c2010-02-16 17:12:00 -080047#include "Process.h"
Ken Sumrall29d8da82011-05-18 17:20:07 -070048#include "cryptfs.h"
San Mehatf1b736b2009-10-10 17:22:08 -070049
San Mehata2677e42009-12-13 10:40:18 -080050extern "C" void dos_partition_dec(void const *pp, struct dos_partition *d);
51extern "C" void dos_partition_enc(void *pp, struct dos_partition *d);
San Mehat49e2bce2009-10-12 16:29:01 -070052
San Mehat3bb60202010-02-19 18:14:36 -080053
54/*
55 * Secure directory - stuff that only root can see
56 */
57const char *Volume::SECDIR = "/mnt/secure";
58
59/*
60 * Secure staging directory - where media is mounted for preparation
61 */
62const char *Volume::SEC_STGDIR = "/mnt/secure/staging";
63
64/*
65 * Path to the directory on the media which contains publicly accessable
66 * asec imagefiles. This path will be obscured before the mount is
67 * exposed to non priviledged users.
68 */
San Mehat52c2ccb2010-02-23 18:26:13 -080069const char *Volume::SEC_STG_SECIMGDIR = "/mnt/secure/staging/.android_secure";
San Mehat3bb60202010-02-19 18:14:36 -080070
71/*
Kenny Root344ca102012-04-03 17:23:01 -070072 * Path to external storage where *only* root can access ASEC image files
San Mehat3bb60202010-02-19 18:14:36 -080073 */
Kenny Root344ca102012-04-03 17:23:01 -070074const char *Volume::SEC_ASECDIR_EXT = "/mnt/secure/asec";
San Mehat3bb60202010-02-19 18:14:36 -080075
76/*
Kenny Root344ca102012-04-03 17:23:01 -070077 * Path to internal storage where *only* root can access ASEC image files
78 */
79const char *Volume::SEC_ASECDIR_INT = "/data/app-asec";
80/*
San Mehat3bb60202010-02-19 18:14:36 -080081 * Path to where secure containers are mounted
82 */
83const char *Volume::ASECDIR = "/mnt/asec";
84
Kenny Rootfb7c4d52010-06-30 18:48:41 -070085/*
Kenny Root508c0e12010-07-12 09:59:49 -070086 * Path to where OBBs are mounted
Kenny Rootfb7c4d52010-06-30 18:48:41 -070087 */
Kenny Root508c0e12010-07-12 09:59:49 -070088const char *Volume::LOOPDIR = "/mnt/obb";
Kenny Rootfb7c4d52010-06-30 18:48:41 -070089
San Mehata2677e42009-12-13 10:40:18 -080090static const char *stateToStr(int state) {
91 if (state == Volume::State_Init)
92 return "Initializing";
93 else if (state == Volume::State_NoMedia)
94 return "No-Media";
95 else if (state == Volume::State_Idle)
96 return "Idle-Unmounted";
97 else if (state == Volume::State_Pending)
98 return "Pending";
99 else if (state == Volume::State_Mounted)
100 return "Mounted";
101 else if (state == Volume::State_Unmounting)
102 return "Unmounting";
103 else if (state == Volume::State_Checking)
104 return "Checking";
105 else if (state == Volume::State_Formatting)
106 return "Formatting";
107 else if (state == Volume::State_Shared)
108 return "Shared-Unmounted";
109 else if (state == Volume::State_SharedMnt)
110 return "Shared-Mounted";
111 else
112 return "Unknown-Error";
113}
114
115Volume::Volume(VolumeManager *vm, const char *label, const char *mount_point) {
116 mVm = vm;
San Mehatd9a4e352010-03-12 13:32:47 -0800117 mDebug = false;
San Mehatf1b736b2009-10-10 17:22:08 -0700118 mLabel = strdup(label);
119 mMountpoint = strdup(mount_point);
120 mState = Volume::State_Init;
San Mehata2677e42009-12-13 10:40:18 -0800121 mCurrentlyMountedKdev = -1;
Mike Lockwooda4886f12010-09-21 13:56:35 -0400122 mPartIdx = -1;
Joseph Lehrer507d31b2011-04-11 15:02:50 -0700123 mRetryMount = false;
San Mehatf1b736b2009-10-10 17:22:08 -0700124}
125
126Volume::~Volume() {
127 free(mLabel);
128 free(mMountpoint);
129}
130
San Mehatcb4dac82010-03-14 13:41:54 -0700131void Volume::protectFromAutorunStupidity() {
132 char filename[255];
133
134 snprintf(filename, sizeof(filename), "%s/autorun.inf", SEC_STGDIR);
135 if (!access(filename, F_OK)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700136 SLOGW("Volume contains an autorun.inf! - removing");
San Mehatcb4dac82010-03-14 13:41:54 -0700137 /*
138 * Ensure the filename is all lower-case so
139 * the process killer can find the inode.
140 * Probably being paranoid here but meh.
141 */
142 rename(filename, filename);
143 Process::killProcessesWithOpenFiles(filename, 2);
144 if (unlink(filename)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700145 SLOGE("Failed to remove %s (%s)", filename, strerror(errno));
San Mehatcb4dac82010-03-14 13:41:54 -0700146 }
147 }
148}
149
San Mehatd9a4e352010-03-12 13:32:47 -0800150void Volume::setDebug(bool enable) {
151 mDebug = enable;
152}
153
San Mehata2677e42009-12-13 10:40:18 -0800154dev_t Volume::getDiskDevice() {
155 return MKDEV(0, 0);
156};
157
Mike Lockwood2dfe2972010-09-17 18:50:51 -0400158dev_t Volume::getShareDevice() {
159 return getDiskDevice();
160}
161
San Mehata2677e42009-12-13 10:40:18 -0800162void Volume::handleVolumeShared() {
163}
164
165void Volume::handleVolumeUnshared() {
166}
167
San Mehatfd7f5872009-10-12 11:32:47 -0700168int Volume::handleBlockEvent(NetlinkEvent *evt) {
San Mehatf1b736b2009-10-10 17:22:08 -0700169 errno = ENOSYS;
170 return -1;
171}
172
173void Volume::setState(int state) {
San Mehata2677e42009-12-13 10:40:18 -0800174 char msg[255];
175 int oldState = mState;
176
177 if (oldState == state) {
San Mehat97ac40e2010-03-24 10:24:19 -0700178 SLOGW("Duplicate state (%d)\n", state);
San Mehata2677e42009-12-13 10:40:18 -0800179 return;
180 }
181
Joseph Lehrer507d31b2011-04-11 15:02:50 -0700182 if ((oldState == Volume::State_Pending) && (state != Volume::State_Idle)) {
183 mRetryMount = false;
184 }
185
San Mehatf1b736b2009-10-10 17:22:08 -0700186 mState = state;
San Mehata2677e42009-12-13 10:40:18 -0800187
San Mehat97ac40e2010-03-24 10:24:19 -0700188 SLOGD("Volume %s state changing %d (%s) -> %d (%s)", mLabel,
San Mehata2677e42009-12-13 10:40:18 -0800189 oldState, stateToStr(oldState), mState, stateToStr(mState));
190 snprintf(msg, sizeof(msg),
191 "Volume %s %s state changed from %d (%s) to %d (%s)", getLabel(),
192 getMountpoint(), oldState, stateToStr(oldState), mState,
193 stateToStr(mState));
194
195 mVm->getBroadcaster()->sendBroadcast(ResponseCode::VolumeStateChange,
196 msg, false);
San Mehatf1b736b2009-10-10 17:22:08 -0700197}
San Mehat49e2bce2009-10-12 16:29:01 -0700198
San Mehatdd9b8e92009-10-21 11:06:52 -0700199int Volume::createDeviceNode(const char *path, int major, int minor) {
200 mode_t mode = 0660 | S_IFBLK;
201 dev_t dev = (major << 8) | minor;
202 if (mknod(path, mode, dev) < 0) {
203 if (errno != EEXIST) {
204 return -1;
205 }
206 }
207 return 0;
208}
209
San Mehata2677e42009-12-13 10:40:18 -0800210int Volume::formatVol() {
San Mehat49e2bce2009-10-12 16:29:01 -0700211
San Mehata2677e42009-12-13 10:40:18 -0800212 if (getState() == Volume::State_NoMedia) {
213 errno = ENODEV;
214 return -1;
215 } else if (getState() != Volume::State_Idle) {
216 errno = EBUSY;
San Mehat49e2bce2009-10-12 16:29:01 -0700217 return -1;
218 }
219
San Mehata2677e42009-12-13 10:40:18 -0800220 if (isMountpointMounted(getMountpoint())) {
San Mehat97ac40e2010-03-24 10:24:19 -0700221 SLOGW("Volume is idle but appears to be mounted - fixing");
San Mehata2677e42009-12-13 10:40:18 -0800222 setState(Volume::State_Mounted);
223 // mCurrentlyMountedKdev = XXX
224 errno = EBUSY;
San Mehat49e2bce2009-10-12 16:29:01 -0700225 return -1;
226 }
227
Mike Lockwooda4886f12010-09-21 13:56:35 -0400228 bool formatEntireDevice = (mPartIdx == -1);
San Mehata2677e42009-12-13 10:40:18 -0800229 char devicePath[255];
230 dev_t diskNode = getDiskDevice();
Mike Lockwooda4886f12010-09-21 13:56:35 -0400231 dev_t partNode = MKDEV(MAJOR(diskNode), (formatEntireDevice ? 1 : mPartIdx));
San Mehata2677e42009-12-13 10:40:18 -0800232
San Mehat2a5b8ce2010-03-10 12:48:57 -0800233 setState(Volume::State_Formatting);
San Mehata2677e42009-12-13 10:40:18 -0800234
Chih-Wei Huang64382de2010-11-16 13:18:19 +0800235 int ret = -1;
Mike Lockwooda4886f12010-09-21 13:56:35 -0400236 // Only initialize the MBR if we are formatting the entire device
237 if (formatEntireDevice) {
238 sprintf(devicePath, "/dev/block/vold/%d:%d",
239 MAJOR(diskNode), MINOR(diskNode));
240
241 if (initializeMbr(devicePath)) {
242 SLOGE("Failed to initialize MBR (%s)", strerror(errno));
243 goto err;
244 }
San Mehat49e2bce2009-10-12 16:29:01 -0700245 }
246
San Mehata2677e42009-12-13 10:40:18 -0800247 sprintf(devicePath, "/dev/block/vold/%d:%d",
248 MAJOR(partNode), MINOR(partNode));
San Mehatdd9b8e92009-10-21 11:06:52 -0700249
Mike Lockwooda4886f12010-09-21 13:56:35 -0400250 if (mDebug) {
251 SLOGI("Formatting volume %s (%s)", getLabel(), devicePath);
252 }
253
San Mehatfcf24fe2010-03-03 12:37:32 -0800254 if (Fat::format(devicePath, 0)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700255 SLOGE("Failed to format (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -0800256 goto err;
257 }
258
Chih-Wei Huang64382de2010-11-16 13:18:19 +0800259 ret = 0;
260
San Mehata2677e42009-12-13 10:40:18 -0800261err:
Chih-Wei Huang64382de2010-11-16 13:18:19 +0800262 setState(Volume::State_Idle);
263 return ret;
San Mehata2677e42009-12-13 10:40:18 -0800264}
265
266bool Volume::isMountpointMounted(const char *path) {
267 char device[256];
268 char mount_path[256];
269 char rest[256];
270 FILE *fp;
271 char line[1024];
272
273 if (!(fp = fopen("/proc/mounts", "r"))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700274 SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -0800275 return false;
276 }
277
278 while(fgets(line, sizeof(line), fp)) {
279 line[strlen(line)-1] = '\0';
280 sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
281 if (!strcmp(mount_path, path)) {
282 fclose(fp);
283 return true;
284 }
285
286 }
287
288 fclose(fp);
289 return false;
290}
291
292int Volume::mountVol() {
293 dev_t deviceNodes[4];
294 int n, i, rc = 0;
295 char errmsg[255];
Mike Lockwood85094942011-03-25 12:37:43 -0700296 const char* externalStorage = getenv("EXTERNAL_STORAGE");
297 bool primaryStorage = externalStorage && !strcmp(getMountpoint(), externalStorage);
Ken Sumrall29d8da82011-05-18 17:20:07 -0700298 char decrypt_state[PROPERTY_VALUE_MAX];
299 char crypto_state[PROPERTY_VALUE_MAX];
300 char encrypt_progress[PROPERTY_VALUE_MAX];
301 int flags;
San Mehata2677e42009-12-13 10:40:18 -0800302
Ken Sumrall29d8da82011-05-18 17:20:07 -0700303 property_get("vold.decrypt", decrypt_state, "");
304 property_get("vold.encrypt_progress", encrypt_progress, "");
305
306 /* Don't try to mount the volumes if we have not yet entered the disk password
307 * or are in the process of encrypting.
308 */
309 if ((getState() == Volume::State_NoMedia) ||
310 ((!strcmp(decrypt_state, "1") || encrypt_progress[0]) && primaryStorage)) {
San Mehata2677e42009-12-13 10:40:18 -0800311 snprintf(errmsg, sizeof(errmsg),
312 "Volume %s %s mount failed - no media",
313 getLabel(), getMountpoint());
314 mVm->getBroadcaster()->sendBroadcast(
315 ResponseCode::VolumeMountFailedNoMedia,
316 errmsg, false);
317 errno = ENODEV;
318 return -1;
319 } else if (getState() != Volume::State_Idle) {
320 errno = EBUSY;
Joseph Lehrer507d31b2011-04-11 15:02:50 -0700321 if (getState() == Volume::State_Pending) {
322 mRetryMount = true;
323 }
San Mehata2677e42009-12-13 10:40:18 -0800324 return -1;
325 }
326
327 if (isMountpointMounted(getMountpoint())) {
San Mehat97ac40e2010-03-24 10:24:19 -0700328 SLOGW("Volume is idle but appears to be mounted - fixing");
San Mehata2677e42009-12-13 10:40:18 -0800329 setState(Volume::State_Mounted);
330 // mCurrentlyMountedKdev = XXX
331 return 0;
332 }
333
334 n = getDeviceNodes((dev_t *) &deviceNodes, 4);
335 if (!n) {
San Mehat97ac40e2010-03-24 10:24:19 -0700336 SLOGE("Failed to get device nodes (%s)\n", strerror(errno));
San Mehata2677e42009-12-13 10:40:18 -0800337 return -1;
338 }
339
Ken Sumrall29d8da82011-05-18 17:20:07 -0700340 /* If we're running encrypted, and the volume is marked as encryptable and nonremovable,
341 * and vold is asking to mount the primaryStorage device, then we need to decrypt
342 * that partition, and update the volume object to point to it's new decrypted
343 * block device
344 */
345 property_get("ro.crypto.state", crypto_state, "");
346 flags = getFlags();
347 if (primaryStorage &&
348 ((flags & (VOL_NONREMOVABLE | VOL_ENCRYPTABLE))==(VOL_NONREMOVABLE | VOL_ENCRYPTABLE)) &&
349 !strcmp(crypto_state, "encrypted") && !isDecrypted()) {
350 char new_sys_path[MAXPATHLEN];
351 char nodepath[256];
352 int new_major, new_minor;
353
354 if (n != 1) {
355 /* We only expect one device node returned when mounting encryptable volumes */
356 SLOGE("Too many device nodes returned when mounting %d\n", getMountpoint());
357 return -1;
358 }
359
360 if (cryptfs_setup_volume(getLabel(), MAJOR(deviceNodes[0]), MINOR(deviceNodes[0]),
361 new_sys_path, sizeof(new_sys_path),
362 &new_major, &new_minor)) {
363 SLOGE("Cannot setup encryption mapping for %d\n", getMountpoint());
364 return -1;
365 }
366 /* We now have the new sysfs path for the decrypted block device, and the
367 * majore and minor numbers for it. So, create the device, update the
368 * path to the new sysfs path, and continue.
369 */
370 snprintf(nodepath,
371 sizeof(nodepath), "/dev/block/vold/%d:%d",
372 new_major, new_minor);
373 if (createDeviceNode(nodepath, new_major, new_minor)) {
374 SLOGE("Error making device node '%s' (%s)", nodepath,
375 strerror(errno));
376 }
377
378 // Todo: Either create sys filename from nodepath, or pass in bogus path so
379 // vold ignores state changes on this internal device.
380 updateDeviceInfo(nodepath, new_major, new_minor);
381
382 /* Get the device nodes again, because they just changed */
383 n = getDeviceNodes((dev_t *) &deviceNodes, 4);
384 if (!n) {
385 SLOGE("Failed to get device nodes (%s)\n", strerror(errno));
386 return -1;
387 }
388 }
389
San Mehata2677e42009-12-13 10:40:18 -0800390 for (i = 0; i < n; i++) {
391 char devicePath[255];
392
393 sprintf(devicePath, "/dev/block/vold/%d:%d", MAJOR(deviceNodes[i]),
394 MINOR(deviceNodes[i]));
395
San Mehat97ac40e2010-03-24 10:24:19 -0700396 SLOGI("%s being considered for volume %s\n", devicePath, getLabel());
San Mehata2677e42009-12-13 10:40:18 -0800397
398 errno = 0;
San Mehatbf041852010-01-04 10:09:16 -0800399 setState(Volume::State_Checking);
400
San Mehat3bb60202010-02-19 18:14:36 -0800401 if (Fat::check(devicePath)) {
San Mehata2677e42009-12-13 10:40:18 -0800402 if (errno == ENODATA) {
San Mehat97ac40e2010-03-24 10:24:19 -0700403 SLOGW("%s does not contain a FAT filesystem\n", devicePath);
San Mehata2677e42009-12-13 10:40:18 -0800404 continue;
San Mehata2677e42009-12-13 10:40:18 -0800405 }
San Mehateba65e92010-01-29 05:15:16 -0800406 errno = EIO;
407 /* Badness - abort the mount */
San Mehat97ac40e2010-03-24 10:24:19 -0700408 SLOGE("%s failed FS checks (%s)", devicePath, strerror(errno));
San Mehateba65e92010-01-29 05:15:16 -0800409 setState(Volume::State_Idle);
410 return -1;
San Mehata2677e42009-12-13 10:40:18 -0800411 }
412
San Mehat3bb60202010-02-19 18:14:36 -0800413 /*
414 * Mount the device on our internal staging mountpoint so we can
415 * muck with it before exposing it to non priviledged users.
416 */
San Mehata2677e42009-12-13 10:40:18 -0800417 errno = 0;
Mike Lockwood9092b1d2011-03-23 14:55:49 -0400418 int gid;
419
Mike Lockwood85094942011-03-25 12:37:43 -0700420 if (primaryStorage) {
Mike Lockwood9092b1d2011-03-23 14:55:49 -0400421 // Special case the primary SD card.
422 // For this we grant write access to the SDCARD_RW group.
423 gid = AID_SDCARD_RW;
424 } else {
425 // For secondary external storage we keep things locked up.
426 gid = AID_MEDIA_RW;
427 }
Kenny Roota3e06082010-08-27 08:31:35 -0700428 if (Fat::doMount(devicePath, "/mnt/secure/staging", false, false, false,
Mike Lockwood9092b1d2011-03-23 14:55:49 -0400429 AID_SYSTEM, gid, 0702, true)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700430 SLOGE("%s failed to mount via VFAT (%s)\n", devicePath, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800431 continue;
San Mehata2677e42009-12-13 10:40:18 -0800432 }
433
San Mehat97ac40e2010-03-24 10:24:19 -0700434 SLOGI("Device %s, target %s mounted @ /mnt/secure/staging", devicePath, getMountpoint());
San Mehat3bb60202010-02-19 18:14:36 -0800435
San Mehatcb4dac82010-03-14 13:41:54 -0700436 protectFromAutorunStupidity();
437
Mike Lockwood85094942011-03-25 12:37:43 -0700438 // only create android_secure on primary storage
439 if (primaryStorage && createBindMounts()) {
San Mehat97ac40e2010-03-24 10:24:19 -0700440 SLOGE("Failed to create bindmounts (%s)", strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800441 umount("/mnt/secure/staging");
442 setState(Volume::State_Idle);
443 return -1;
444 }
445
446 /*
447 * Now that the bindmount trickery is done, atomically move the
448 * whole subtree to expose it to non priviledged users.
449 */
450 if (doMoveMount("/mnt/secure/staging", getMountpoint(), false)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700451 SLOGE("Failed to move mount (%s)", strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800452 umount("/mnt/secure/staging");
453 setState(Volume::State_Idle);
454 return -1;
455 }
456 setState(Volume::State_Mounted);
457 mCurrentlyMountedKdev = deviceNodes[i];
458 return 0;
San Mehata2677e42009-12-13 10:40:18 -0800459 }
460
San Mehat97ac40e2010-03-24 10:24:19 -0700461 SLOGE("Volume %s found no suitable devices for mounting :(\n", getLabel());
San Mehata2677e42009-12-13 10:40:18 -0800462 setState(Volume::State_Idle);
463
San Mehateba65e92010-01-29 05:15:16 -0800464 return -1;
San Mehata2677e42009-12-13 10:40:18 -0800465}
466
San Mehat3bb60202010-02-19 18:14:36 -0800467int Volume::createBindMounts() {
468 unsigned long flags;
469
470 /*
San Mehat52c2ccb2010-02-23 18:26:13 -0800471 * Rename old /android_secure -> /.android_secure
472 */
473 if (!access("/mnt/secure/staging/android_secure", R_OK | X_OK) &&
474 access(SEC_STG_SECIMGDIR, R_OK | X_OK)) {
475 if (rename("/mnt/secure/staging/android_secure", SEC_STG_SECIMGDIR)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700476 SLOGE("Failed to rename legacy asec dir (%s)", strerror(errno));
San Mehat52c2ccb2010-02-23 18:26:13 -0800477 }
478 }
479
480 /*
San Mehat3bb60202010-02-19 18:14:36 -0800481 * Ensure that /android_secure exists and is a directory
482 */
483 if (access(SEC_STG_SECIMGDIR, R_OK | X_OK)) {
484 if (errno == ENOENT) {
485 if (mkdir(SEC_STG_SECIMGDIR, 0777)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700486 SLOGE("Failed to create %s (%s)", SEC_STG_SECIMGDIR, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800487 return -1;
488 }
489 } else {
San Mehat97ac40e2010-03-24 10:24:19 -0700490 SLOGE("Failed to access %s (%s)", SEC_STG_SECIMGDIR, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800491 return -1;
492 }
493 } else {
494 struct stat sbuf;
495
496 if (stat(SEC_STG_SECIMGDIR, &sbuf)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700497 SLOGE("Failed to stat %s (%s)", SEC_STG_SECIMGDIR, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800498 return -1;
499 }
500 if (!S_ISDIR(sbuf.st_mode)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700501 SLOGE("%s is not a directory", SEC_STG_SECIMGDIR);
San Mehat3bb60202010-02-19 18:14:36 -0800502 errno = ENOTDIR;
503 return -1;
504 }
505 }
506
507 /*
508 * Bind mount /mnt/secure/staging/android_secure -> /mnt/secure/asec so we'll
509 * have a root only accessable mountpoint for it.
510 */
Kenny Root344ca102012-04-03 17:23:01 -0700511 if (mount(SEC_STG_SECIMGDIR, SEC_ASECDIR_EXT, "", MS_BIND, NULL)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700512 SLOGE("Failed to bind mount points %s -> %s (%s)",
Kenny Root344ca102012-04-03 17:23:01 -0700513 SEC_STG_SECIMGDIR, SEC_ASECDIR_EXT, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800514 return -1;
515 }
516
517 /*
518 * Mount a read-only, zero-sized tmpfs on <mountpoint>/android_secure to
519 * obscure the underlying directory from everybody - sneaky eh? ;)
520 */
521 if (mount("tmpfs", SEC_STG_SECIMGDIR, "tmpfs", MS_RDONLY, "size=0,mode=000,uid=0,gid=0")) {
San Mehat97ac40e2010-03-24 10:24:19 -0700522 SLOGE("Failed to obscure %s (%s)", SEC_STG_SECIMGDIR, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800523 umount("/mnt/asec_secure");
524 return -1;
525 }
526
527 return 0;
528}
529
530int Volume::doMoveMount(const char *src, const char *dst, bool force) {
531 unsigned int flags = MS_MOVE;
532 int retries = 5;
533
534 while(retries--) {
535 if (!mount(src, dst, "", flags, NULL)) {
San Mehatd9a4e352010-03-12 13:32:47 -0800536 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700537 SLOGD("Moved mount %s -> %s sucessfully", src, dst);
San Mehatd9a4e352010-03-12 13:32:47 -0800538 }
San Mehat3bb60202010-02-19 18:14:36 -0800539 return 0;
540 } else if (errno != EBUSY) {
San Mehat97ac40e2010-03-24 10:24:19 -0700541 SLOGE("Failed to move mount %s -> %s (%s)", src, dst, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800542 return -1;
543 }
544 int action = 0;
545
546 if (force) {
547 if (retries == 1) {
548 action = 2; // SIGKILL
549 } else if (retries == 2) {
550 action = 1; // SIGHUP
551 }
552 }
San Mehat97ac40e2010-03-24 10:24:19 -0700553 SLOGW("Failed to move %s -> %s (%s, retries %d, action %d)",
San Mehat3bb60202010-02-19 18:14:36 -0800554 src, dst, strerror(errno), retries, action);
555 Process::killProcessesWithOpenFiles(src, action);
556 usleep(1000*250);
557 }
558
559 errno = EBUSY;
San Mehat97ac40e2010-03-24 10:24:19 -0700560 SLOGE("Giving up on move %s -> %s (%s)", src, dst, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800561 return -1;
562}
563
564int Volume::doUnmount(const char *path, bool force) {
565 int retries = 10;
566
San Mehatd9a4e352010-03-12 13:32:47 -0800567 if (mDebug) {
San Mehat97ac40e2010-03-24 10:24:19 -0700568 SLOGD("Unmounting {%s}, force = %d", path, force);
San Mehatd9a4e352010-03-12 13:32:47 -0800569 }
570
San Mehat3bb60202010-02-19 18:14:36 -0800571 while (retries--) {
572 if (!umount(path) || errno == EINVAL || errno == ENOENT) {
San Mehat97ac40e2010-03-24 10:24:19 -0700573 SLOGI("%s sucessfully unmounted", path);
San Mehat3bb60202010-02-19 18:14:36 -0800574 return 0;
575 }
576
577 int action = 0;
578
579 if (force) {
580 if (retries == 1) {
581 action = 2; // SIGKILL
582 } else if (retries == 2) {
583 action = 1; // SIGHUP
584 }
585 }
586
San Mehat97ac40e2010-03-24 10:24:19 -0700587 SLOGW("Failed to unmount %s (%s, retries %d, action %d)",
San Mehat3bb60202010-02-19 18:14:36 -0800588 path, strerror(errno), retries, action);
589
590 Process::killProcessesWithOpenFiles(path, action);
591 usleep(1000*1000);
592 }
593 errno = EBUSY;
San Mehat97ac40e2010-03-24 10:24:19 -0700594 SLOGE("Giving up on unmount %s (%s)", path, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800595 return -1;
596}
597
Ken Sumrall0b8b5972011-08-31 16:14:23 -0700598int Volume::unmountVol(bool force, bool revert) {
San Mehata2677e42009-12-13 10:40:18 -0800599 int i, rc;
600
601 if (getState() != Volume::State_Mounted) {
San Mehat97ac40e2010-03-24 10:24:19 -0700602 SLOGE("Volume %s unmount request when not mounted", getLabel());
San Mehata2677e42009-12-13 10:40:18 -0800603 errno = EINVAL;
Ken Sumrall319b1042011-06-14 14:01:55 -0700604 return UNMOUNT_NOT_MOUNTED_ERR;
San Mehata2677e42009-12-13 10:40:18 -0800605 }
606
607 setState(Volume::State_Unmounting);
San Mehat4ba89482010-02-18 09:00:18 -0800608 usleep(1000 * 1000); // Give the framework some time to react
San Mehata2677e42009-12-13 10:40:18 -0800609
San Mehat3bb60202010-02-19 18:14:36 -0800610 /*
611 * First move the mountpoint back to our internal staging point
612 * so nobody else can muck with it while we work.
613 */
614 if (doMoveMount(getMountpoint(), SEC_STGDIR, force)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700615 SLOGE("Failed to move mount %s => %s (%s)", getMountpoint(), SEC_STGDIR, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800616 setState(Volume::State_Mounted);
617 return -1;
San Mehata2677e42009-12-13 10:40:18 -0800618 }
619
San Mehatcb4dac82010-03-14 13:41:54 -0700620 protectFromAutorunStupidity();
621
San Mehat3bb60202010-02-19 18:14:36 -0800622 /*
623 * Unmount the tmpfs which was obscuring the asec image directory
624 * from non root users
625 */
626
627 if (doUnmount(Volume::SEC_STG_SECIMGDIR, force)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700628 SLOGE("Failed to unmount tmpfs on %s (%s)", SEC_STG_SECIMGDIR, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800629 goto fail_republish;
San Mehata2677e42009-12-13 10:40:18 -0800630 }
631
San Mehat3bb60202010-02-19 18:14:36 -0800632 /*
633 * Remove the bindmount we were using to keep a reference to
634 * the previously obscured directory.
635 */
636
Kenny Root344ca102012-04-03 17:23:01 -0700637 if (doUnmount(Volume::SEC_ASECDIR_EXT, force)) {
638 SLOGE("Failed to remove bindmount on %s (%s)", SEC_ASECDIR_EXT, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800639 goto fail_remount_tmpfs;
640 }
641
642 /*
643 * Finally, unmount the actual block device from the staging dir
644 */
645 if (doUnmount(Volume::SEC_STGDIR, force)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700646 SLOGE("Failed to unmount %s (%s)", SEC_STGDIR, strerror(errno));
San Mehat3bb60202010-02-19 18:14:36 -0800647 goto fail_recreate_bindmount;
648 }
649
San Mehat97ac40e2010-03-24 10:24:19 -0700650 SLOGI("%s unmounted sucessfully", getMountpoint());
San Mehat3bb60202010-02-19 18:14:36 -0800651
Ken Sumrall0b8b5972011-08-31 16:14:23 -0700652 /* If this is an encrypted volume, and we've been asked to undo
653 * the crypto mapping, then revert the dm-crypt mapping, and revert
654 * the device info to the original values.
655 */
656 if (revert && isDecrypted()) {
657 cryptfs_revert_volume(getLabel());
658 revertDeviceInfo();
659 SLOGI("Encrypted volume %s reverted successfully", getMountpoint());
660 }
661
San Mehat3bb60202010-02-19 18:14:36 -0800662 setState(Volume::State_Idle);
663 mCurrentlyMountedKdev = -1;
664 return 0;
665
666 /*
667 * Failure handling - try to restore everything back the way it was
668 */
669fail_recreate_bindmount:
Kenny Root344ca102012-04-03 17:23:01 -0700670 if (mount(SEC_STG_SECIMGDIR, SEC_ASECDIR_EXT, "", MS_BIND, NULL)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700671 SLOGE("Failed to restore bindmount after failure! - Storage will appear offline!");
San Mehat3bb60202010-02-19 18:14:36 -0800672 goto out_nomedia;
673 }
674fail_remount_tmpfs:
675 if (mount("tmpfs", SEC_STG_SECIMGDIR, "tmpfs", MS_RDONLY, "size=0,mode=0,uid=0,gid=0")) {
San Mehat97ac40e2010-03-24 10:24:19 -0700676 SLOGE("Failed to restore tmpfs after failure! - Storage will appear offline!");
San Mehat3bb60202010-02-19 18:14:36 -0800677 goto out_nomedia;
678 }
679fail_republish:
680 if (doMoveMount(SEC_STGDIR, getMountpoint(), force)) {
San Mehat97ac40e2010-03-24 10:24:19 -0700681 SLOGE("Failed to republish mount after failure! - Storage will appear offline!");
San Mehat3bb60202010-02-19 18:14:36 -0800682 goto out_nomedia;
683 }
684
San Mehata2677e42009-12-13 10:40:18 -0800685 setState(Volume::State_Mounted);
686 return -1;
San Mehat3bb60202010-02-19 18:14:36 -0800687
688out_nomedia:
689 setState(Volume::State_NoMedia);
690 return -1;
San Mehata2677e42009-12-13 10:40:18 -0800691}
San Mehata2677e42009-12-13 10:40:18 -0800692int Volume::initializeMbr(const char *deviceNode) {
San Mehat2a5b8ce2010-03-10 12:48:57 -0800693 struct disk_info dinfo;
San Mehata2677e42009-12-13 10:40:18 -0800694
San Mehat2a5b8ce2010-03-10 12:48:57 -0800695 memset(&dinfo, 0, sizeof(dinfo));
696
697 if (!(dinfo.part_lst = (struct part_info *) malloc(MAX_NUM_PARTS * sizeof(struct part_info)))) {
San Mehat97ac40e2010-03-24 10:24:19 -0700698 SLOGE("Failed to malloc prt_lst");
San Mehata2677e42009-12-13 10:40:18 -0800699 return -1;
700 }
701
San Mehat2a5b8ce2010-03-10 12:48:57 -0800702 memset(dinfo.part_lst, 0, MAX_NUM_PARTS * sizeof(struct part_info));
703 dinfo.device = strdup(deviceNode);
704 dinfo.scheme = PART_SCHEME_MBR;
705 dinfo.sect_size = 512;
706 dinfo.skip_lba = 2048;
707 dinfo.num_lba = 0;
708 dinfo.num_parts = 1;
709
710 struct part_info *pinfo = &dinfo.part_lst[0];
711
712 pinfo->name = strdup("android_sdcard");
713 pinfo->flags |= PART_ACTIVE_FLAG;
714 pinfo->type = PC_PART_TYPE_FAT32;
715 pinfo->len_kb = -1;
716
717 int rc = apply_disk_config(&dinfo, 0);
718
719 if (rc) {
San Mehat97ac40e2010-03-24 10:24:19 -0700720 SLOGE("Failed to apply disk configuration (%d)", rc);
San Mehat2a5b8ce2010-03-10 12:48:57 -0800721 goto out;
San Mehata2677e42009-12-13 10:40:18 -0800722 }
723
San Mehat2a5b8ce2010-03-10 12:48:57 -0800724 out:
725 free(pinfo->name);
726 free(dinfo.device);
727 free(dinfo.part_lst);
San Mehata2677e42009-12-13 10:40:18 -0800728
San Mehat2a5b8ce2010-03-10 12:48:57 -0800729 return rc;
San Mehata2677e42009-12-13 10:40:18 -0800730}