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.
|
|
|
|
*/
|
|
|
|
|
2015-04-02 08:32:18 +02:00
|
|
|
#include "Disk.h"
|
|
|
|
#include "VolumeManager.h"
|
|
|
|
#include "CommandListener.h"
|
2015-06-03 23:19:51 +02:00
|
|
|
#include "CryptCommandListener.h"
|
2015-04-02 08:32:18 +02:00
|
|
|
#include "NetlinkManager.h"
|
|
|
|
#include "cryptfs.h"
|
|
|
|
#include "sehandle.h"
|
|
|
|
|
2015-12-05 00:50:53 +01:00
|
|
|
#include <android-base/logging.h>
|
|
|
|
#include <android-base/stringprintf.h>
|
2015-04-02 08:32:18 +02:00
|
|
|
#include <cutils/klog.h>
|
|
|
|
#include <cutils/properties.h>
|
|
|
|
#include <cutils/sockets.h>
|
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
#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>
|
2015-04-01 20:54:32 +02:00
|
|
|
#include <getopt.h>
|
2009-10-12 23:51:52 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <dirent.h>
|
2013-02-13 22:00:19 +01:00
|
|
|
#include <fs_mgr.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);
|
2015-04-01 20:54:32 +02:00
|
|
|
static void parse_args(int argc, char** argv);
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2013-02-13 22:00:19 +01:00
|
|
|
struct fstab *fstab;
|
|
|
|
|
2014-09-30 16:29:24 +02:00
|
|
|
struct selabel_handle *sehandle;
|
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
using android::base::StringPrintf;
|
|
|
|
|
2015-04-01 20:54:32 +02:00
|
|
|
int main(int argc, char** argv) {
|
2015-03-14 00:09:20 +01:00
|
|
|
setenv("ANDROID_LOG_TAGS", "*:v", 1);
|
2015-04-19 01:15:10 +02:00
|
|
|
android::base::InitLogging(argv, android::base::LogdLogger(android::base::SYSTEM));
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2015-04-02 08:32:18 +02:00
|
|
|
LOG(INFO) << "Vold 3.0 (the awakening) firing up";
|
|
|
|
|
2015-05-22 07:35:42 +02:00
|
|
|
LOG(VERBOSE) << "Detected support for:"
|
|
|
|
<< (android::vold::IsFilesystemSupported("ext4") ? " ext4" : "")
|
|
|
|
<< (android::vold::IsFilesystemSupported("f2fs") ? " f2fs" : "")
|
|
|
|
<< (android::vold::IsFilesystemSupported("vfat") ? " vfat" : "");
|
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
VolumeManager *vm;
|
|
|
|
CommandListener *cl;
|
2015-06-03 23:19:51 +02:00
|
|
|
CryptCommandListener *ccl;
|
2009-10-11 02:22:08 +02:00
|
|
|
NetlinkManager *nm;
|
|
|
|
|
2015-04-01 20:54:32 +02:00
|
|
|
parse_args(argc, argv);
|
2009-12-13 19:40:18 +01:00
|
|
|
|
2014-09-30 16:29:24 +02:00
|
|
|
sehandle = selinux_android_file_context_handle();
|
2015-04-01 20:54:32 +02:00
|
|
|
if (sehandle) {
|
2014-09-30 16:29:24 +02:00
|
|
|
selinux_android_set_sehandle(sehandle);
|
2015-04-01 20:54:32 +02:00
|
|
|
}
|
2014-09-30 16:29:24 +02:00
|
|
|
|
2015-04-02 08:07:19 +02:00
|
|
|
// Quickly throw a CLOEXEC on the socket we just inherited from init
|
|
|
|
fcntl(android_get_control_socket("vold"), F_SETFD, FD_CLOEXEC);
|
2015-06-03 23:19:51 +02:00
|
|
|
fcntl(android_get_control_socket("cryptd"), F_SETFD, FD_CLOEXEC);
|
2015-04-02 08:07:19 +02:00
|
|
|
|
2009-12-13 19:40:18 +01:00
|
|
|
mkdir("/dev/block/vold", 0755);
|
2009-10-11 02:22:08 +02:00
|
|
|
|
2013-03-20 03:42:30 +01:00
|
|
|
/* For when cryptfs checks and mounts an encrypted filesystem */
|
|
|
|
klog_set_level(6);
|
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
/* Create our singleton managers */
|
|
|
|
if (!(vm = VolumeManager::Instance())) {
|
2015-04-02 08:32:18 +02:00
|
|
|
LOG(ERROR) << "Unable to create VolumeManager";
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
2015-04-01 20:54:32 +02:00
|
|
|
}
|
2009-10-11 02:22:08 +02:00
|
|
|
|
|
|
|
if (!(nm = NetlinkManager::Instance())) {
|
2015-04-02 08:32:18 +02:00
|
|
|
LOG(ERROR) << "Unable to create NetlinkManager";
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
2015-04-01 20:54:32 +02:00
|
|
|
}
|
2009-12-13 19:40:18 +01:00
|
|
|
|
2015-04-29 17:57:18 +02:00
|
|
|
if (property_get_bool("vold.debug", false)) {
|
|
|
|
vm->setDebug(true);
|
|
|
|
}
|
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
cl = new CommandListener();
|
2015-06-03 23:19:51 +02:00
|
|
|
ccl = new CryptCommandListener();
|
2009-10-11 02:22:08 +02:00
|
|
|
vm->setBroadcaster((SocketListener *) cl);
|
|
|
|
nm->setBroadcaster((SocketListener *) cl);
|
|
|
|
|
|
|
|
if (vm->start()) {
|
2015-04-02 08:32:18 +02:00
|
|
|
PLOG(ERROR) << "Unable to start VolumeManager";
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (process_config(vm)) {
|
2015-04-02 08:32:18 +02:00
|
|
|
PLOG(ERROR) << "Error reading configuration... continuing anyways";
|
2009-10-11 02:22:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (nm->start()) {
|
2015-04-02 08:32:18 +02:00
|
|
|
PLOG(ERROR) << "Unable to start NetlinkManager";
|
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()) {
|
2015-04-02 08:32:18 +02:00
|
|
|
PLOG(ERROR) << "Unable to start CommandListener";
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2015-06-03 23:19:51 +02:00
|
|
|
if (ccl->startListener()) {
|
|
|
|
PLOG(ERROR) << "Unable to start CryptCommandListener";
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2009-10-11 02:22:08 +02:00
|
|
|
// Eventually we'll become the monitoring thread
|
|
|
|
while(1) {
|
|
|
|
sleep(1000);
|
|
|
|
}
|
|
|
|
|
2015-04-02 08:32:18 +02:00
|
|
|
LOG(ERROR) << "Vold exiting";
|
2009-10-11 02:22:08 +02:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2015-04-01 20:54:32 +02:00
|
|
|
static void parse_args(int argc, char** argv) {
|
|
|
|
static struct option opts[] = {
|
|
|
|
{"blkid_context", required_argument, 0, 'b' },
|
|
|
|
{"blkid_untrusted_context", required_argument, 0, 'B' },
|
|
|
|
{"fsck_context", required_argument, 0, 'f' },
|
|
|
|
{"fsck_untrusted_context", required_argument, 0, 'F' },
|
|
|
|
};
|
|
|
|
|
|
|
|
int c;
|
|
|
|
while ((c = getopt_long(argc, argv, "", opts, nullptr)) != -1) {
|
|
|
|
switch (c) {
|
|
|
|
case 'b': android::vold::sBlkidContext = optarg; break;
|
|
|
|
case 'B': android::vold::sBlkidUntrustedContext = optarg; break;
|
|
|
|
case 'f': android::vold::sFsckContext = optarg; break;
|
|
|
|
case 'F': android::vold::sFsckUntrustedContext = optarg; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CHECK(android::vold::sBlkidContext != nullptr);
|
|
|
|
CHECK(android::vold::sBlkidUntrustedContext != nullptr);
|
|
|
|
CHECK(android::vold::sFsckContext != nullptr);
|
|
|
|
CHECK(android::vold::sFsckUntrustedContext != nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void do_coldboot(DIR *d, int lvl) {
|
2009-10-12 23:51:52 +02:00
|
|
|
struct dirent *de;
|
|
|
|
int dfd, fd;
|
|
|
|
|
|
|
|
dfd = dirfd(d);
|
|
|
|
|
2015-04-02 08:07:19 +02:00
|
|
|
fd = openat(dfd, "uevent", O_WRONLY | O_CLOEXEC);
|
2009-10-12 23:51:52 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-01 20:54:32 +02:00
|
|
|
static void coldboot(const char *path) {
|
2009-10-12 23:51:52 +02:00
|
|
|
DIR *d = opendir(path);
|
|
|
|
if(d) {
|
|
|
|
do_coldboot(d, 0);
|
|
|
|
closedir(d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-01 20:54:32 +02:00
|
|
|
static int process_config(VolumeManager *vm) {
|
2015-06-26 23:02:09 +02:00
|
|
|
std::string path(android::vold::DefaultFstabPath());
|
|
|
|
fstab = fs_mgr_read_fstab(path.c_str());
|
2013-02-13 22:00:19 +01:00
|
|
|
if (!fstab) {
|
2015-06-26 23:02:09 +02:00
|
|
|
PLOG(ERROR) << "Failed to open default fstab " << path;
|
2009-10-11 02:22:08 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-02-13 22:00:19 +01:00
|
|
|
/* Loop through entries looking for ones that vold manages */
|
2015-06-26 23:02:09 +02:00
|
|
|
bool has_adoptable = false;
|
2015-03-14 00:09:20 +01:00
|
|
|
for (int i = 0; i < fstab->num_entries; i++) {
|
2013-02-13 22:00:19 +01:00
|
|
|
if (fs_mgr_is_voldmanaged(&fstab->recs[i])) {
|
|
|
|
if (fs_mgr_is_nonremovable(&fstab->recs[i])) {
|
2015-03-14 00:09:20 +01:00
|
|
|
LOG(WARNING) << "nonremovable no longer supported; ignoring volume";
|
|
|
|
continue;
|
2013-02-13 22:00:19 +01:00
|
|
|
}
|
2015-03-14 00:09:20 +01:00
|
|
|
|
|
|
|
std::string sysPattern(fstab->recs[i].blk_device);
|
|
|
|
std::string nickname(fstab->recs[i].label);
|
|
|
|
int flags = 0;
|
|
|
|
|
2013-02-13 22:00:19 +01:00
|
|
|
if (fs_mgr_is_encryptable(&fstab->recs[i])) {
|
2015-03-14 00:09:20 +01:00
|
|
|
flags |= android::vold::Disk::Flags::kAdoptable;
|
2015-05-13 22:53:07 +02:00
|
|
|
has_adoptable = true;
|
2009-10-11 02:22:08 +02:00
|
|
|
}
|
2015-05-20 00:54:15 +02:00
|
|
|
if (fs_mgr_is_noemulatedsd(&fstab->recs[i])
|
|
|
|
|| property_get_bool("vold.debug.default_primary", false)) {
|
2015-03-14 00:09:20 +01:00
|
|
|
flags |= android::vold::Disk::Flags::kDefaultPrimary;
|
2013-07-16 03:14:25 +02:00
|
|
|
}
|
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
vm->addDiskSource(std::shared_ptr<VolumeManager::DiskSource>(
|
|
|
|
new VolumeManager::DiskSource(sysPattern, nickname, flags)));
|
2009-10-11 02:22:08 +02:00
|
|
|
}
|
|
|
|
}
|
2015-05-13 22:53:07 +02:00
|
|
|
property_set("vold.has_adoptable", has_adoptable ? "1" : "0");
|
2015-03-14 00:09:20 +01:00
|
|
|
return 0;
|
2009-10-11 02:22:08 +02:00
|
|
|
}
|