main.cpp 6.06 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>
26 27 28 29 30 31 32 33

#define LOG_TAG "Vold"

#include "cutils/log.h"

#include "VolumeManager.h"
#include "CommandListener.h"
#include "NetlinkManager.h"
34
#include "DirectVolume.h"
35
#include "cryptfs.h"
36 37

static int process_config(VolumeManager *vm);
38
static void coldboot(const char *path);
39 40 41 42 43 44 45

int main() {

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

San Mehat's avatar
San Mehat committed
46
    SLOGI("Vold 2.1 (the revenge) firing up");
47 48

    mkdir("/dev/block/vold", 0755);
49 50 51

    /* Create our singleton managers */
    if (!(vm = VolumeManager::Instance())) {
San Mehat's avatar
San Mehat committed
52
        SLOGE("Unable to create VolumeManager");
53 54 55 56
        exit(1);
    };

    if (!(nm = NetlinkManager::Instance())) {
San Mehat's avatar
San Mehat committed
57
        SLOGE("Unable to create NetlinkManager");
58 59 60
        exit(1);
    };

61

62 63 64 65 66
    cl = new CommandListener();
    vm->setBroadcaster((SocketListener *) cl);
    nm->setBroadcaster((SocketListener *) cl);

    if (vm->start()) {
San Mehat's avatar
San Mehat committed
67
        SLOGE("Unable to start VolumeManager (%s)", strerror(errno));
68 69 70 71
        exit(1);
    }

    if (process_config(vm)) {
San Mehat's avatar
San Mehat committed
72
        SLOGE("Error reading configuration (%s)... continuing anyways", strerror(errno));
73 74 75
    }

    if (nm->start()) {
San Mehat's avatar
San Mehat committed
76
        SLOGE("Unable to start NetlinkManager (%s)", strerror(errno));
77 78 79
        exit(1);
    }

80
    coldboot("/sys/block");
81
//    coldboot("/sys/class/switch");
82

83 84 85 86
    /*
     * Now that we're up, we can respond to commands
     */
    if (cl->startListener()) {
San Mehat's avatar
San Mehat committed
87
        SLOGE("Unable to start CommandListener (%s)", strerror(errno));
88 89 90 91 92 93 94 95
        exit(1);
    }

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

San Mehat's avatar
San Mehat committed
96
    SLOGI("Vold exiting");
97 98 99
    exit(0);
}

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 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
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);
    }
}

145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
static int parse_mount_flags(char *mount_flags)
{
    char *save_ptr;
    int flags = 0;

    if (strcasestr(mount_flags, "encryptable")) {
        flags |= VOL_ENCRYPTABLE;
    }

    if (strcasestr(mount_flags, "nonremovable")) {
        flags |= VOL_NONREMOVABLE;
    }

    return flags;
}

161 162 163 164 165 166 167 168 169 170
static int process_config(VolumeManager *vm) {
    FILE *fp;
    int n = 0;
    char line[255];

    if (!(fp = fopen("/etc/vold.fstab", "r"))) {
        return -1;
    }

    while(fgets(line, sizeof(line), fp)) {
Jinho You's avatar
Jinho You committed
171 172
        const char *delim = " \t";
        char *save_ptr;
173 174
        char *type, *label, *mount_point, *mount_flags, *sysfs_path;
        int flags;
175 176 177 178 179 180 181

        n++;
        line[strlen(line)-1] = '\0';

        if (line[0] == '#' || line[0] == '\0')
            continue;

Jinho You's avatar
Jinho You committed
182
        if (!(type = strtok_r(line, delim, &save_ptr))) {
San Mehat's avatar
San Mehat committed
183
            SLOGE("Error parsing type");
184 185
            goto out_syntax;
        }
Jinho You's avatar
Jinho You committed
186
        if (!(label = strtok_r(NULL, delim, &save_ptr))) {
San Mehat's avatar
San Mehat committed
187
            SLOGE("Error parsing label");
188 189
            goto out_syntax;
        }
Jinho You's avatar
Jinho You committed
190
        if (!(mount_point = strtok_r(NULL, delim, &save_ptr))) {
San Mehat's avatar
San Mehat committed
191
            SLOGE("Error parsing mount point");
192 193 194 195
            goto out_syntax;
        }

        if (!strcmp(type, "dev_mount")) {
196
            DirectVolume *dv = NULL;
Jinho You's avatar
Jinho You committed
197
            char *part;
198

Jinho You's avatar
Jinho You committed
199
            if (!(part = strtok_r(NULL, delim, &save_ptr))) {
San Mehat's avatar
San Mehat committed
200
                SLOGE("Error parsing partition");
201 202 203
                goto out_syntax;
            }
            if (strcmp(part, "auto") && atoi(part) == 0) {
San Mehat's avatar
San Mehat committed
204
                SLOGE("Partition must either be 'auto' or 1 based index instead of '%s'", part);
205 206 207
                goto out_syntax;
            }

208 209 210 211 212
            if (!strcmp(part, "auto")) {
                dv = new DirectVolume(vm, label, mount_point, -1);
            } else {
                dv = new DirectVolume(vm, label, mount_point, atoi(part));
            }
213

214 215 216 217 218
            while ((sysfs_path = strtok_r(NULL, delim, &save_ptr))) {
                if (*sysfs_path != '/') {
                    /* If the first character is not a '/', it must be flags */
                    break;
                }
219
                if (dv->addPath(sysfs_path)) {
San Mehat's avatar
San Mehat committed
220
                    SLOGE("Failed to add devpath %s to volume %s", sysfs_path,
221 222 223 224
                         label);
                    goto out_fail;
                }
            }
225 226 227 228 229 230 231 232 233 234

            /* If sysfs_path is non-null at this point, then it contains
             * the optional flags for this volume
             */
            if (sysfs_path)
                flags = parse_mount_flags(sysfs_path);
            else
                flags = 0;
            dv->setFlags(flags);

235 236 237
            vm->addVolume(dv);
        } else if (!strcmp(type, "map_mount")) {
        } else {
San Mehat's avatar
San Mehat committed
238
            SLOGE("Unknown type '%s'", type);
239 240 241 242 243 244 245 246
            goto out_syntax;
        }
    }

    fclose(fp);
    return 0;

out_syntax:
San Mehat's avatar
San Mehat committed
247
    SLOGE("Syntax error on config line %d", n);
248 249 250 251 252
    errno = -EINVAL;
out_fail:
    fclose(fp);
    return -1;   
}