Volume.cpp revision fb7c4d5a8a1031cf0e493ff182dcf458e5fe8c77
1/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdlib.h>
18#include <string.h>
19#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>
27#include <sys/mount.h>
28
29#include <linux/kdev_t.h>
30
31#include <cutils/properties.h>
32
33#include <diskconfig/diskconfig.h>
34
35#define LOG_TAG "Vold"
36
37#include <cutils/log.h>
38
39#include "Volume.h"
40#include "VolumeManager.h"
41#include "ResponseCode.h"
42#include "Fat.h"
43#include "Process.h"
44
45extern "C" void dos_partition_dec(void const *pp, struct dos_partition *d);
46extern "C" void dos_partition_enc(void *pp, struct dos_partition *d);
47
48
49/*
50 * Secure directory - stuff that only root can see
51 */
52const char *Volume::SECDIR            = "/mnt/secure";
53
54/*
55 * Secure staging directory - where media is mounted for preparation
56 */
57const char *Volume::SEC_STGDIR        = "/mnt/secure/staging";
58
59/*
60 * Path to the directory on the media which contains publicly accessable
61 * asec imagefiles. This path will be obscured before the mount is
62 * exposed to non priviledged users.
63 */
64const char *Volume::SEC_STG_SECIMGDIR = "/mnt/secure/staging/.android_secure";
65
66/*
67 * Path to where *only* root can access asec imagefiles
68 */
69const char *Volume::SEC_ASECDIR       = "/mnt/secure/asec";
70
71/*
72 * Path to where secure containers are mounted
73 */
74const char *Volume::ASECDIR           = "/mnt/asec";
75
76/*
77 * Path to where loop devices are mounted
78 */
79const char *Volume::LOOPDIR           = "/mnt/loop";
80
81static const char *stateToStr(int state) {
82    if (state == Volume::State_Init)
83        return "Initializing";
84    else if (state == Volume::State_NoMedia)
85        return "No-Media";
86    else if (state == Volume::State_Idle)
87        return "Idle-Unmounted";
88    else if (state == Volume::State_Pending)
89        return "Pending";
90    else if (state == Volume::State_Mounted)
91        return "Mounted";
92    else if (state == Volume::State_Unmounting)
93        return "Unmounting";
94    else if (state == Volume::State_Checking)
95        return "Checking";
96    else if (state == Volume::State_Formatting)
97        return "Formatting";
98    else if (state == Volume::State_Shared)
99        return "Shared-Unmounted";
100    else if (state == Volume::State_SharedMnt)
101        return "Shared-Mounted";
102    else
103        return "Unknown-Error";
104}
105
106Volume::Volume(VolumeManager *vm, const char *label, const char *mount_point) {
107    mVm = vm;
108    mDebug = false;
109    mLabel = strdup(label);
110    mMountpoint = strdup(mount_point);
111    mState = Volume::State_Init;
112    mCurrentlyMountedKdev = -1;
113}
114
115Volume::~Volume() {
116    free(mLabel);
117    free(mMountpoint);
118}
119
120void Volume::protectFromAutorunStupidity() {
121    char filename[255];
122
123    snprintf(filename, sizeof(filename), "%s/autorun.inf", SEC_STGDIR);
124    if (!access(filename, F_OK)) {
125        SLOGW("Volume contains an autorun.inf! - removing");
126        /*
127         * Ensure the filename is all lower-case so
128         * the process killer can find the inode.
129         * Probably being paranoid here but meh.
130         */
131        rename(filename, filename);
132        Process::killProcessesWithOpenFiles(filename, 2);
133        if (unlink(filename)) {
134            SLOGE("Failed to remove %s (%s)", filename, strerror(errno));
135        }
136    }
137}
138
139void Volume::setDebug(bool enable) {
140    mDebug = enable;
141}
142
143dev_t Volume::getDiskDevice() {
144    return MKDEV(0, 0);
145};
146
147void Volume::handleVolumeShared() {
148}
149
150void Volume::handleVolumeUnshared() {
151}
152
153int Volume::handleBlockEvent(NetlinkEvent *evt) {
154    errno = ENOSYS;
155    return -1;
156}
157
158void Volume::setState(int state) {
159    char msg[255];
160    int oldState = mState;
161
162    if (oldState == state) {
163        SLOGW("Duplicate state (%d)\n", state);
164        return;
165    }
166
167    mState = state;
168
169    SLOGD("Volume %s state changing %d (%s) -> %d (%s)", mLabel,
170         oldState, stateToStr(oldState), mState, stateToStr(mState));
171    snprintf(msg, sizeof(msg),
172             "Volume %s %s state changed from %d (%s) to %d (%s)", getLabel(),
173             getMountpoint(), oldState, stateToStr(oldState), mState,
174             stateToStr(mState));
175
176    mVm->getBroadcaster()->sendBroadcast(ResponseCode::VolumeStateChange,
177                                         msg, false);
178}
179
180int Volume::createDeviceNode(const char *path, int major, int minor) {
181    mode_t mode = 0660 | S_IFBLK;
182    dev_t dev = (major << 8) | minor;
183    if (mknod(path, mode, dev) < 0) {
184        if (errno != EEXIST) {
185            return -1;
186        }
187    }
188    return 0;
189}
190
191int Volume::formatVol() {
192
193    if (getState() == Volume::State_NoMedia) {
194        errno = ENODEV;
195        return -1;
196    } else if (getState() != Volume::State_Idle) {
197        errno = EBUSY;
198        return -1;
199    }
200
201    if (isMountpointMounted(getMountpoint())) {
202        SLOGW("Volume is idle but appears to be mounted - fixing");
203        setState(Volume::State_Mounted);
204        // mCurrentlyMountedKdev = XXX
205        errno = EBUSY;
206        return -1;
207    }
208
209    char devicePath[255];
210    dev_t diskNode = getDiskDevice();
211    dev_t partNode = MKDEV(MAJOR(diskNode), 1); // XXX: Hmmm
212
213    sprintf(devicePath, "/dev/block/vold/%d:%d",
214            MAJOR(diskNode), MINOR(diskNode));
215
216    if (mDebug) {
217        SLOGI("Formatting volume %s (%s)", getLabel(), devicePath);
218    }
219    setState(Volume::State_Formatting);
220
221    if (initializeMbr(devicePath)) {
222        SLOGE("Failed to initialize MBR (%s)", strerror(errno));
223        goto err;
224    }
225
226    sprintf(devicePath, "/dev/block/vold/%d:%d",
227            MAJOR(partNode), MINOR(partNode));
228
229    if (Fat::format(devicePath, 0)) {
230        SLOGE("Failed to format (%s)", strerror(errno));
231        goto err;
232    }
233
234    setState(Volume::State_Idle);
235    return 0;
236err:
237    return -1;
238}
239
240bool Volume::isMountpointMounted(const char *path) {
241    char device[256];
242    char mount_path[256];
243    char rest[256];
244    FILE *fp;
245    char line[1024];
246
247    if (!(fp = fopen("/proc/mounts", "r"))) {
248        SLOGE("Error opening /proc/mounts (%s)", strerror(errno));
249        return false;
250    }
251
252    while(fgets(line, sizeof(line), fp)) {
253        line[strlen(line)-1] = '\0';
254        sscanf(line, "%255s %255s %255s\n", device, mount_path, rest);
255        if (!strcmp(mount_path, path)) {
256            fclose(fp);
257            return true;
258        }
259
260    }
261
262    fclose(fp);
263    return false;
264}
265
266int Volume::mountVol() {
267    dev_t deviceNodes[4];
268    int n, i, rc = 0;
269    char errmsg[255];
270
271    if (getState() == Volume::State_NoMedia) {
272        snprintf(errmsg, sizeof(errmsg),
273                 "Volume %s %s mount failed - no media",
274                 getLabel(), getMountpoint());
275        mVm->getBroadcaster()->sendBroadcast(
276                                         ResponseCode::VolumeMountFailedNoMedia,
277                                         errmsg, false);
278        errno = ENODEV;
279        return -1;
280    } else if (getState() != Volume::State_Idle) {
281        errno = EBUSY;
282        return -1;
283    }
284
285    if (isMountpointMounted(getMountpoint())) {
286        SLOGW("Volume is idle but appears to be mounted - fixing");
287        setState(Volume::State_Mounted);
288        // mCurrentlyMountedKdev = XXX
289        return 0;
290    }
291
292    n = getDeviceNodes((dev_t *) &deviceNodes, 4);
293    if (!n) {
294        SLOGE("Failed to get device nodes (%s)\n", strerror(errno));
295        return -1;
296    }
297
298    for (i = 0; i < n; i++) {
299        char devicePath[255];
300
301        sprintf(devicePath, "/dev/block/vold/%d:%d", MAJOR(deviceNodes[i]),
302                MINOR(deviceNodes[i]));
303
304        SLOGI("%s being considered for volume %s\n", devicePath, getLabel());
305
306        errno = 0;
307        setState(Volume::State_Checking);
308
309        if (Fat::check(devicePath)) {
310            if (errno == ENODATA) {
311                SLOGW("%s does not contain a FAT filesystem\n", devicePath);
312                continue;
313            }
314            errno = EIO;
315            /* Badness - abort the mount */
316            SLOGE("%s failed FS checks (%s)", devicePath, strerror(errno));
317            setState(Volume::State_Idle);
318            return -1;
319        }
320
321        /*
322         * Mount the device on our internal staging mountpoint so we can
323         * muck with it before exposing it to non priviledged users.
324         */
325        errno = 0;
326        if (Fat::doMount(devicePath, "/mnt/secure/staging", false, false, 1000, 1015, 0702, true)) {
327            SLOGE("%s failed to mount via VFAT (%s)\n", devicePath, strerror(errno));
328            continue;
329        }
330
331        SLOGI("Device %s, target %s mounted @ /mnt/secure/staging", devicePath, getMountpoint());
332
333        protectFromAutorunStupidity();
334
335        if (createBindMounts()) {
336            SLOGE("Failed to create bindmounts (%s)", strerror(errno));
337            umount("/mnt/secure/staging");
338            setState(Volume::State_Idle);
339            return -1;
340        }
341
342        /*
343         * Now that the bindmount trickery is done, atomically move the
344         * whole subtree to expose it to non priviledged users.
345         */
346        if (doMoveMount("/mnt/secure/staging", getMountpoint(), false)) {
347            SLOGE("Failed to move mount (%s)", strerror(errno));
348            umount("/mnt/secure/staging");
349            setState(Volume::State_Idle);
350            return -1;
351        }
352        setState(Volume::State_Mounted);
353        mCurrentlyMountedKdev = deviceNodes[i];
354        return 0;
355    }
356
357    SLOGE("Volume %s found no suitable devices for mounting :(\n", getLabel());
358    setState(Volume::State_Idle);
359
360    return -1;
361}
362
363int Volume::createBindMounts() {
364    unsigned long flags;
365
366    /*
367     * Rename old /android_secure -> /.android_secure
368     */
369    if (!access("/mnt/secure/staging/android_secure", R_OK | X_OK) &&
370         access(SEC_STG_SECIMGDIR, R_OK | X_OK)) {
371        if (rename("/mnt/secure/staging/android_secure", SEC_STG_SECIMGDIR)) {
372            SLOGE("Failed to rename legacy asec dir (%s)", strerror(errno));
373        }
374    }
375
376    /*
377     * Ensure that /android_secure exists and is a directory
378     */
379    if (access(SEC_STG_SECIMGDIR, R_OK | X_OK)) {
380        if (errno == ENOENT) {
381            if (mkdir(SEC_STG_SECIMGDIR, 0777)) {
382                SLOGE("Failed to create %s (%s)", SEC_STG_SECIMGDIR, strerror(errno));
383                return -1;
384            }
385        } else {
386            SLOGE("Failed to access %s (%s)", SEC_STG_SECIMGDIR, strerror(errno));
387            return -1;
388        }
389    } else {
390        struct stat sbuf;
391
392        if (stat(SEC_STG_SECIMGDIR, &sbuf)) {
393            SLOGE("Failed to stat %s (%s)", SEC_STG_SECIMGDIR, strerror(errno));
394            return -1;
395        }
396        if (!S_ISDIR(sbuf.st_mode)) {
397            SLOGE("%s is not a directory", SEC_STG_SECIMGDIR);
398            errno = ENOTDIR;
399            return -1;
400        }
401    }
402
403    /*
404     * Bind mount /mnt/secure/staging/android_secure -> /mnt/secure/asec so we'll
405     * have a root only accessable mountpoint for it.
406     */
407    if (mount(SEC_STG_SECIMGDIR, SEC_ASECDIR, "", MS_BIND, NULL)) {
408        SLOGE("Failed to bind mount points %s -> %s (%s)",
409                SEC_STG_SECIMGDIR, SEC_ASECDIR, strerror(errno));
410        return -1;
411    }
412
413    /*
414     * Mount a read-only, zero-sized tmpfs  on <mountpoint>/android_secure to
415     * obscure the underlying directory from everybody - sneaky eh? ;)
416     */
417    if (mount("tmpfs", SEC_STG_SECIMGDIR, "tmpfs", MS_RDONLY, "size=0,mode=000,uid=0,gid=0")) {
418        SLOGE("Failed to obscure %s (%s)", SEC_STG_SECIMGDIR, strerror(errno));
419        umount("/mnt/asec_secure");
420        return -1;
421    }
422
423    return 0;
424}
425
426int Volume::doMoveMount(const char *src, const char *dst, bool force) {
427    unsigned int flags = MS_MOVE;
428    int retries = 5;
429
430    while(retries--) {
431        if (!mount(src, dst, "", flags, NULL)) {
432            if (mDebug) {
433                SLOGD("Moved mount %s -> %s sucessfully", src, dst);
434            }
435            return 0;
436        } else if (errno != EBUSY) {
437            SLOGE("Failed to move mount %s -> %s (%s)", src, dst, strerror(errno));
438            return -1;
439        }
440        int action = 0;
441
442        if (force) {
443            if (retries == 1) {
444                action = 2; // SIGKILL
445            } else if (retries == 2) {
446                action = 1; // SIGHUP
447            }
448        }
449        SLOGW("Failed to move %s -> %s (%s, retries %d, action %d)",
450                src, dst, strerror(errno), retries, action);
451        Process::killProcessesWithOpenFiles(src, action);
452        usleep(1000*250);
453    }
454
455    errno = EBUSY;
456    SLOGE("Giving up on move %s -> %s (%s)", src, dst, strerror(errno));
457    return -1;
458}
459
460int Volume::doUnmount(const char *path, bool force) {
461    int retries = 10;
462
463    if (mDebug) {
464        SLOGD("Unmounting {%s}, force = %d", path, force);
465    }
466
467    while (retries--) {
468        if (!umount(path) || errno == EINVAL || errno == ENOENT) {
469            SLOGI("%s sucessfully unmounted", path);
470            return 0;
471        }
472
473        int action = 0;
474
475        if (force) {
476            if (retries == 1) {
477                action = 2; // SIGKILL
478            } else if (retries == 2) {
479                action = 1; // SIGHUP
480            }
481        }
482
483        SLOGW("Failed to unmount %s (%s, retries %d, action %d)",
484                path, strerror(errno), retries, action);
485
486        Process::killProcessesWithOpenFiles(path, action);
487        usleep(1000*1000);
488    }
489    errno = EBUSY;
490    SLOGE("Giving up on unmount %s (%s)", path, strerror(errno));
491    return -1;
492}
493
494int Volume::unmountVol(bool force) {
495    int i, rc;
496
497    if (getState() != Volume::State_Mounted) {
498        SLOGE("Volume %s unmount request when not mounted", getLabel());
499        errno = EINVAL;
500        return -1;
501    }
502
503    setState(Volume::State_Unmounting);
504    usleep(1000 * 1000); // Give the framework some time to react
505
506    /*
507     * First move the mountpoint back to our internal staging point
508     * so nobody else can muck with it while we work.
509     */
510    if (doMoveMount(getMountpoint(), SEC_STGDIR, force)) {
511        SLOGE("Failed to move mount %s => %s (%s)", getMountpoint(), SEC_STGDIR, strerror(errno));
512        setState(Volume::State_Mounted);
513        return -1;
514    }
515
516    protectFromAutorunStupidity();
517
518    /*
519     * Unmount the tmpfs which was obscuring the asec image directory
520     * from non root users
521     */
522
523    if (doUnmount(Volume::SEC_STG_SECIMGDIR, force)) {
524        SLOGE("Failed to unmount tmpfs on %s (%s)", SEC_STG_SECIMGDIR, strerror(errno));
525        goto fail_republish;
526    }
527
528    /*
529     * Remove the bindmount we were using to keep a reference to
530     * the previously obscured directory.
531     */
532
533    if (doUnmount(Volume::SEC_ASECDIR, force)) {
534        SLOGE("Failed to remove bindmount on %s (%s)", SEC_ASECDIR, strerror(errno));
535        goto fail_remount_tmpfs;
536    }
537
538    /*
539     * Finally, unmount the actual block device from the staging dir
540     */
541    if (doUnmount(Volume::SEC_STGDIR, force)) {
542        SLOGE("Failed to unmount %s (%s)", SEC_STGDIR, strerror(errno));
543        goto fail_recreate_bindmount;
544    }
545
546    SLOGI("%s unmounted sucessfully", getMountpoint());
547
548    setState(Volume::State_Idle);
549    mCurrentlyMountedKdev = -1;
550    return 0;
551
552    /*
553     * Failure handling - try to restore everything back the way it was
554     */
555fail_recreate_bindmount:
556    if (mount(SEC_STG_SECIMGDIR, SEC_ASECDIR, "", MS_BIND, NULL)) {
557        SLOGE("Failed to restore bindmount after failure! - Storage will appear offline!");
558        goto out_nomedia;
559    }
560fail_remount_tmpfs:
561    if (mount("tmpfs", SEC_STG_SECIMGDIR, "tmpfs", MS_RDONLY, "size=0,mode=0,uid=0,gid=0")) {
562        SLOGE("Failed to restore tmpfs after failure! - Storage will appear offline!");
563        goto out_nomedia;
564    }
565fail_republish:
566    if (doMoveMount(SEC_STGDIR, getMountpoint(), force)) {
567        SLOGE("Failed to republish mount after failure! - Storage will appear offline!");
568        goto out_nomedia;
569    }
570
571    setState(Volume::State_Mounted);
572    return -1;
573
574out_nomedia:
575    setState(Volume::State_NoMedia);
576    return -1;
577}
578
579int Volume::initializeMbr(const char *deviceNode) {
580    struct disk_info dinfo;
581
582    memset(&dinfo, 0, sizeof(dinfo));
583
584    if (!(dinfo.part_lst = (struct part_info *) malloc(MAX_NUM_PARTS * sizeof(struct part_info)))) {
585        SLOGE("Failed to malloc prt_lst");
586        return -1;
587    }
588
589    memset(dinfo.part_lst, 0, MAX_NUM_PARTS * sizeof(struct part_info));
590    dinfo.device = strdup(deviceNode);
591    dinfo.scheme = PART_SCHEME_MBR;
592    dinfo.sect_size = 512;
593    dinfo.skip_lba = 2048;
594    dinfo.num_lba = 0;
595    dinfo.num_parts = 1;
596
597    struct part_info *pinfo = &dinfo.part_lst[0];
598
599    pinfo->name = strdup("android_sdcard");
600    pinfo->flags |= PART_ACTIVE_FLAG;
601    pinfo->type = PC_PART_TYPE_FAT32;
602    pinfo->len_kb = -1;
603
604    int rc = apply_disk_config(&dinfo, 0);
605
606    if (rc) {
607        SLOGE("Failed to apply disk configuration (%d)", rc);
608        goto out;
609    }
610
611 out:
612    free(pinfo->name);
613    free(dinfo.device);
614    free(dinfo.part_lst);
615
616    return rc;
617}
618