main.cpp 5.12 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Copyright (C) 2008 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
21 22 23 24 25
#include <sys/stat.h>
#include <sys/types.h>

#include <fcntl.h>
#include <dirent.h>
Ken Sumrall's avatar
Ken Sumrall committed
26
#include <fs_mgr.h>
27 28 29

#define LOG_TAG "Vold"

30
#include "cutils/klog.h"
31
#include "cutils/log.h"
Ken Sumrall's avatar
Ken Sumrall committed
32
#include "cutils/properties.h"
33 34 35 36

#include "VolumeManager.h"
#include "CommandListener.h"
#include "NetlinkManager.h"
37
#include "DirectVolume.h"
38
#include "cryptfs.h"
39
#include "sehandle.h"
40 41

static int process_config(VolumeManager *vm);
42
static void coldboot(const char *path);
43

Ken Sumrall's avatar
Ken Sumrall committed
44 45 46
#define FSTAB_PREFIX "/fstab."
struct fstab *fstab;

47 48
struct selabel_handle *sehandle;

49 50 51 52 53 54
int main() {

    VolumeManager *vm;
    CommandListener *cl;
    NetlinkManager *nm;

San Mehat's avatar
San Mehat committed
55
    SLOGI("Vold 2.1 (the revenge) firing up");
56

57 58 59 60
    sehandle = selinux_android_file_context_handle();
    if (sehandle)
        selinux_android_set_sehandle(sehandle);

61
    mkdir("/dev/block/vold", 0755);
62

63 64 65
    /* For when cryptfs checks and mounts an encrypted filesystem */
    klog_set_level(6);

66 67
    /* Create our singleton managers */
    if (!(vm = VolumeManager::Instance())) {
San Mehat's avatar
San Mehat committed
68
        SLOGE("Unable to create VolumeManager");
69 70 71 72
        exit(1);
    };

    if (!(nm = NetlinkManager::Instance())) {
San Mehat's avatar
San Mehat committed
73
        SLOGE("Unable to create NetlinkManager");
74 75 76
        exit(1);
    };

77

78 79 80 81 82
    cl = new CommandListener();
    vm->setBroadcaster((SocketListener *) cl);
    nm->setBroadcaster((SocketListener *) cl);

    if (vm->start()) {
San Mehat's avatar
San Mehat committed
83
        SLOGE("Unable to start VolumeManager (%s)", strerror(errno));
84 85 86 87
        exit(1);
    }

    if (process_config(vm)) {
San Mehat's avatar
San Mehat committed
88
        SLOGE("Error reading configuration (%s)... continuing anyways", strerror(errno));
89 90 91
    }

    if (nm->start()) {
San Mehat's avatar
San Mehat committed
92
        SLOGE("Unable to start NetlinkManager (%s)", strerror(errno));
93 94 95
        exit(1);
    }

96
    coldboot("/sys/block");
97
//    coldboot("/sys/class/switch");
98

99 100 101 102
    /*
     * Now that we're up, we can respond to commands
     */
    if (cl->startListener()) {
San Mehat's avatar
San Mehat committed
103
        SLOGE("Unable to start CommandListener (%s)", strerror(errno));
104 105 106 107 108 109 110 111
        exit(1);
    }

    // Eventually we'll become the monitoring thread
    while(1) {
        sleep(1000);
    }

San Mehat's avatar
San Mehat committed
112
    SLOGI("Vold exiting");
113 114 115
    exit(0);
}

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
static void do_coldboot(DIR *d, int lvl)
{
    struct dirent *de;
    int dfd, fd;

    dfd = dirfd(d);

    fd = openat(dfd, "uevent", O_WRONLY);
    if(fd >= 0) {
        write(fd, "add\n", 4);
        close(fd);
    }

    while((de = readdir(d))) {
        DIR *d2;

        if (de->d_name[0] == '.')
            continue;

        if (de->d_type != DT_DIR && lvl > 0)
            continue;

        fd = openat(dfd, de->d_name, O_RDONLY | O_DIRECTORY);
        if(fd < 0)
            continue;

        d2 = fdopendir(fd);
        if(d2 == 0)
            close(fd);
        else {
            do_coldboot(d2, lvl + 1);
            closedir(d2);
        }
    }
}

static void coldboot(const char *path)
{
    DIR *d = opendir(path);
    if(d) {
        do_coldboot(d, 0);
        closedir(d);
    }
}

Ken Sumrall's avatar
Ken Sumrall committed
161
static int process_config(VolumeManager *vm)
162
{
Ken Sumrall's avatar
Ken Sumrall committed
163 164 165 166 167 168 169 170 171 172 173 174
    char fstab_filename[PROPERTY_VALUE_MAX + sizeof(FSTAB_PREFIX)];
    char propbuf[PROPERTY_VALUE_MAX];
    int i;
    int ret = -1;
    int flags;

    property_get("ro.hardware", propbuf, "");
    snprintf(fstab_filename, sizeof(fstab_filename), FSTAB_PREFIX"%s", propbuf);

    fstab = fs_mgr_read_fstab(fstab_filename);
    if (!fstab) {
        SLOGE("failed to open %s\n", fstab_filename);
175 176 177
        return -1;
    }

Ken Sumrall's avatar
Ken Sumrall committed
178 179 180
    /* Loop through entries looking for ones that vold manages */
    for (i = 0; i < fstab->num_entries; i++) {
        if (fs_mgr_is_voldmanaged(&fstab->recs[i])) {
181
            DirectVolume *dv = NULL;
Ken Sumrall's avatar
Ken Sumrall committed
182
            flags = 0;
183

Ken Sumrall's avatar
Ken Sumrall committed
184 185 186 187 188 189
            /* Set any flags that might be set for this volume */
            if (fs_mgr_is_nonremovable(&fstab->recs[i])) {
                flags |= VOL_NONREMOVABLE;
            }
            if (fs_mgr_is_encryptable(&fstab->recs[i])) {
                flags |= VOL_ENCRYPTABLE;
190
            }
191 192 193 194 195 196 197 198 199 200 201 202
            /* Only set this flag if there is not an emulated sd card */
            if (fs_mgr_is_noemulatedsd(&fstab->recs[i]) &&
                !strcmp(fstab->recs[i].fs_type, "vfat")) {
                flags |= VOL_PROVIDES_ASEC;
            }
            dv = new DirectVolume(vm, &(fstab->recs[i]), flags);

            if (dv->addPath(fstab->recs[i].blk_device)) {
                SLOGE("Failed to add devpath %s to volume %s",
                      fstab->recs[i].blk_device, fstab->recs[i].label);
                goto out_fail;
            }
203

204 205 206 207
            vm->addVolume(dv);
        }
    }

Ken Sumrall's avatar
Ken Sumrall committed
208
    ret = 0;
209 210

out_fail:
Ken Sumrall's avatar
Ken Sumrall committed
211
    return ret;
212
}