2009-10-11 02:22:08 +02:00
|
|
|
/*
|
|
|
|
* 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>
|
2009-10-12 23:51:52 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <dirent.h>
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
#define LOG_TAG "Vold"
|
|
|
|
|
|
|
|
#include "cutils/log.h"
|
|
|
|
|
|
|
|
#include "VolumeManager.h"
|
|
|
|
#include "CommandListener.h"
|
|
|
|
#include "NetlinkManager.h"
|
2009-10-12 23:57:05 +02:00
|
|
|
#include "DirectVolume.h"
|
2011-05-19 02:20:07 +02:00
|
|
|
#include "cryptfs.h"
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
static int process_config(VolumeManager *vm);
|
2009-10-12 23:51:52 +02:00
|
|
|
static void coldboot(const char *path);
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
|
|
|
VolumeManager *vm;
|
|
|
|
CommandListener *cl;
|
|
|
|
NetlinkManager *nm;
|
|
|
|
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGI("Vold 2.1 (the revenge) firing up");
|
2009-12-13 19:40:18 +01:00
|
|
|
|
|
|
|
mkdir("/dev/block/vold", 0755);
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
/* Create our singleton managers */
|
|
|
|
if (!(vm = VolumeManager::Instance())) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Unable to create VolumeManager");
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!(nm = NetlinkManager::Instance())) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Unable to create NetlinkManager");
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
|
|
|
};
|
|
|
|
|
2009-12-13 19:40:18 +01:00
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
cl = new CommandListener();
|
|
|
|
vm->setBroadcaster((SocketListener *) cl);
|
|
|
|
nm->setBroadcaster((SocketListener *) cl);
|
|
|
|
|
|
|
|
if (vm->start()) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Unable to start VolumeManager (%s)", strerror(errno));
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (process_config(vm)) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Error reading configuration (%s)... continuing anyways", strerror(errno));
|
2009-10-11 02:22:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (nm->start()) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Unable to start NetlinkManager (%s)", strerror(errno));
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2009-10-12 23:51:52 +02:00
|
|
|
coldboot("/sys/block");
|
2009-12-22 17:32:33 +01:00
|
|
|
// coldboot("/sys/class/switch");
|
2009-10-12 23:51:52 +02:00
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
/*
|
|
|
|
* Now that we're up, we can respond to commands
|
|
|
|
*/
|
|
|
|
if (cl->startListener()) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Unable to start CommandListener (%s)", strerror(errno));
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Eventually we'll become the monitoring thread
|
|
|
|
while(1) {
|
|
|
|
sleep(1000);
|
|
|
|
}
|
|
|
|
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGI("Vold exiting");
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2009-10-12 23:51:52 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-19 02:20:07 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
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)) {
|
2010-11-15 07:02:32 +01:00
|
|
|
const char *delim = " \t";
|
|
|
|
char *save_ptr;
|
2011-05-19 02:20:07 +02:00
|
|
|
char *type, *label, *mount_point, *mount_flags, *sysfs_path;
|
|
|
|
int flags;
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
n++;
|
|
|
|
line[strlen(line)-1] = '\0';
|
|
|
|
|
|
|
|
if (line[0] == '#' || line[0] == '\0')
|
|
|
|
continue;
|
|
|
|
|
2010-11-15 07:02:32 +01:00
|
|
|
if (!(type = strtok_r(line, delim, &save_ptr))) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Error parsing type");
|
2009-10-11 02:22:08 +02:00
|
|
|
goto out_syntax;
|
|
|
|
}
|
2010-11-15 07:02:32 +01:00
|
|
|
if (!(label = strtok_r(NULL, delim, &save_ptr))) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Error parsing label");
|
2009-10-11 02:22:08 +02:00
|
|
|
goto out_syntax;
|
|
|
|
}
|
2010-11-15 07:02:32 +01:00
|
|
|
if (!(mount_point = strtok_r(NULL, delim, &save_ptr))) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Error parsing mount point");
|
2009-10-11 02:22:08 +02:00
|
|
|
goto out_syntax;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(type, "dev_mount")) {
|
2009-10-12 23:57:05 +02:00
|
|
|
DirectVolume *dv = NULL;
|
2010-11-15 07:02:32 +01:00
|
|
|
char *part;
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2010-11-15 07:02:32 +01:00
|
|
|
if (!(part = strtok_r(NULL, delim, &save_ptr))) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Error parsing partition");
|
2009-10-11 02:22:08 +02:00
|
|
|
goto out_syntax;
|
|
|
|
}
|
|
|
|
if (strcmp(part, "auto") && atoi(part) == 0) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Partition must either be 'auto' or 1 based index instead of '%s'", part);
|
2009-10-11 02:22:08 +02:00
|
|
|
goto out_syntax;
|
|
|
|
}
|
|
|
|
|
2009-12-13 19:40:18 +01:00
|
|
|
if (!strcmp(part, "auto")) {
|
|
|
|
dv = new DirectVolume(vm, label, mount_point, -1);
|
|
|
|
} else {
|
|
|
|
dv = new DirectVolume(vm, label, mount_point, atoi(part));
|
|
|
|
}
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2011-05-19 02:20:07 +02:00
|
|
|
while ((sysfs_path = strtok_r(NULL, delim, &save_ptr))) {
|
|
|
|
if (*sysfs_path != '/') {
|
|
|
|
/* If the first character is not a '/', it must be flags */
|
|
|
|
break;
|
|
|
|
}
|
2009-10-11 02:22:08 +02:00
|
|
|
if (dv->addPath(sysfs_path)) {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Failed to add devpath %s to volume %s", sysfs_path,
|
2009-10-11 02:22:08 +02:00
|
|
|
label);
|
|
|
|
goto out_fail;
|
|
|
|
}
|
|
|
|
}
|
2011-05-19 02:20:07 +02:00
|
|
|
|
|
|
|
/* 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);
|
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
vm->addVolume(dv);
|
|
|
|
} else if (!strcmp(type, "map_mount")) {
|
|
|
|
} else {
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Unknown type '%s'", type);
|
2009-10-11 02:22:08 +02:00
|
|
|
goto out_syntax;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
out_syntax:
|
2010-03-24 18:24:19 +01:00
|
|
|
SLOGE("Syntax error on config line %d", n);
|
2009-10-11 02:22:08 +02:00
|
|
|
errno = -EINVAL;
|
|
|
|
out_fail:
|
|
|
|
fclose(fp);
|
|
|
|
return -1;
|
|
|
|
}
|